package HumanoidAnimation.Medical;

import org.web3d.x3d.jsail.Core.*;
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 bone model for Chest. </p>
 <p> Related links:  source BonesChest.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.BonesChest&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/BonesChest.x3d">BonesChest.x3d</a> </td>
		</tr>
		<tr>
			<td style="text-align:right; vertical-align: text-top;"> <i> creator </i> </td>
			<td> Damon Hernandez, Joe Williams </td>
		</tr>
		<tr>
			<td style="text-align:right; vertical-align: text-top;"> <i> description </i> </td>
			<td> Human bone model for Chest </td>
		</tr>
		<tr>
			<td style="text-align:right; vertical-align: text-top;"> <i> translator </i> </td>
			<td> Joe Williams, Don Brutzman </td>
		</tr>
		<tr>
			<td style="text-align:right; vertical-align: text-top;"> <i> created </i> </td>
			<td> 5 December 2013 </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> TODO </i> </td>
			<td> document unit conversions applied: approximation of inches to meters, which ordinarily is a scale factor of 0.0254 </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/BonesChest.x3d" target="_blank">https://www.web3d.org/x3d/content/examples/HumanoidAnimation/Medical/BonesChest.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 Williams
 */

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

	/** Create and initialize the X3D model for this object. */
	public final void initialize()
	{
            try { // catch-all
  x3dModel = new X3D().setProfile(X3D.PROFILE_INTERCHANGE).setVersion(X3D.VERSION_3_3)
  .setHead(new head()
    .addMeta(new meta().setName(meta.NAME_TITLE      ).setContent("BonesChest.x3d"))
    .addMeta(new meta().setName(meta.NAME_CREATOR    ).setContent("Damon Hernandez, Joe Williams"))
    .addMeta(new meta().setName(meta.NAME_DESCRIPTION).setContent("Human bone model for Chest"))
    .addMeta(new meta().setName(meta.NAME_TRANSLATOR ).setContent("Joe Williams, Don Brutzman"))
    .addMeta(new meta().setName(meta.NAME_CREATED    ).setContent("5 December 2013"))
    .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_TODO       ).setContent("document unit conversions applied: approximation of inches to meters, which ordinarily is a scale factor of 0.0254"))
    .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/BonesChest.x3d"))
    .addMeta(new meta().setName(meta.NAME_LICENSE    ).setContent("../license.html")))
  .setScene(new Scene()
    .addChild(new WorldInfo().setTitle("BonesChest.x3d"))
    .addChild(new Transform("DSkeletonParts").setScale(0.029,0.029,0.029)
      .addChild(new Viewpoint("Hips").setDescription("Hips view").setFieldOfView(0.785).setPosition(-0.2249,50.4387,33.5197))
      .addChild(new Group("Torso")
        .addComments(" sternum lcartend lclavcle lccart rccart2 lrib-12 lscapula lcoscart lfreecrt rcartend rclavcle rccart lccart2 rrib-12 rscapula rcoscart rfreecrt ")
        .addChild(new Shape("sternum")
          .setAppearance(new Appearance()
            .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setEmissiveColor(1.0,1.0,0.0).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
          .setGeometry(new IndexedFaceSet("sternum_Geo").setDEF("sternum_Geo").setCreaseAngle(1.571).setCoordIndex(getsternum_Geo_6_17_coordIndex())
            .setCoord(new Coordinate("sternum_Coord").setPoint(getsternum_Coord_7_17_point()))))
        .addChild(new Shape("lcartend")
          .setAppearance(new Appearance()
            .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(0.9843,0.949,0.7843).setEmissiveColor(1.0,1.0,0.0).setShininess(0.05).setSpecularColor(0.9647,0.949,0.9098)))
          .setGeometry(new IndexedFaceSet("lcartend_Geo").setDEF("lcartend_Geo").setCreaseAngle(1.571).setCoordIndex(getlcartend_Geo_6_22_coordIndex())
            .setCoord(new Coordinate("lcartend_Coord").setPoint(getlcartend_Coord_7_22_point()))))
        .addChild(new Shape("lclavcle")
          .setAppearance(new Appearance()
            .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setEmissiveColor(1.0,1.0,0.0).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
          .setGeometry(new IndexedFaceSet("lclavcle_Geo").setDEF("lclavcle_Geo").setCreaseAngle(1.571).setCoordIndex(getlclavcle_Geo_6_27_coordIndex())
            .setCoord(new Coordinate("lclavcle_Coord").setPoint(getlclavcle_Coord_7_27_point()))))
        .addChild(new Shape("lccart")
          .setAppearance(new Appearance()
            .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(0.9843,0.949,0.7843).setEmissiveColor(1.0,1.0,0.0).setShininess(0.05).setSpecularColor(0.9647,0.949,0.9098)))
          .setGeometry(new IndexedFaceSet("lccart_Geo").setDEF("lccart_Geo").setCreaseAngle(1.571).setCoordIndex(getlccart_Geo_6_32_coordIndex())
            .setCoord(new Coordinate("lccart_Coord").setPoint(getlccart_Coord_7_32_point()))))
        .addChild(new Shape("lccart2")
          .setAppearance(new Appearance()
            .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(0.9843,0.949,0.7843).setEmissiveColor(1.0,1.0,0.0).setShininess(0.05).setSpecularColor(0.9647,0.949,0.9098)))
          .setGeometry(new IndexedFaceSet("lccart2_Geo").setDEF("lccart2_Geo").setCreaseAngle(1.571).setCoordIndex(getlccart2_Geo_6_37_coordIndex())
            .setCoord(new Coordinate("lccart2_Coord").setPoint(getlccart2_Coord_7_37_point()))))
        .addChild(new Shape("lrrib")
          .setAppearance(new Appearance()
            .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setEmissiveColor(1.0,1.0,0.0).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
          .setGeometry(new IndexedFaceSet("lrrib_Geo").setDEF("lrrib_Geo").setCreaseAngle(1.571).setCoordIndex(getlrrib_Geo_6_42_coordIndex())
            .setCoord(new Coordinate("lrrib_Coord").setPoint(getlrrib_Coord_7_42_point()))))
        .addChild(new Shape("lrib2")
          .setAppearance(new Appearance()
            .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setEmissiveColor(1.0,1.0,0.0).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
          .setGeometry(new IndexedFaceSet("lrib2_Geo").setDEF("lrib2_Geo").setCreaseAngle(1.571).setCoordIndex(getlrib2_Geo_6_47_coordIndex())
            .setCoord(new Coordinate("lrib2_Coord").setPoint(getlrib2_Coord_7_47_point()))))
        .addChild(new Shape("lrib3")
          .setAppearance(new Appearance()
            .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setEmissiveColor(1.0,1.0,0.0).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
          .setGeometry(new IndexedFaceSet("lrib3_Geo").setDEF("lrib3_Geo").setCreaseAngle(1.571).setCoordIndex(getlrib3_Geo_6_52_coordIndex())
            .setCoord(new Coordinate("lrib3_Coord").setPoint(getlrib3_Coord_7_52_point()))))
        .addChild(new Shape("lrib4")
          .setAppearance(new Appearance()
            .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setEmissiveColor(1.0,1.0,0.0).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
          .setGeometry(new IndexedFaceSet("lrib4_Geo").setDEF("lrib4_Geo").setCreaseAngle(1.571).setCoordIndex(getlrib4_Geo_6_57_coordIndex())
            .setCoord(new Coordinate("lrib4_Coord").setPoint(getlrib4_Coord_7_57_point()))))
        .addChild(new Shape("lrib5")
          .setAppearance(new Appearance()
            .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setEmissiveColor(1.0,1.0,0.0).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
          .setGeometry(new IndexedFaceSet("lrib5_Geo").setDEF("lrib5_Geo").setCreaseAngle(1.571).setCoordIndex(getlrib5_Geo_6_62_coordIndex())
            .setCoord(new Coordinate("lrib5_Coord").setPoint(getlrib5_Coord_7_62_point()))))
        .addChild(new Shape("lrib6")
          .setAppearance(new Appearance()
            .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setEmissiveColor(1.0,1.0,0.0).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
          .setGeometry(new IndexedFaceSet("lrib6_Geo").setDEF("lrib6_Geo").setCreaseAngle(1.571).setCoordIndex(getlrib6_Geo_6_67_coordIndex())
            .setCoord(new Coordinate("lrib6_Coord").setPoint(getlrib6_Coord_7_67_point()))))
        .addChild(new Shape("lrib7")
          .setAppearance(new Appearance()
            .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setEmissiveColor(1.0,1.0,0.0).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
          .setGeometry(new IndexedFaceSet("lrib7_Geo").setDEF("lrib7_Geo").setCreaseAngle(1.571).setCoordIndex(getlrib7_Geo_6_72_coordIndex())
            .setCoord(new Coordinate("lrib7_Coord").setPoint(getlrib7_Coord_7_72_point()))))
        .addChild(new Shape("lrib8")
          .setAppearance(new Appearance()
            .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setEmissiveColor(1.0,1.0,0.0).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
          .setGeometry(new IndexedFaceSet("lrib8_Geo").setDEF("lrib8_Geo").setCreaseAngle(1.571).setCoordIndex(getlrib8_Geo_6_77_coordIndex())
            .setCoord(new Coordinate("lrib8_Coord").setPoint(getlrib8_Coord_7_77_point()))))
        .addChild(new Shape("lrib9")
          .setAppearance(new Appearance()
            .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setEmissiveColor(1.0,1.0,0.0).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
          .setGeometry(new IndexedFaceSet("lrib9_Geo").setDEF("lrib9_Geo").setCreaseAngle(1.571).setCoordIndex(getlrib9_Geo_6_82_coordIndex())
            .setCoord(new Coordinate("lrib9_Coord").setPoint(getlrib9_Coord_7_82_point()))))
        .addChild(new Shape("lrib10")
          .setAppearance(new Appearance()
            .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setEmissiveColor(1.0,1.0,0.0).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
          .setGeometry(new IndexedFaceSet("lrib10_Geo").setDEF("lrib10_Geo").setCreaseAngle(1.571).setCoordIndex(getlrib10_Geo_6_87_coordIndex())
            .setCoord(new Coordinate("lrib10_Coord").setPoint(getlrib10_Coord_7_87_point()))))
        .addChild(new Shape("lrib11")
          .setAppearance(new Appearance()
            .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setEmissiveColor(1.0,1.0,0.0).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
          .setGeometry(new IndexedFaceSet("lrib11_Geo").setDEF("lrib11_Geo").setCreaseAngle(1.571).setCoordIndex(getlrib11_Geo_6_92_coordIndex())
            .setCoord(new Coordinate("lrib11_Coord").setPoint(getlrib11_Coord_7_92_point()))))
        .addChild(new Shape("lrib12")
          .setAppearance(new Appearance()
            .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(1.0,0.9765,0.8667).setEmissiveColor(1.0,1.0,0.0).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
          .setGeometry(new IndexedFaceSet("lrib12_Geo").setDEF("lrib12_Geo").setCreaseAngle(1.571).setCoordIndex(getlrib12_Geo_6_97_coordIndex())
            .setCoord(new Coordinate("lrib12_Coord").setPoint(getlrib12_Coord_7_97_point()))))
        .addChild(new Shape("lscapula")
          .setAppearance(new Appearance()
            .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setEmissiveColor(1.0,1.0,0.0).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
          .setGeometry(new IndexedFaceSet("lscapula_Geo").setDEF("lscapula_Geo").setCreaseAngle(1.571).setCoordIndex(getlscapula_Geo_6_102_coordIndex())
            .setCoord(new Coordinate("lscapula_Coord").setPoint(getlscapula_Coord_7_102_point()))))
        .addChild(new Shape("lcoscart")
          .setAppearance(new Appearance()
            .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(0.9843,0.949,0.7843).setEmissiveColor(1.0,1.0,0.0).setShininess(0.05).setSpecularColor(0.9647,0.949,0.9098)))
          .setGeometry(new IndexedFaceSet("lcoscart_Geo").setDEF("lcoscart_Geo").setCreaseAngle(1.571).setCoordIndex(getlcoscart_Geo_6_107_coordIndex())
            .setCoord(new Coordinate("lcoscart_Coord").setPoint(getlcoscart_Coord_7_107_point()))))
        .addChild(new Shape("lfreecrt")
          .setAppearance(new Appearance()
            .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(0.9843,0.949,0.7843).setEmissiveColor(1.0,1.0,0.0).setShininess(0.05).setSpecularColor(0.9647,0.949,0.9098)))
          .setGeometry(new IndexedFaceSet("lfreecrt_Geo").setDEF("lfreecrt_Geo").setCreaseAngle(1.571).setCoordIndex(getlfreecrt_Geo_6_112_coordIndex())
            .setCoord(new Coordinate("lfreecrt_Coord").setPoint(getlfreecrt_Coord_7_112_point()))))
        .addChild(new Shape("rclavcle")
          .setAppearance(new Appearance()
            .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setEmissiveColor(1.0,1.0,0.0).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
          .setGeometry(new IndexedFaceSet("rclavcle_Geo").setDEF("rclavcle_Geo").setCreaseAngle(1.571).setCoordIndex(getrclavcle_Geo_6_117_coordIndex())
            .setCoord(new Coordinate("rclavcle_Coord").setPoint(getrclavcle_Coord_7_117_point()))))
        .addChild(new Shape("rccart")
          .setAppearance(new Appearance()
            .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(0.9843,0.949,0.7843).setEmissiveColor(1.0,1.0,0.0).setShininess(0.05).setSpecularColor(0.9647,0.949,0.9098)))
          .setGeometry(new IndexedFaceSet("rccart_Geo").setDEF("rccart_Geo").setCreaseAngle(1.571).setCoordIndex(getrccart_Geo_6_122_coordIndex())
            .setCoord(new Coordinate("rccart_Coord").setPoint(getrccart_Coord_7_122_point()))))
        .addChild(new Shape("rccart2")
          .setAppearance(new Appearance()
            .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(0.9843,0.949,0.7843).setEmissiveColor(1.0,1.0,0.0).setShininess(0.05).setSpecularColor(0.9647,0.949,0.9098)))
          .setGeometry(new IndexedFaceSet("rccart2_Geo").setDEF("rccart2_Geo").setCreaseAngle(1.571).setCoordIndex(getrccart2_Geo_6_127_coordIndex())
            .setCoord(new Coordinate("rccart2_Coord").setPoint(getrccart2_Coord_7_127_point()))))
        .addChild(new Shape("rrrib")
          .setAppearance(new Appearance()
            .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setEmissiveColor(1.0,1.0,0.0).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
          .setGeometry(new IndexedFaceSet("rrrib_Geo").setDEF("rrrib_Geo").setCreaseAngle(1.571).setCoordIndex(getrrrib_Geo_6_132_coordIndex())
            .setCoord(new Coordinate("rrrib_Coord").setPoint(getrrrib_Coord_7_132_point()))))
        .addChild(new Shape("rrib2")
          .setAppearance(new Appearance()
            .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setEmissiveColor(1.0,1.0,0.0).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
          .setGeometry(new IndexedFaceSet("rrib2_Geo").setDEF("rrib2_Geo").setCreaseAngle(1.571).setCoordIndex(getrrib2_Geo_6_137_coordIndex())
            .setCoord(new Coordinate("rrib2_Coord").setPoint(getrrib2_Coord_7_137_point()))))
        .addChild(new Shape("rrib3")
          .setAppearance(new Appearance()
            .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setEmissiveColor(1.0,1.0,0.0).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
          .setGeometry(new IndexedFaceSet("rrib3_Geo").setDEF("rrib3_Geo").setCreaseAngle(1.571).setCoordIndex(getrrib3_Geo_6_142_coordIndex())
            .setCoord(new Coordinate("rrib3_Coord").setPoint(getrrib3_Coord_7_142_point()))))
        .addChild(new Shape("rrib4")
          .setAppearance(new Appearance()
            .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setEmissiveColor(1.0,1.0,0.0).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
          .setGeometry(new IndexedFaceSet("rrib4_Geo").setDEF("rrib4_Geo").setCreaseAngle(1.571).setCoordIndex(getrrib4_Geo_6_147_coordIndex())
            .setCoord(new Coordinate("rrib4_Coord").setPoint(getrrib4_Coord_7_147_point()))))
        .addChild(new Shape("rrib5")
          .setAppearance(new Appearance()
            .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setEmissiveColor(1.0,1.0,0.0).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
          .setGeometry(new IndexedFaceSet("rrib5_Geo").setDEF("rrib5_Geo").setCreaseAngle(1.571).setCoordIndex(getrrib5_Geo_6_152_coordIndex())
            .setCoord(new Coordinate("rrib5_Coord").setPoint(getrrib5_Coord_7_152_point()))))
        .addChild(new Shape("rrib6")
          .setAppearance(new Appearance()
            .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setEmissiveColor(1.0,1.0,0.0).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
          .setGeometry(new IndexedFaceSet("rrib6_Geo").setDEF("rrib6_Geo").setCreaseAngle(1.571).setCoordIndex(getrrib6_Geo_6_157_coordIndex())
            .setCoord(new Coordinate("rrib6_Coord").setPoint(getrrib6_Coord_7_157_point()))))
        .addChild(new Shape("rrib7")
          .setAppearance(new Appearance()
            .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setEmissiveColor(1.0,1.0,0.0).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
          .setGeometry(new IndexedFaceSet("rrib7_Geo").setDEF("rrib7_Geo").setCreaseAngle(1.571).setCoordIndex(getrrib7_Geo_6_162_coordIndex())
            .setCoord(new Coordinate("rrib7_Coord").setPoint(getrrib7_Coord_7_162_point()))))
        .addChild(new Shape("rrib8")
          .setAppearance(new Appearance()
            .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setEmissiveColor(1.0,1.0,0.0).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
          .setGeometry(new IndexedFaceSet("rrib8_Geo").setDEF("rrib8_Geo").setCreaseAngle(1.571).setCoordIndex(getrrib8_Geo_6_167_coordIndex())
            .setCoord(new Coordinate("rrib8_Coord").setPoint(getrrib8_Coord_7_167_point()))))
        .addChild(new Shape("rrib9")
          .setAppearance(new Appearance()
            .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setEmissiveColor(1.0,1.0,0.0).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
          .setGeometry(new IndexedFaceSet("rrib9_Geo").setDEF("rrib9_Geo").setCreaseAngle(1.571).setCoordIndex(getrrib9_Geo_6_172_coordIndex())
            .setCoord(new Coordinate("rrib9_Coord").setPoint(getrrib9_Coord_7_172_point()))))
        .addChild(new Shape("rrib10")
          .setAppearance(new Appearance()
            .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setEmissiveColor(1.0,1.0,0.0).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
          .setGeometry(new IndexedFaceSet("rrib10_Geo").setDEF("rrib10_Geo").setCreaseAngle(1.571).setCoordIndex(getrrib10_Geo_6_177_coordIndex())
            .setCoord(new Coordinate("rrib10_Coord").setPoint(getrrib10_Coord_7_177_point()))))
        .addChild(new Shape("rrib11")
          .setAppearance(new Appearance()
            .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setEmissiveColor(1.0,1.0,0.0).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
          .setGeometry(new IndexedFaceSet("rrib11_Geo").setDEF("rrib11_Geo").setCreaseAngle(1.571).setCoordIndex(getrrib11_Geo_6_182_coordIndex())
            .setCoord(new Coordinate("rrib11_Coord").setPoint(getrrib11_Coord_7_182_point()))))
        .addChild(new Shape("rrib12")
          .setAppearance(new Appearance()
            .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setEmissiveColor(1.0,1.0,0.0).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
          .setGeometry(new IndexedFaceSet("rrib12_Geo").setDEF("rrib12_Geo").setCreaseAngle(1.571).setCoordIndex(getrrib12_Geo_6_187_coordIndex())
            .setCoord(new Coordinate("rrib12_Coord").setPoint(getrrib12_Coord_7_187_point()))))
        .addChild(new Shape("rcartend")
          .setAppearance(new Appearance()
            .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(0.9843,0.949,0.7843).setEmissiveColor(1.0,1.0,0.0).setShininess(0.05).setSpecularColor(0.9647,0.949,0.9098)))
          .setGeometry(new IndexedFaceSet("rcartend_Geo").setDEF("rcartend_Geo").setCreaseAngle(1.571).setCoordIndex(getrcartend_Geo_6_192_coordIndex())
            .setCoord(new Coordinate("rcartend_Coord").setPoint(getrcartend_Coord_7_192_point()))))
        .addChild(new Shape("rscapula")
          .setAppearance(new Appearance()
            .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.9765,0.8667).setEmissiveColor(1.0,1.0,0.0).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
          .setGeometry(new IndexedFaceSet("rscapula_Geo").setDEF("rscapula_Geo").setCreaseAngle(1.571).setCoordIndex(getrscapula_Geo_6_197_coordIndex())
            .setCoord(new Coordinate("rscapula_Coord").setPoint(getrscapula_Coord_7_197_point()))))
        .addChild(new Shape("rcoscart")
          .setAppearance(new Appearance()
            .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(0.9843,0.949,0.7843).setEmissiveColor(1.0,1.0,0.0).setShininess(0.05).setSpecularColor(0.9647,0.949,0.9098)))
          .setGeometry(new IndexedFaceSet("rcoscart_Geo").setDEF("rcoscart_Geo").setCreaseAngle(1.571).setCoordIndex(getrcoscart_Geo_6_202_coordIndex())
            .setCoord(new Coordinate("rcoscart_Coord").setPoint(getrcoscart_Coord_7_202_point()))))
        .addChild(new Shape("rfreecrt")
          .setAppearance(new Appearance()
            .setMaterial(new Material().setAmbientIntensity(0.965).setDiffuseColor(0.9843,0.949,0.7843).setEmissiveColor(1.0,1.0,0.0).setShininess(0.05).setSpecularColor(0.9647,0.949,0.9098)))
          .setGeometry(new IndexedFaceSet("rfreecrt_Geo").setDEF("rfreecrt_Geo").setCreaseAngle(1.571).setCoordIndex(getrfreecrt_Geo_6_207_coordIndex())
            .setCoord(new Coordinate("rfreecrt_Coord").setPoint(getrfreecrt_Coord_7_207_point())))))));
            }
            catch (Exception ex)
            {       
                System.err.println ("*** Further hints on X3DJSAIL errors and exceptions at");
                System.err.println ("*** https://www.web3d.org/specifications/java/X3DJSAIL.html");
                throw (ex);
            }
	}
	// end of initialize() method


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

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getsternum_Geo_6_17_coordIndex_2()
		{
			int[] value = {400,401,158,-1,90,89,93,-1,181,402,403,-1,181,183,402,-1,283,404,281,-1,283,405,404,-1,125,134,190,-1,156,406,359,-1,407,120,167,-1,407,121,120,-1,314,297,296,-1,408,405,409,-1,408,410,405,-1,411,410,412,-1,411,413,410,-1,414,415,416,-1,414,417,415,-1,416,285,284,-1,284,418,416,-1,237,419,420,-1,419,415,420,-1,420,417,421,-1,420,415,417,-1,191,193,422,-1,422,228,191,-1,164,329,423,-1,164,163,329,-1,424,339,341,-1,341,425,424,-1,426,427,428,-1,358,380,429,-1,429,355,358,-1,96,430,95,-1,98,431,96,-1,431,430,96,-1,432,433,289,-1,432,434,433,-1,149,144,435,-1,224,436,437,-1,436,438,437,-1,436,5,439,-1,436,440,5,-1,441,442,443,-1,444,445,446,-1,447,448,449,-1,447,450,448,-1,451,452,453,-1,451,454,452,-1,455,456,450,-1,450,457,455,-1,458,459,460,-1,448,450,456,-1,452,454,461,-1,462,463,464,-1,465,466,467,-1,468,469,470,-1,470,471,468,-1,469,472,473,-1,472,474,473,-1,468,471,475,-1,475,476,468,-1,477,478,479,-1,478,480,479,-1,481,482,483,-1,482,484,483,-1,485,486,487,-1,487,488,485,-1,477,479,489,-1,489,490,477,-1,491,480,492,-1,480,493,492,-1,486,485,481,-1,481,483,486,-1,465,494,495,-1,465,464,494,-1,496,497,498,-1,498,499,496,-1,500,501,502,-1,500,503,501,-1,504,505,506,-1,505,507,506,-1,463,462,508,-1,508,509,463,-1,510,511,512,-1,512,513,510,-1,503,512,514,-1,503,513,512,-1,499,515,504,-1,504,496,499,-1,494,464,463,-1,516,517,518,-1,519,520,521,-1,522,523,524,-1,522,525,523,-1,526,527,522,-1,526,528,527,-1,525,529,530,-1,531,532,533,-1,534,531,535,-1,536,534,537,-1,538,539,377,-1,538,540,539,-1,538,541,540,-1,542,543,544,-1,545,546,547,-1,547,548,545,-1,549,550,551,-1,551,552,553,-1,554,555,556,-1,555,557,556,-1,558,559,539,-1,539,560,558,-1,559,561,539,-1,562,563,564,-1,565,558,560,-1,565,566,558,-1,561,567,377,-1,568,569,570,-1,571,569,568,-1,572,573,574,-1,574,570,572,-1,544,575,576,-1,576,542,544,-1,577,578,579,-1,578,580,579,-1,581,582,583,-1,583,584,581,-1,585,586,587,-1,585,588,586,-1,575,578,577,-1,577,589,575,-1,589,590,591,-1,592,593,594,-1,577,579,590,-1,595,596,597,-1,594,598,599,-1,600,601,448,-1,602,603,604,-1,605,606,607,-1,608,609,610,-1,610,611,608,-1,609,612,613,-1,612,614,613,-1,615,616,617,-1,618,619,620,-1,621,611,610,-1,610,622,621,-1,623,611,624,-1,624,625,623,-1,626,627,610,-1,628,629,630,-1,630,622,628,-1,621,618,631,-1,610,627,622,-1,626,632,633,-1,629,628,634,-1,634,635,629,-1,636,637,638,-1,636,639,640,-1,641,638,642,-1,643,644,645,-1,645,646,643,-1,647,648,649,-1,647,650,648,-1,651,652,600,-1,600,448,651,-1,653,605,607,-1,654,655,656,-1,657,658,659,-1,658,660,659,-1,661,662,663,-1,663,664,665,-1,665,666,663,-1,523,525,667,-1,662,668,669,-1,669,668,441,-1,441,670,669,-1,671,672,673,-1,674,616,675,-1,674,614,616,-1,631,618,620,-1,676,637,677,-1,630,678,620,-1,679,680,681,-1,682,683,679,-1,683,680,679,-1,684,678,629,-1,678,630,629,-1,685,671,673,-1,686,687,688,-1,687,689,688,-1,690,691,692,-1,690,687,691,-1,688,693,694,-1,694,695,688,-1,520,696,521,-1,693,697,696,-1,693,698,697,-1,691,699,700,-1,696,520,701,-1,701,693,696,-1,702,670,703,-1,670,704,703,-1,521,703,705,-1,521,526,519,-1,662,661,706,-1,706,707,662,-1,700,685,692,-1,699,686,675,-1,686,708,675,-1,619,630,620,-1,709,684,635,-1,684,629,635,-1,710,711,615,-1,712,713,714,-1,715,640,639,-1,716,717,718,-1,640,715,643,-1,719,720,721,-1,722,715,723,-1,715,639,723,-1,724,725,726,-1,725,718,726,-1,721,727,728,-1,721,720,727,-1,729,730,725,-1,730,731,725,-1,730,732,733,-1,734,735,722,-1,734,736,735,-1,737,738,739,-1,740,741,742,-1,743,744,745,-1,746,747,748,-1,749,750,751,-1,750,752,751,-1,753,648,754,-1,648,755,754,-1,756,757,758,-1,759,760,761,-1,762,763,764,-1,762,765,763,-1,766,756,758,-1,758,767,766,-1,762,768,760,-1,760,765,762,-1,769,770,771,-1,771,772,769,-1,773,774,775,-1,776,768,777,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getsternum_Geo_6_17_coordIndex_3()
		{
			int[] value = {777,778,776,-1,779,780,781,-1,521,696,697,-1,702,521,782,-1,661,783,706,-1,661,666,783,-1,712,635,634,-1,733,728,727,-1,733,784,728,-1,739,785,723,-1,723,786,739,-1,766,774,787,-1,787,788,766,-1,765,789,763,-1,790,757,756,-1,671,685,711,-1,711,625,671,-1,622,627,628,-1,680,636,681,-1,791,779,777,-1,787,774,773,-1,749,792,754,-1,792,793,754,-1,794,795,507,-1,507,655,794,-1,740,796,797,-1,740,798,796,-1,799,752,508,-1,752,750,508,-1,800,801,792,-1,800,747,801,-1,802,745,744,-1,509,755,650,-1,755,648,650,-1,802,793,803,-1,803,745,802,-1,800,748,747,-1,804,606,605,-1,593,805,571,-1,593,592,805,-1,806,807,572,-1,572,603,806,-1,808,516,518,-1,809,810,811,-1,811,812,809,-1,603,570,813,-1,603,572,570,-1,814,742,741,-1,532,815,533,-1,536,562,532,-1,536,563,562,-1,816,817,818,-1,591,590,819,-1,819,584,591,-1,804,820,606,-1,820,821,606,-1,822,823,824,-1,824,825,822,-1,826,743,827,-1,826,744,743,-1,645,644,726,-1,726,828,645,-1,829,830,831,-1,732,784,733,-1,832,833,668,-1,833,442,668,-1,818,834,835,-1,447,449,458,-1,836,837,838,-1,838,839,836,-1,393,360,840,-1,821,840,607,-1,400,841,396,-1,842,843,844,-1,842,845,843,-1,708,846,674,-1,847,848,849,-1,847,850,848,-1,628,627,626,-1,833,851,852,-1,636,680,637,-1,712,853,854,-1,855,856,823,-1,856,820,804,-1,805,857,810,-1,857,811,810,-1,647,858,859,-1,860,848,861,-1,848,862,861,-1,863,864,865,-1,863,866,864,-1,850,867,868,-1,867,869,868,-1,870,871,872,-1,872,721,870,-1,530,873,874,-1,530,875,873,-1,876,877,878,-1,877,879,878,-1,880,881,882,-1,883,884,885,-1,883,886,884,-1,676,642,637,-1,642,638,637,-1,887,888,889,-1,887,874,888,-1,740,742,798,-1,890,548,891,-1,890,825,548,-1,448,456,651,-1,377,567,97,-1,892,559,558,-1,893,894,658,-1,761,758,895,-1,758,896,895,-1,897,646,645,-1,897,898,646,-1,899,681,646,-1,681,640,646,-1,678,679,899,-1,899,900,678,-1,901,902,903,-1,901,707,902,-1,646,640,643,-1,758,757,896,-1,757,904,896,-1,905,906,567,-1,907,461,908,-1,908,909,907,-1,910,827,911,-1,912,913,914,-1,914,915,912,-1,916,660,894,-1,916,917,660,-1,677,918,919,-1,919,676,677,-1,920,921,922,-1,922,923,920,-1,922,924,719,-1,922,921,924,-1,850,847,789,-1,789,867,850,-1,867,920,869,-1,867,921,920,-1,863,862,866,-1,863,861,862,-1,925,861,926,-1,925,860,861,-1,773,771,787,-1,809,812,927,-1,812,839,927,-1,607,606,821,-1,871,870,641,-1,641,642,871,-1,633,632,928,-1,849,848,929,-1,848,860,929,-1,613,674,846,-1,613,614,674,-1,553,930,551,-1,160,841,400,-1,160,931,841,-1,932,399,933,-1,932,397,399,-1,834,821,934,-1,396,935,394,-1,653,392,388,-1,393,840,160,-1,360,392,607,-1,607,392,653,-1,890,822,825,-1,379,556,388,-1,379,554,556,-1,936,546,545,-1,545,937,936,-1,452,907,938,-1,452,461,907,-1,554,379,939,-1,379,97,939,-1,377,539,561,-1,940,833,832,-1,739,738,785,-1,933,941,942,-1,942,943,933,-1,944,649,648,-1,944,945,649,-1,780,779,791,-1,840,360,607,-1,454,946,908,-1,908,461,454,-1,947,834,818,-1,818,817,947,-1,595,588,581,-1,657,857,658,-1,948,742,949,-1,742,814,949,-1,805,592,857,-1,915,592,594,-1,594,912,915,-1,444,950,445,-1,821,820,934,-1,812,951,654,-1,812,811,951,-1,748,800,751,-1,802,754,793,-1,802,753,754,-1,655,507,656,-1,507,505,656,-1,952,659,917,-1,659,660,917,-1,802,944,753,-1,814,741,953,-1,741,954,953,-1,955,956,794,-1,956,795,794,-1,811,657,951,-1,811,857,657,-1,729,957,732,-1,785,738,734,-1,714,682,684,-1,684,709,714,-1,958,929,790,-1,760,759,765,-1,788,787,770,-1,787,771,770,-1,724,729,725,-1,724,957,729,-1,785,734,722,-1,722,723,785,-1,959,712,634,-1,673,692,685,-1,673,690,692,-1,672,706,673,-1,521,705,528,-1,665,521,697,-1,777,779,778,-1,767,774,766,-1,767,775,774,-1,771,773,772,-1,788,770,790,-1,770,958,790,-1,960,763,847,-1,960,764,763,-1,761,768,776,-1,761,760,768,-1,767,758,761,-1,761,776,767,-1,763,789,847,-1,929,958,849,-1,648,753,944,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getsternum_Geo_6_17_coordIndex_4()
		{
			int[] value = {754,750,749,-1,754,755,750,-1,752,748,751,-1,747,961,801,-1,747,746,961,-1,955,798,742,-1,741,740,954,-1,740,797,954,-1,786,962,739,-1,962,737,739,-1,736,734,738,-1,727,731,730,-1,730,733,727,-1,730,729,732,-1,962,963,870,-1,962,786,963,-1,644,715,735,-1,715,722,735,-1,962,870,721,-1,721,728,962,-1,718,717,726,-1,963,641,870,-1,720,719,716,-1,638,963,639,-1,713,712,854,-1,712,709,635,-1,853,712,959,-1,959,964,965,-1,965,853,959,-1,712,714,709,-1,928,919,918,-1,928,966,919,-1,620,967,631,-1,620,968,967,-1,615,617,969,-1,700,699,675,-1,970,782,521,-1,703,521,702,-1,666,661,663,-1,703,971,705,-1,703,704,971,-1,665,697,698,-1,698,666,665,-1,691,700,692,-1,664,521,665,-1,686,699,691,-1,691,687,686,-1,687,783,689,-1,687,690,783,-1,972,695,694,-1,972,878,695,-1,677,683,973,-1,677,680,683,-1,965,964,633,-1,633,918,965,-1,679,678,682,-1,678,684,682,-1,680,677,637,-1,918,633,928,-1,679,681,899,-1,928,632,974,-1,671,624,672,-1,671,625,624,-1,674,675,708,-1,846,708,695,-1,529,971,975,-1,529,527,971,-1,971,443,975,-1,971,704,443,-1,443,670,441,-1,443,704,670,-1,441,668,442,-1,701,972,694,-1,694,693,701,-1,810,976,569,-1,810,809,976,-1,658,894,660,-1,654,656,836,-1,836,839,654,-1,160,840,931,-1,977,821,834,-1,396,978,935,-1,396,841,978,-1,859,650,647,-1,715,644,643,-1,963,638,641,-1,638,639,636,-1,640,681,636,-1,964,959,634,-1,634,628,964,-1,630,619,622,-1,610,979,626,-1,610,609,979,-1,626,974,632,-1,626,979,974,-1,615,969,710,-1,618,622,619,-1,618,621,622,-1,974,980,928,-1,979,980,974,-1,608,981,609,-1,981,612,609,-1,839,812,654,-1,855,823,982,-1,536,532,534,-1,532,531,534,-1,595,586,588,-1,586,595,597,-1,590,589,577,-1,590,579,983,-1,579,580,983,-1,580,574,983,-1,568,578,571,-1,568,580,578,-1,544,593,571,-1,543,593,544,-1,939,97,567,-1,553,905,559,-1,930,553,984,-1,985,551,930,-1,548,825,545,-1,599,598,535,-1,535,531,599,-1,534,542,537,-1,534,535,542,-1,822,982,823,-1,522,527,525,-1,527,529,525,-1,526,521,528,-1,459,458,453,-1,986,498,497,-1,986,987,498,-1,987,502,498,-1,987,988,502,-1,989,501,503,-1,503,514,989,-1,990,991,500,-1,500,992,990,-1,465,506,466,-1,505,515,993,-1,505,504,515,-1,499,502,501,-1,499,498,502,-1,495,506,465,-1,994,995,478,-1,478,470,994,-1,487,996,488,-1,487,997,996,-1,998,489,479,-1,479,999,998,-1,1000,1001,1002,-1,1002,1003,1000,-1,1004,36,1005,-1,36,34,1005,-1,32,1006,30,-1,1007,490,489,-1,489,1008,1007,-1,462,1009,1010,-1,1010,1011,462,-1,462,464,1009,-1,506,507,466,-1,507,795,466,-1,938,1012,452,-1,460,447,458,-1,517,445,454,-1,454,451,517,-1,446,1013,1014,-1,446,516,1013,-1,516,808,1013,-1,707,668,662,-1,875,975,443,-1,189,1015,1016,-1,1016,188,189,-1,435,143,188,-1,435,144,143,-1,370,435,372,-1,435,1017,372,-1,1018,432,288,-1,432,289,288,-1,165,164,1019,-1,1020,94,1021,-1,97,96,377,-1,1022,1023,1024,-1,381,87,390,-1,381,88,87,-1,265,264,261,-1,1025,1026,1027,-1,1027,1028,1025,-1,1029,1030,1031,-1,1029,1032,1030,-1,882,881,1033,-1,202,1034,1035,-1,1034,1036,1035,-1,1026,1037,1038,-1,1037,2,1038,-1,1039,1040,245,-1,1040,239,245,-1,414,416,418,-1,418,1041,414,-1,865,411,412,-1,865,864,411,-1,410,404,405,-1,410,413,404,-1,154,1042,152,-1,168,333,344,-1,333,343,344,-1,1043,335,1044,-1,76,1044,118,-1,234,232,231,-1,192,194,142,-1,1045,1046,374,-1,133,1047,141,-1,281,418,284,-1,281,404,418,-1,183,181,180,-1,1048,1049,1050,-1,1048,1051,1049,-1,94,92,1021,-1,94,93,92,-1,396,401,400,-1,359,159,156,-1,159,360,393,-1,1052,162,121,-1,1052,1053,162,-1,11,1054,12,-1,1055,1056,385,-1,1056,386,385,-1,1057,155,354,-1,4,174,373,-1,174,374,373,-1,254,1058,249,-1,831,830,1059,-1,240,150,369,-1,150,370,369,-1,1039,245,237,-1,237,420,1039,-1,1060,78,87,-1,1060,76,78,-1,406,335,1043,-1,406,156,335,-1,1061,109,1062,-1,1062,1063,1061,-1,354,353,1064,-1,1065,1066,117,-1,117,116,1065,-1,1067,1068,116,-1,262,264,327,-1,1069,1070,1071,-1,1069,1072,1070,-1,333,168,120,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=5 */
		private int[] getsternum_Geo_6_17_coordIndex_5()
		{
			int[] value = {168,167,120,-1,101,100,85,-1,100,342,85,-1,350,7,9,-1,1070,1073,1074,-1,1074,1071,1070,-1,344,340,100,-1,100,102,344,-1,1075,406,1043,-1,269,272,331,-1,1076,1077,328,-1,328,1078,1076,-1,280,275,1079,-1,1079,153,280,-1,1080,1078,328,-1,345,324,327,-1,345,323,324,-1,1081,267,331,-1,267,269,331,-1,1082,273,1083,-1,1082,277,273,-1,263,1084,261,-1,1084,265,261,-1,332,1084,263,-1,332,119,1084,-1,18,20,325,-1,325,330,18,-1,276,1081,274,-1,276,1077,1081,-1,296,298,314,-1,303,302,361,-1,143,142,194,-1,141,1047,127,-1,1085,307,187,-1,307,186,187,-1,1086,433,318,-1,286,285,316,-1,314,298,300,-1,300,315,314,-1,253,1058,254,-1,253,243,1058,-1,138,233,231,-1,306,216,218,-1,306,206,216,-1,1087,74,219,-1,215,1088,74,-1,1089,362,302,-1,303,292,287,-1,287,301,303,-1,299,298,296,-1,297,313,1090,-1,1090,295,297,-1,1090,313,281,-1,313,282,281,-1,291,292,1091,-1,1091,316,291,-1,1086,300,290,-1,290,289,1086,-1,294,286,1091,-1,286,316,1091,-1,288,291,317,-1,289,433,1086,-1,275,280,279,-1,279,276,275,-1,271,277,274,-1,271,273,277,-1,272,269,270,-1,1092,268,267,-1,267,1076,1092,-1,1078,1080,1093,-1,264,262,261,-1,258,255,259,-1,247,246,256,-1,246,257,256,-1,254,249,251,-1,312,251,250,-1,312,252,251,-1,243,238,245,-1,243,253,238,-1,309,151,247,-1,309,145,151,-1,245,238,237,-1,149,151,144,-1,242,241,236,-1,145,144,151,-1,230,235,231,-1,132,1085,130,-1,233,1094,319,-1,319,229,233,-1,125,1095,123,-1,125,227,1095,-1,226,1016,1015,-1,226,225,1016,-1,226,137,126,-1,182,208,209,-1,182,180,208,-1,212,307,213,-1,306,218,3,-1,3,5,306,-1,1096,75,74,-1,304,220,74,-1,220,177,219,-1,177,176,219,-1,170,1097,1088,-1,1088,171,170,-1,213,209,207,-1,1088,215,171,-1,215,214,171,-1,74,1088,1097,-1,207,205,204,-1,204,212,207,-1,1098,205,208,-1,1098,203,205,-1,305,186,307,-1,1094,137,319,-1,137,1015,319,-1,189,197,320,-1,189,194,197,-1,193,195,196,-1,193,191,195,-1,143,194,189,-1,226,1015,137,-1,193,192,422,-1,226,128,223,-1,182,1099,183,-1,1099,402,183,-1,305,184,186,-1,176,4,1100,-1,176,175,4,-1,4,3,217,-1,1101,1102,1103,-1,210,211,217,-1,217,216,210,-1,217,3,218,-1,161,330,119,-1,359,1075,391,-1,1104,1022,1024,-1,1104,1105,1022,-1,364,153,152,-1,364,280,153,-1,370,150,149,-1,149,435,370,-1,1106,146,147,-1,144,145,142,-1,146,192,142,-1,138,141,1094,-1,1094,233,138,-1,190,134,133,-1,127,1047,136,-1,223,128,129,-1,137,1094,141,-1,141,127,137,-1,136,1047,133,-1,185,1107,1108,-1,1108,187,185,-1,136,1107,129,-1,129,127,136,-1,226,126,128,-1,222,1099,132,-1,403,1109,135,-1,403,402,1109,-1,1110,1107,136,-1,136,135,1110,-1,359,406,1075,-1,1111,1071,1112,-1,1024,1113,1104,-1,83,85,342,-1,112,1114,113,-1,109,107,110,-1,342,100,340,-1,1062,109,111,-1,114,115,1115,-1,1115,1116,114,-1,1117,1118,348,-1,348,1063,1117,-1,80,1119,99,-1,80,1120,1119,-1,1115,10,8,-1,8,1116,1115,-1,1121,1070,1072,-1,1072,108,1121,-1,104,166,102,-1,1072,166,104,-1,377,96,375,-1,1122,1123,1124,-1,1122,1020,1123,-1,1125,1066,1065,-1,376,375,94,-1,376,1020,1122,-1,376,94,1020,-1,389,1126,378,-1,389,1127,1126,-1,93,1128,90,-1,90,1055,1129,-1,1130,385,86,-1,86,88,1130,-1,99,101,80,-1,377,376,538,-1,376,541,538,-1,376,1131,541,-1,79,81,117,-1,82,84,81,-1,1067,116,84,-1,1038,1132,1102,-1,1133,1134,75,-1,1134,73,75,-1,1135,1103,1133,-1,1103,1102,1133,-1,74,1097,1096,-1,350,1136,7,-1,1137,22,1138,-1,59,55,1139,-1,1139,57,59,-1,65,1140,66,-1,65,1141,1140,-1,1141,510,1140,-1,1141,511,510,-1,1082,23,1137,-1,1137,1079,1082,-1,19,58,57,-1,19,18,58,-1,53,52,66,-1,66,60,53,-1,55,69,1139,-1,55,54,69,-1,51,1138,50,-1,1138,22,50,-1,1142,1143,1144,-1,1142,1145,1143,-1,1146,1147,1148,-1,1148,1149,1146,-1,1150,40,1151,-1,1150,38,40,-1,29,41,1152,-1,1152,27,29,-1,46,1147,44,-1,1147,1146,44,-1,484,482,1149,-1,1149,1148,484,-1,41,37,1152,-1,41,40,37,-1,1153,1154,1155,-1,1155,1156,1153,-1,1157,1158,1159,-1,1159,1160,1157,-1,1161,17,50,-1,22,1137,23,-1,358,357,14,-1,1023,1162,1024,-1,13,72,11,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=6 */
		private int[] getsternum_Geo_6_17_coordIndex_6()
		{
			int[] value = {1023,1163,1164,-1,1164,1162,1023,-1,71,14,357,-1,357,1165,71,-1,1024,1162,12,-1,12,1054,1024,-1,9,1113,349,-1,9,6,1113,-1,8,336,338,-1,0,174,175,-1,1166,1167,1168,-1,1169,1170,1171,-1,1171,1172,1169,-1,1173,1174,1175,-1,1173,1176,1174,-1,1177,442,833,-1,1177,1178,442,-1,1179,833,852,-1,1179,1177,833,-1,1180,1181,1182,-1,1180,1183,1181,-1,1184,1185,1186,-1,1187,1188,1189,-1,1188,1190,1189,-1,1191,1192,1193,-1,1193,1194,1191,-1,1195,1193,1196,-1,1197,1198,1199,-1,1197,1200,1198,-1,1201,1202,1182,-1,1202,1180,1182,-1,1199,1203,1204,-1,1203,1205,1204,-1,1175,1206,1173,-1,1207,1208,1209,-1,1208,1210,1209,-1,1211,1212,1213,-1,1214,1215,1216,-1,1217,1193,1187,-1,1217,1218,1193,-1,1193,1195,1194,-1,1219,1220,1214,-1,1219,1221,1220,-1,875,443,1171,-1,1197,1181,1169,-1,1181,1170,1169,-1,1215,1222,1185,-1,1181,1197,1182,-1,1197,1199,1182,-1,1223,1224,1195,-1,1195,1196,1223,-1,1225,1226,1227,-1,1222,1218,1186,-1,1186,1185,1222,-1,1228,1190,1229,-1,1217,1187,1230,-1,1187,1189,1230,-1,1231,1232,1233,-1,1190,1188,1229,-1,1234,1190,1235,-1,1236,1237,1167,-1,1196,1193,1218,-1,1218,1222,1196,-1,1215,1214,1223,-1,1166,1168,1204,-1,1204,1205,1166,-1,1037,1201,1238,-1,1037,1202,1201,-1,1203,1199,1198,-1,1170,1183,873,-1,1170,1181,1183,-1,1169,1200,1197,-1,1169,1239,1200,-1,1227,1239,1176,-1,1176,1228,1227,-1,1172,1171,1174,-1,1171,1178,1174,-1,1240,1167,1166,-1,1224,1205,1195,-1,1205,1203,1195,-1,1214,1216,1219,-1,1214,1220,1224,-1,1241,1207,1242,-1,1207,1209,1242,-1,1173,1235,1176,-1,1212,1206,1179,-1,1179,1243,1212,-1,1182,1204,1201,-1,1182,1199,1204,-1,1214,1224,1223,-1,1211,1244,1234,-1,1211,1213,1244,-1,1191,1194,1198,-1,1245,1045,1242,-1,1242,1243,1245,-1,174,1236,1246,-1,174,0,1236,-1,1175,1174,1178,-1,1178,1177,1175,-1,1246,374,174,-1,1246,1241,374,-1,1169,1172,1239,-1,1113,1054,349,-1,1113,1024,1054,-1,13,1162,1164,-1,12,1162,13,-1,14,72,15,-1,72,14,71,-1,357,1136,1165,-1,357,336,1136,-1,16,1164,1163,-1,16,15,1164,-1,1083,23,1082,-1,23,1083,25,-1,1153,1247,1248,-1,1153,1156,1247,-1,346,1157,1160,-1,326,1157,346,-1,1161,22,21,-1,1161,50,22,-1,1159,24,1155,-1,1158,24,1159,-1,345,39,323,-1,48,39,345,-1,1156,24,25,-1,1155,24,1156,-1,49,1160,1159,-1,49,48,1160,-1,1248,27,1153,-1,27,1248,28,-1,1149,1249,1146,-1,1249,1149,33,-1,1144,44,1142,-1,1144,45,44,-1,41,1151,40,-1,41,43,1151,-1,31,484,1148,-1,31,30,484,-1,1147,428,1250,-1,46,428,1147,-1,47,1251,426,-1,47,42,1251,-1,38,329,321,-1,38,1150,329,-1,423,1145,1252,-1,423,1143,1145,-1,35,1050,1253,-1,1050,35,1048,-1,1254,428,427,-1,1254,1250,428,-1,1142,1253,1145,-1,1142,1249,1253,-1,1151,1143,1150,-1,1151,1144,1143,-1,1253,33,35,-1,1253,1249,33,-1,69,51,1139,-1,1138,51,69,-1,1140,60,66,-1,1140,61,60,-1,154,70,67,-1,154,153,70,-1,68,1255,1042,-1,68,63,1255,-1,62,1256,1257,-1,1258,1256,62,-1,1259,65,1260,-1,1259,1141,65,-1,59,1261,64,-1,1261,59,56,-1,1262,62,61,-1,1262,1258,62,-1,1139,19,57,-1,1139,51,19,-1,1138,70,1137,-1,69,70,1138,-1,1097,1135,1096,-1,1135,1097,170,-1,1101,173,202,-1,1101,1103,173,-1,1132,1133,1102,-1,1132,1134,1133,-1,1026,1102,1027,-1,1026,1038,1102,-1,1101,1035,1263,-1,1035,1101,202,-1,881,1264,1265,-1,881,1266,1264,-1,1122,1131,376,-1,1122,1267,1131,-1,1268,1269,1124,-1,1268,1270,1269,-1,84,1271,1067,-1,84,83,1271,-1,1129,385,1130,-1,1129,1055,385,-1,1272,389,1075,-1,1272,1127,389,-1,1128,431,1056,-1,1128,430,431,-1,1273,1274,1275,-1,1273,1068,1274,-1,1019,1276,1277,-1,1276,1019,164,-1,1278,1279,1280,-1,1279,1278,1277,-1,1269,1281,1267,-1,1281,1269,1282,-1,1020,1283,1123,-1,1020,1021,1283,-1,92,1284,1285,-1,92,89,1284,-1,1065,1068,1273,-1,1065,116,1068,-1,1286,8,338,-1,1286,1116,8,-1,1121,1073,1070,-1,1121,1287,1073,-1,1120,79,1117,-1,1120,80,79,-1,1115,1288,10,-1,1115,1118,1288,-1,104,108,1072,-1,104,105,108,-1,348,1061,1063,-1,348,113,1061,-1,1114,1286,1287,-1,112,1286,1114,-1,1289,108,106,-1,1289,1121,108,-1,1117,1062,1120,-1,1062,1117,1063,-1,115,1118,1115,-1,348,1118,115,-1,1120,111,1119,-1,1120,1062,111,-1,106,1061,1289,-1,106,109,1061,-1,1290,1113,1125,-1,1290,1104,1113,-1,11,349,1054,-1,11,351,349,-1,1069,1111,1291,-1,1069,1071,1111,-1,1074,1112,1071,-1,1074,1292,1112,-1,1293,135,1109,-1,135,1293,1110,-1,402,222,1109,-1,402,1099,222,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=7 */
		private int[] getsternum_Geo_6_17_coordIndex_7()
		{
			int[] value = {1108,131,130,-1,1293,131,1108,-1,1107,1293,1108,-1,1107,1110,1293,-1,1107,223,129,-1,185,223,1107,-1,141,190,133,-1,140,190,141,-1,1279,1051,1294,-1,1051,1279,1049,-1,1022,1284,1295,-1,1105,1284,1022,-1,1281,1296,1297,-1,1296,1281,1280,-1,89,1295,1284,-1,89,91,1295,-1,76,1272,1044,-1,76,1060,1272,-1,389,391,1075,-1,389,388,391,-1,401,395,1298,-1,395,401,396,-1,178,1132,1,-1,178,1134,1132,-1,403,1034,181,-1,123,1034,403,-1,320,1015,189,-1,320,319,1015,-1,199,438,200,-1,1299,438,199,-1,179,208,180,-1,179,1098,208,-1,171,203,1098,-1,171,214,203,-1,1133,1096,1135,-1,1096,1133,75,-1,220,178,177,-1,304,178,220,-1,1087,176,1100,-1,219,176,1087,-1,74,1300,221,-1,1300,74,1087,-1,213,1085,132,-1,1085,213,307,-1,204,306,305,-1,204,206,306,-1,235,196,234,-1,235,197,196,-1,240,246,150,-1,246,240,311,-1,252,238,253,-1,238,252,236,-1,330,1084,119,-1,330,325,1084,-1,1093,1076,1078,-1,1093,1092,1076,-1,284,1090,281,-1,1090,284,293,-1,315,282,313,-1,318,282,315,-1,362,293,294,-1,362,1089,293,-1,259,243,244,-1,259,1058,243,-1,361,294,1091,-1,361,362,294,-1,299,287,290,-1,299,301,287,-1,130,187,1108,-1,130,1085,187,-1,316,1301,317,-1,316,1302,1301,-1,299,302,301,-1,299,296,302,-1,277,1079,275,-1,1082,1079,277,-1,1076,1081,1077,-1,1076,267,1081,-1,260,322,347,-1,322,260,324,-1,343,332,347,-1,332,343,333,-1,331,274,1081,-1,274,331,271,-1,28,270,268,-1,28,1248,270,-1,279,1077,276,-1,1077,279,328,-1,1074,338,337,-1,338,1074,1073,-1,10,1066,6,-1,1288,1066,10,-1,1069,166,1072,-1,166,1069,169,-1,326,264,266,-1,346,264,326,-1,328,1303,1080,-1,328,1304,1303,-1,1125,1273,1290,-1,1125,1065,1273,-1,336,356,337,-1,357,356,336,-1,1292,1305,1112,-1,1305,1292,1306,-1,1057,334,155,-1,334,1057,1307,-1,1272,1043,1044,-1,1272,1075,1043,-1,1308,1309,1310,-1,1311,1309,1308,-1,1312,1310,1309,-1,1312,1313,1310,-1,1018,1310,1314,-1,1018,1308,1310,-1,1315,427,1316,-1,1254,427,1315,-1,365,152,1317,-1,365,364,152,-1,1318,1319,1320,-1,1321,1319,1318,-1,1039,421,1322,-1,421,1039,420,-1,371,1323,1059,-1,371,372,1323,-1,249,259,255,-1,249,1058,259,-1,1324,1059,830,-1,1059,1324,371,-1,240,1325,241,-1,369,1325,240,-1,1299,437,438,-1,1299,1326,437,-1,1327,1328,1017,-1,1329,1328,1327,-1,1330,1331,1332,-1,1330,1333,1331,-1,1334,1016,225,-1,1334,1335,1016,-1,1336,201,1046,-1,201,1336,1337,-1,1124,1274,1268,-1,1123,1274,1124,-1,1275,1290,1273,-1,1338,1290,1275,-1,1339,1130,383,-1,1339,1129,1130,-1,1023,384,1163,-1,1023,1340,384,-1,1341,1342,1343,-1,1342,1341,1344,-1,1345,121,407,-1,1345,1052,121,-1,1346,1064,1347,-1,1346,1291,1064,-1,1305,1348,1307,-1,1306,1348,1305,-1,1349,1298,395,-1,1298,1349,352,-1,1350,1255,1257,-1,1317,1255,1350,-1,1351,1257,1256,-1,1257,1351,1350,-1,1352,1341,1353,-1,1352,1344,1341,-1,1354,1332,1326,-1,1332,1354,1330,-1,1355,1328,1356,-1,1323,1328,1355,-1,1357,1025,1028,-1,1025,1357,1358,-1,147,1040,1106,-1,147,239,1040,-1,1359,328,278,-1,328,1359,1304,-1,1317,1042,1255,-1,1317,152,1042,-1,352,1360,353,-1,1349,1360,352,-1,1053,1260,1261,-1,1260,1053,1343,-1,1360,1345,1347,-1,1345,1360,1353,-1,1057,1064,1361,-1,1057,354,1064,-1,118,429,77,-1,429,118,1348,-1,1111,1305,1361,-1,1111,1112,1305,-1,1346,167,169,-1,1346,407,167,-1,1317,368,365,-1,1317,1350,368,-1,278,409,1359,-1,409,278,363,-1,367,398,408,-1,367,366,398,-1,1362,1363,1364,-1,1362,1365,1363,-1,411,1366,1367,-1,411,864,1366,-1,414,1367,1364,-1,414,1041,1367,-1,418,413,1041,-1,404,413,418,-1,1029,1040,1368,-1,1029,1106,1040,-1,1369,1322,1320,-1,1322,1369,1368,-1,1363,1321,1318,-1,1363,1365,1321,-1,1369,1370,1032,-1,1370,1369,1371,-1,1372,1373,1374,-1,1372,1375,1373,-1,1030,1376,1031,-1,1376,1030,1374,-1,1373,1377,1378,-1,1377,1373,1379,-1,1263,1102,1101,-1,1263,1027,1102,-1,1380,1033,1379,-1,882,1033,1380,-1,1381,1379,1033,-1,1381,1377,1379,-1,1034,1095,1036,-1,1034,123,1095,-1,1032,1382,1030,-1,1032,1370,1382,-1,1029,422,1106,-1,1029,1031,422,-1,1378,228,1376,-1,227,228,1378,-1,1377,1036,1095,-1,1036,1377,1381,-1,1264,1027,1263,-1,1027,1264,1028,-1,1266,1028,1264,-1,1266,1357,1028,-1,1104,1338,1105,-1,1104,1290,1338,-1,86,1060,87,-1,1060,86,387,-1,382,390,1383,-1,382,381,390,-1,1340,91,1339,-1,1295,91,1340,-1,1105,1285,1284,-1,1105,1338,1285,-1,1131,1384,541,-1,1131,1297,1384,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=8 */
		private int[] getsternum_Geo_6_17_coordIndex_8()
		{
			int[] value = {1123,1275,1274,-1,1275,1123,1283,-1,424,1278,1282,-1,424,425,1278,-1,1296,1385,1386,-1,1296,1294,1385,-1,1294,1387,1385,-1,1051,1387,1294,-1,1252,164,423,-1,1276,164,1252,-1,1080,1388,1316,-1,1388,1080,1303,-1,1302,237,236,-1,419,237,1302,-1,1316,1389,1315,-1,1389,1316,1388,-1,1390,432,1391,-1,1390,434,432,-1,1311,1324,1309,-1,1325,1324,1311,-1,1391,1392,1393,-1,1391,1314,1392,-1,1394,1389,1390,-1,1389,1394,1395,-1,1328,372,1017,-1,372,1328,1323,-1,1335,1329,1327,-1,1331,1329,1335,-1,1327,1016,1335,-1,188,1016,1327,-1,200,373,198,-1,200,439,373,-1,1337,199,201,-1,1337,1396,199,-1,1183,874,873,-1,1183,888,874,-1,445,516,446,-1,516,445,517,-1,1013,1397,601,-1,1397,1013,808,-1,460,1012,457,-1,459,1012,460,-1,1398,1011,476,-1,1398,799,1011,-1,473,949,994,-1,473,948,949,-1,956,466,795,-1,956,474,466,-1,1009,472,1010,-1,472,1009,467,-1,477,470,478,-1,477,471,470,-1,467,474,472,-1,467,466,474,-1,34,481,1005,-1,34,482,481,-1,1001,488,1002,-1,1001,485,488,-1,999,1399,996,-1,999,491,1399,-1,486,1006,1400,-1,483,1006,486,-1,910,997,487,-1,910,911,997,-1,998,1008,489,-1,998,1401,1008,-1,1402,493,995,-1,1402,952,493,-1,1403,917,916,-1,492,917,1403,-1,1003,842,1000,-1,842,1003,1404,-1,1405,1004,844,-1,1405,36,1004,-1,1405,843,1387,-1,843,1405,844,-1,1404,845,842,-1,1406,845,1404,-1,999,997,998,-1,999,996,997,-1,475,477,490,-1,475,471,477,-1,1002,1403,1003,-1,1399,1403,1002,-1,1262,513,991,-1,513,1262,510,-1,988,859,858,-1,987,859,988,-1,992,1407,990,-1,992,1408,1407,-1,650,463,509,-1,986,463,650,-1,511,1409,512,-1,1409,511,1410,-1,1411,514,1412,-1,514,1411,989,-1,502,992,500,-1,502,988,992,-1,515,501,989,-1,499,501,515,-1,701,523,972,-1,701,524,523,-1,888,1180,1358,-1,1183,1180,888,-1,1413,1414,876,-1,1413,1415,1414,-1,1416,565,560,-1,1416,1417,565,-1,1418,533,1419,-1,1418,1420,533,-1,555,1421,936,-1,555,1422,1421,-1,552,905,553,-1,552,906,905,-1,845,1423,1424,-1,1406,1423,845,-1,1425,1426,1427,-1,1428,1426,1425,-1,892,1429,984,-1,1430,1429,892,-1,1421,551,550,-1,552,551,1421,-1,1431,807,444,-1,807,1431,1432,-1,578,544,571,-1,544,578,575,-1,583,1433,537,-1,1433,583,582,-1,1014,587,446,-1,1014,585,587,-1,587,597,1431,-1,587,586,597,-1,1434,1432,596,-1,1434,573,1432,-1,805,569,571,-1,569,805,810,-1,912,599,1420,-1,594,599,912,-1,453,1435,451,-1,453,458,1435,-1,950,1436,946,-1,1436,950,806,-1,609,980,979,-1,609,613,980,-1,505,836,656,-1,993,836,505,-1,1437,1425,1438,-1,1424,1425,1437,-1,1439,1416,540,-1,1427,1416,1439,-1,938,1440,1441,-1,907,1440,938,-1,518,451,1435,-1,518,517,451,-1,978,931,977,-1,841,931,978,-1,977,840,821,-1,977,931,840,-1,915,857,592,-1,857,915,658,-1,530,975,875,-1,529,975,530,-1,1442,662,669,-1,1442,663,662,-1,706,902,707,-1,706,672,902,-1,631,672,624,-1,672,631,902,-1,973,918,677,-1,973,965,918,-1,1443,1444,1445,-1,1396,1444,1443,-1,1446,903,1447,-1,1446,901,903,-1,698,783,666,-1,698,689,783,-1,527,705,971,-1,705,527,528,-1,970,669,782,-1,669,1448,1442,-1,669,970,1448,-1,1442,664,663,-1,1448,664,1442,-1,675,615,700,-1,616,615,675,-1,678,968,620,-1,678,900,968,-1,1449,928,980,-1,1449,966,928,-1,682,713,683,-1,713,682,714,-1,854,965,973,-1,853,965,854,-1,718,731,716,-1,731,718,725,-1,963,723,639,-1,963,786,723,-1,657,797,951,-1,954,797,657,-1,798,794,796,-1,798,955,794,-1,803,961,1450,-1,801,961,803,-1,788,756,766,-1,788,790,756,-1,849,770,769,-1,849,958,770,-1,846,878,879,-1,846,695,878,-1,736,724,735,-1,736,957,724,-1,772,960,769,-1,772,781,960,-1,791,768,762,-1,791,777,768,-1,957,738,732,-1,957,736,738,-1,716,1451,717,-1,716,1452,1451,-1,1450,1007,1008,-1,961,1007,1450,-1,654,797,796,-1,797,654,951,-1,1402,814,953,-1,814,1402,949,-1,1450,1401,743,-1,1450,1008,1401,-1,536,1433,563,-1,536,537,1433,-1,593,598,594,-1,598,593,543,-1,543,535,598,-1,543,542,535,-1,1453,790,1454,-1,757,790,1453,-1,748,1455,746,-1,1455,748,1398,-1,596,819,1434,-1,596,595,819,-1,564,1013,601,-1,564,563,1013,-1,1456,946,1436,-1,1456,908,946,-1,856,934,820,-1,855,934,856,-1,759,1457,1451,-1,759,1458,1457,-1,765,924,789,-1,765,1452,924,-1,1459,1313,1460,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=9 */
		private int[] getsternum_Geo_6_17_coordIndex_9()
		{
			int[] value = {1313,1459,1392,-1,1458,761,895,-1,1458,759,761,-1,32,1461,1462,-1,1463,1461,32,-1,942,945,943,-1,945,942,649,-1,1464,933,399,-1,933,1464,941,-1,790,1465,1454,-1,1465,790,929,-1,1466,1467,923,-1,1466,1468,1467,-1,721,922,719,-1,721,872,922,-1,1469,831,1355,-1,831,1469,829,-1,828,1470,1471,-1,828,1472,1470,-1,1443,1473,1354,-1,1445,1473,1443,-1,1474,1475,1476,-1,1474,1356,1475,-1,898,899,646,-1,899,898,1477,-1,1478,1479,1480,-1,1478,1481,1479,-1,940,851,833,-1,1482,851,940,-1,913,1420,1418,-1,912,1420,913,-1,1483,1430,1484,-1,1483,1429,1430,-1,554,1422,555,-1,939,1422,554,-1,936,550,546,-1,936,1421,550,-1,1485,1486,1487,-1,1485,1488,1486,-1,1441,455,938,-1,1487,455,1441,-1,1485,548,547,-1,1485,891,548,-1,557,936,937,-1,557,555,936,-1,822,1440,982,-1,890,1440,822,-1,1489,1490,604,-1,816,1490,1489,-1,838,1491,1492,-1,838,837,1491,-1,1493,1494,1495,-1,1494,1493,1496,-1,927,1497,1498,-1,927,1499,1497,-1,855,1500,934,-1,1500,855,1501,-1,1502,935,1503,-1,1502,394,935,-1,1491,1409,1493,-1,1412,1409,1491,-1,1410,1493,1409,-1,1410,1496,1493,-1,394,1495,1494,-1,394,1502,1495,-1,865,932,863,-1,865,397,932,-1,1464,1504,941,-1,1464,1351,1504,-1,1505,1503,1506,-1,1505,1502,1503,-1,559,984,553,-1,892,984,559,-1,1476,1333,1481,-1,1475,1333,1476,-1,799,748,752,-1,799,1398,748,-1,947,977,834,-1,947,978,977,-1,838,1505,1499,-1,1505,838,1492,-1,817,1497,1506,-1,817,816,1497,-1,1501,908,1456,-1,1501,909,908,-1,1500,1490,835,-1,1490,1500,1507,-1,976,1489,813,-1,1489,976,1498,-1,836,1411,837,-1,836,993,1411,-1,929,925,1465,-1,925,929,860,-1,926,945,925,-1,943,945,926,-1,863,926,861,-1,863,932,926,-1,1366,1508,1362,-1,1509,1508,1366,-1,866,868,1509,-1,866,862,868,-1,1508,920,1510,-1,1508,869,920,-1,773,781,772,-1,779,781,773,-1,789,921,867,-1,921,789,924,-1,872,1511,1466,-1,1511,872,871,-1,884,1511,885,-1,1511,884,1512,-1,923,1510,920,-1,1467,1510,923,-1,1371,1468,1512,-1,1319,1468,1371,-1,1513,1375,1514,-1,1513,1380,1375,-1,1382,1515,1372,-1,1515,1382,886,-1,1514,1516,1517,-1,1514,1515,1516,-1,880,1414,881,-1,880,1518,1414,-1,612,969,617,-1,612,981,969,-1,883,919,1516,-1,883,676,919,-1,1517,1449,1519,-1,1517,966,1449,-1,876,1518,877,-1,1414,1518,876,-1,743,911,827,-1,911,743,1401,-1,1419,815,1520,-1,533,815,1419,-1,893,915,914,-1,658,915,893,-1,1521,937,824,-1,1521,557,937,-1,907,982,1440,-1,909,982,907,-1,1522,456,1486,-1,1522,651,456,-1,905,561,559,-1,561,905,567,-1,985,549,551,-1,985,1488,549,-1,1426,1418,1417,-1,913,1418,1426,-1,1386,1439,1384,-1,1386,1438,1439,-1,1423,914,1428,-1,893,914,1423,-1,1462,1006,32,-1,1462,1400,1006,-1,1453,904,757,-1,1453,1523,904,-1,717,1457,1472,-1,1451,1457,717,-1,1523,1524,904,-1,1523,1525,1524,-1,1459,896,1526,-1,895,896,1459,-1,830,1527,1312,-1,1527,830,1470,-1,1393,1524,1394,-1,1393,1526,1524,-1,1461,1395,1525,-1,1395,1461,1463,-1,1479,1528,1480,-1,1479,1473,1528,-1,968,1528,967,-1,1480,1528,968,-1,902,967,903,-1,967,902,631,-1,901,668,707,-1,668,901,832,-1,1245,851,1336,-1,852,851,1245,-1,1444,1337,1482,-1,1444,1396,1337,-1,832,1446,940,-1,832,901,1446,-1,900,1477,1478,-1,1477,900,899,-1,1447,967,1528,-1,1447,903,967,-1,1476,1478,1477,-1,1478,1476,1481,-1,897,1474,898,-1,1469,1474,897,-1,1525,1394,1524,-1,1395,1394,1525,-1,1392,1526,1393,-1,1392,1459,1526,-1,1470,1457,1527,-1,1457,1470,1472,-1,896,1524,1526,-1,896,904,1524,-1,1525,826,1461,-1,1523,826,1525,-1,719,1452,716,-1,1452,719,924,-1,1523,744,826,-1,1453,744,1523,-1,894,1404,916,-1,1404,894,1406,-1,1387,1437,1385,-1,1437,1387,843,-1,1385,1438,1386,-1,1385,1437,1438,-1,1428,913,1426,-1,1428,914,913,-1,1484,566,1520,-1,1430,566,1484,-1,1384,540,541,-1,1384,1439,540,-1,906,939,567,-1,906,1422,939,-1,1429,652,1529,-1,1429,1483,652,-1,985,1486,1488,-1,1486,985,1522,-1,890,1441,1440,-1,890,891,1441,-1,824,545,825,-1,937,545,824,-1,1483,600,652,-1,1483,1530,600,-1,889,1266,1415,-1,889,1357,1266,-1,887,1415,1413,-1,889,1415,887,-1,877,1519,1449,-1,1518,1519,877,-1,919,1517,1516,-1,1517,919,966,-1,676,885,642,-1,676,883,885,-1,1382,884,886,-1,1382,1370,884,-1,1449,879,877,-1,1449,980,879,-1,1513,1518,880,-1,1513,1519,1518,-1,880,1380,1513,-1,1380,880,882,-1,525,1413,667,-1,525,887,1413,-1,1519,1514,1517,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=10 */
		private int[] getsternum_Geo_6_17_coordIndex_10()
		{
			int[] value = {1513,1514,1519,-1,1516,886,883,-1,1515,886,1516,-1,1514,1372,1515,-1,1514,1375,1372,-1,1370,1512,884,-1,1371,1512,1370,-1,1321,1510,1467,-1,1321,1365,1510,-1,1466,1512,1468,-1,1511,1512,1466,-1,871,885,1511,-1,871,642,885,-1,862,850,868,-1,850,862,848,-1,1509,869,1508,-1,1509,868,869,-1,1366,866,1509,-1,1366,864,866,-1,1510,1362,1508,-1,1510,1365,1362,-1,932,943,926,-1,932,933,943,-1,925,944,1465,-1,945,944,925,-1,941,1531,942,-1,941,1504,1531,-1,809,1498,976,-1,809,927,1498,-1,1507,604,1490,-1,1507,602,604,-1,909,855,982,-1,1501,855,909,-1,816,835,1490,-1,816,818,835,-1,1499,1506,1497,-1,1505,1506,1499,-1,1412,837,1411,-1,1491,837,1412,-1,1506,947,817,-1,947,1506,1503,-1,858,1531,1408,-1,858,647,1531,-1,802,1465,944,-1,1454,1465,802,-1,888,1357,889,-1,1358,1357,888,-1,1474,1355,1356,-1,1355,1474,1469,-1,1479,1354,1473,-1,1330,1354,1479,-1,1492,1502,1505,-1,1492,1495,1502,-1,1407,1351,1256,-1,1504,1351,1407,-1,1408,1504,1407,-1,1504,1408,1531,-1,978,1503,935,-1,947,1503,978,-1,1501,1507,1500,-1,1507,1501,1456,-1,816,1498,1497,-1,816,1489,1498,-1,839,1499,927,-1,839,838,1499,-1,1493,1492,1491,-1,1495,1492,1493,-1,1487,891,1485,-1,1487,1441,891,-1,1487,456,455,-1,1487,1486,456,-1,547,1488,1485,-1,547,549,1488,-1,1530,1484,1532,-1,1484,1530,1483,-1,1520,565,1419,-1,565,1520,566,-1,1482,1336,851,-1,1337,1336,1482,-1,900,1480,968,-1,900,1478,1480,-1,1481,1330,1479,-1,1481,1333,1330,-1,1474,1477,898,-1,1477,1474,1476,-1,1528,1445,1447,-1,1528,1473,1445,-1,1472,726,717,-1,726,1472,828,-1,829,1470,830,-1,1471,1470,829,-1,828,897,645,-1,1471,897,828,-1,737,732,738,-1,737,784,732,-1,1469,1471,829,-1,1469,897,1471,-1,923,872,1466,-1,922,872,923,-1,1319,1467,1468,-1,1467,1319,1321,-1,647,942,1531,-1,647,649,942,-1,827,1461,826,-1,1461,827,1462,-1,1460,895,1459,-1,1460,1458,895,-1,1460,1312,1527,-1,1460,1313,1312,-1,1527,1458,1460,-1,1458,1527,1457,-1,804,1521,856,-1,804,605,1521,-1,934,835,834,-1,1500,835,934,-1,1507,1436,602,-1,1456,1436,1507,-1,808,1435,1397,-1,808,518,1435,-1,946,445,950,-1,445,946,454,-1,1532,564,1530,-1,1532,562,564,-1,1453,802,744,-1,1453,1454,802,-1,742,956,955,-1,956,742,948,-1,569,813,570,-1,976,813,569,-1,563,1014,1013,-1,1014,563,1433,-1,444,806,950,-1,807,806,444,-1,746,1007,961,-1,746,1455,1007,-1,749,800,792,-1,751,800,749,-1,659,954,657,-1,953,954,659,-1,953,952,1402,-1,953,659,952,-1,792,803,793,-1,792,801,803,-1,509,750,755,-1,750,509,508,-1,779,775,778,-1,779,773,775,-1,1451,765,759,-1,1451,1452,765,-1,625,710,623,-1,625,711,710,-1,776,775,767,-1,776,778,775,-1,764,791,762,-1,764,780,791,-1,728,737,962,-1,728,784,737,-1,960,780,764,-1,960,781,780,-1,769,847,849,-1,960,847,769,-1,803,743,745,-1,803,1450,743,-1,796,655,654,-1,796,794,655,-1,720,731,727,-1,716,731,720,-1,735,726,644,-1,724,726,735,-1,973,713,854,-1,973,683,713,-1,706,690,673,-1,706,783,690,-1,711,700,615,-1,685,700,711,-1,664,970,521,-1,664,1448,970,-1,670,782,669,-1,782,670,702,-1,519,522,524,-1,526,522,519,-1,689,693,688,-1,689,698,693,-1,686,695,708,-1,686,688,695,-1,1482,1446,1444,-1,1446,1482,940,-1,1447,1444,1446,-1,1444,1447,1445,-1,879,613,846,-1,613,879,980,-1,653,556,605,-1,653,388,556,-1,1521,823,856,-1,1521,824,823,-1,1522,930,1529,-1,1522,985,930,-1,1438,1427,1439,-1,1425,1427,1438,-1,1529,651,1522,-1,651,1529,652,-1,843,1424,1437,-1,845,1424,843,-1,633,628,626,-1,628,633,964,-1,631,611,621,-1,611,631,624,-1,981,611,623,-1,981,608,611,-1,969,623,710,-1,623,969,981,-1,617,614,612,-1,617,616,614,-1,602,806,603,-1,602,1436,806,-1,604,813,1489,-1,604,603,813,-1,1397,458,449,-1,1397,1435,458,-1,601,1530,564,-1,601,600,1530,-1,819,983,1434,-1,819,590,983,-1,589,576,575,-1,589,591,576,-1,582,588,585,-1,588,582,581,-1,591,583,576,-1,584,583,591,-1,574,1434,983,-1,574,573,1434,-1,1431,596,1432,-1,596,1431,597,-1,819,581,584,-1,819,595,581,-1,574,568,570,-1,574,580,568,-1,1433,585,1014,-1,1433,582,585,-1,537,576,583,-1,537,542,576,-1,807,573,572,-1,807,1432,573,-1,446,1431,444,-1,446,587,1431,-1,815,562,1532,-1,815,532,562,-1,1529,984,1429,-1,1529,930,984,-1,1430,558,566,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=11 */
		private int[] getsternum_Geo_6_17_coordIndex_11()
		{
			int[] value = {1430,892,558,-1,1427,1417,1416,-1,1426,1417,1427,-1,1424,1428,1425,-1,1423,1428,1424,-1,1406,893,1423,-1,894,893,1406,-1,1520,1532,1484,-1,1520,815,1532,-1,1422,552,1421,-1,1422,906,552,-1,556,1521,605,-1,556,557,1521,-1,546,549,547,-1,546,550,549,-1,1420,531,533,-1,1420,599,531,-1,1417,1419,565,-1,1417,1418,1419,-1,540,560,539,-1,540,1416,560,-1,1415,881,1414,-1,1415,1266,881,-1,876,667,1413,-1,878,667,876,-1,525,874,887,-1,525,530,874,-1,972,667,878,-1,972,523,667,-1,524,520,519,-1,701,520,524,-1,986,494,463,-1,494,986,497,-1,506,496,504,-1,506,495,496,-1,990,1262,991,-1,990,1258,1262,-1,1411,515,989,-1,993,515,1411,-1,514,1409,1412,-1,514,512,1409,-1,1256,990,1407,-1,990,1256,1258,-1,1408,988,858,-1,1408,992,988,-1,986,859,987,-1,986,650,859,-1,500,513,503,-1,500,991,513,-1,495,497,496,-1,497,495,494,-1,1005,1000,1004,-1,1005,1001,1000,-1,1403,491,492,-1,1403,1399,491,-1,480,995,493,-1,995,480,478,-1,910,1462,827,-1,910,1400,1462,-1,842,1004,1000,-1,844,1004,842,-1,1003,916,1404,-1,1003,1403,916,-1,917,493,952,-1,917,492,493,-1,1401,997,911,-1,1401,998,997,-1,910,486,1400,-1,486,910,487,-1,484,1006,483,-1,484,30,1006,-1,491,479,480,-1,491,999,479,-1,488,1399,1002,-1,488,996,1399,-1,1001,481,485,-1,1005,481,1001,-1,490,1455,475,-1,1007,1455,490,-1,473,470,469,-1,473,994,470,-1,1010,476,1011,-1,476,1010,468,-1,995,949,1402,-1,949,995,994,-1,1010,469,468,-1,469,1010,472,-1,464,467,1009,-1,464,465,467,-1,474,948,473,-1,948,474,956,-1,1398,475,1455,-1,1398,476,475,-1,462,799,508,-1,1011,799,462,-1,457,938,455,-1,457,1012,938,-1,459,452,1012,-1,453,452,459,-1,450,460,457,-1,460,450,447,-1,449,601,1397,-1,449,448,601,-1,1046,1245,1336,-1,1245,1046,1045,-1,4,439,5,-1,373,439,4,-1,224,440,436,-1,223,440,224,-1,437,225,224,-1,225,437,1334,-1,437,1332,1334,-1,437,1326,1332,-1,1395,1315,1389,-1,1463,1315,1395,-1,1390,1393,1394,-1,1390,1391,1393,-1,1309,830,1312,-1,1324,830,1309,-1,432,1314,1391,-1,1314,432,1018,-1,1390,1388,434,-1,1390,1389,1388,-1,1311,241,1325,-1,241,1311,1301,-1,434,1303,433,-1,434,1388,1303,-1,31,1254,32,-1,31,1250,1254,-1,425,1277,1278,-1,1277,425,1019,-1,1297,1386,1384,-1,1297,1296,1386,-1,1270,1282,1269,-1,1282,1270,424,-1,1129,91,90,-1,1129,1339,91,-1,375,95,94,-1,96,95,375,-1,1023,1295,1340,-1,1023,1022,1295,-1,77,380,1383,-1,380,77,429,-1,387,1272,1060,-1,387,1127,1272,-1,341,1019,425,-1,1019,341,165,-1,1068,1268,1274,-1,1268,1068,1067,-1,426,1093,427,-1,1251,1093,426,-1,1381,1035,1036,-1,1035,1381,1265,-1,1095,1378,1377,-1,1095,227,1378,-1,228,1031,1376,-1,228,422,1031,-1,422,146,1106,-1,192,146,422,-1,131,1109,222,-1,131,1293,1109,-1,1265,1033,881,-1,1265,1381,1033,-1,1376,1373,1378,-1,1376,1374,1373,-1,1374,1382,1372,-1,1030,1382,1374,-1,1375,1379,1373,-1,1375,1380,1379,-1,1320,1371,1369,-1,1371,1320,1319,-1,1363,421,417,-1,421,1363,1318,-1,1368,1032,1029,-1,1369,1032,1368,-1,1368,1039,1322,-1,1040,1039,1368,-1,415,285,416,-1,419,285,415,-1,1089,296,295,-1,296,1089,302,-1,417,1364,1363,-1,417,414,1364,-1,1041,411,1367,-1,1041,413,411,-1,1364,1366,1362,-1,1366,1364,1367,-1,408,412,410,-1,408,398,412,-1,363,408,409,-1,408,363,367,-1,409,283,1359,-1,405,283,409,-1,1261,162,1053,-1,1261,56,162,-1,1291,169,1069,-1,1346,169,1291,-1,1361,1307,1057,-1,1305,1307,1361,-1,355,1348,1306,-1,355,429,1348,-1,1347,353,1360,-1,1347,1064,353,-1,1353,1052,1345,-1,1341,1052,1353,-1,157,352,155,-1,157,1298,352,-1,272,1083,273,-1,272,1247,1083,-1,1333,1329,1331,-1,1329,1333,1475,-1,1349,1353,1360,-1,1349,1352,1353,-1,1350,1464,368,-1,1350,1351,1464,-1,398,865,412,-1,398,397,865,-1,1344,394,1494,-1,1344,1352,394,-1,1342,1410,1259,-1,1342,1496,1410,-1,1259,1343,1342,-1,1343,1259,1260,-1,395,1352,1349,-1,395,394,1352,-1,1307,118,334,-1,1348,118,1307,-1,1347,407,1346,-1,1347,1345,407,-1,1494,1342,1344,-1,1496,1342,1494,-1,1343,1052,1341,-1,1343,1053,1052,-1,1361,1291,1111,-1,1291,1361,1064,-1,1383,78,77,-1,78,1383,390,-1,386,1127,387,-1,386,1126,1127,-1,88,383,1130,-1,88,381,383,-1,1163,382,16,-1,382,1163,384,-1,1340,383,384,-1,1340,1339,383,-1,431,378,1126,-1,378,431,98,-1,1283,1338,1275,-1,1283,1285,1338,-1,1271,424,1270,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=12 */
		private int[] getsternum_Geo_6_17_coordIndex_12()
		{
			int[] value = {424,1271,339,-1,1046,198,374,-1,198,1046,201,-1,1332,1335,1334,-1,1332,1331,1335,-1,188,1017,435,-1,1327,1017,188,-1,1475,1328,1329,-1,1475,1356,1328,-1,1326,1443,1354,-1,1443,1326,1299,-1,1324,369,371,-1,1324,1325,369,-1,831,1323,1355,-1,1059,1323,831,-1,1318,1322,421,-1,1318,1320,1322,-1,1359,318,1304,-1,283,318,1359,-1,366,1464,399,-1,368,1464,366,-1,363,365,367,-1,364,365,363,-1,1316,1093,1080,-1,427,1093,1316,-1,1315,32,1254,-1,32,1315,1463,-1,288,1308,1018,-1,288,317,1308,-1,1313,1314,1310,-1,1392,1314,1313,-1,419,316,285,-1,419,1302,316,-1,1311,317,1301,-1,1311,1308,317,-1,334,1044,335,-1,1044,334,118,-1,356,1306,1292,-1,356,355,1306,-1,6,1125,1113,-1,6,1066,1125,-1,1061,1114,1289,-1,1061,113,1114,-1,1248,272,270,-1,1247,272,1248,-1,318,1303,1304,-1,1303,318,433,-1,82,101,85,-1,82,80,101,-1,1288,117,1066,-1,1288,79,117,-1,1251,1092,1093,-1,1251,26,1092,-1,28,1092,26,-1,1092,28,268,-1,1301,236,241,-1,1301,1302,236,-1,255,310,249,-1,255,257,310,-1,292,361,1091,-1,292,303,361,-1,293,295,1090,-1,293,1089,295,-1,311,257,246,-1,311,310,257,-1,308,248,309,-1,248,308,258,-1,202,181,1034,-1,202,179,181,-1,1086,315,300,-1,1086,318,315,-1,325,265,1084,-1,325,266,265,-1,263,347,332,-1,347,263,260,-1,309,148,145,-1,309,248,148,-1,312,240,242,-1,240,312,311,-1,252,242,236,-1,312,242,252,-1,195,234,196,-1,234,195,232,-1,235,320,197,-1,230,320,235,-1,132,182,213,-1,182,132,1099,-1,1100,1300,1087,-1,221,1100,1533,-1,221,1300,1100,-1,211,1533,217,-1,1533,211,221,-1,304,1134,178,-1,73,1134,304,-1,206,214,216,-1,206,203,214,-1,172,1098,179,-1,172,171,1098,-1,436,200,438,-1,436,439,200,-1,199,1443,1299,-1,1443,199,1396,-1,184,223,185,-1,440,223,184,-1,440,306,5,-1,440,184,306,-1,1533,4,217,-1,1533,1100,4,-1,1,1038,2,-1,1038,1,1132,-1,343,341,340,-1,165,341,343,-1,347,163,165,-1,322,163,347,-1,159,157,156,-1,159,158,157,-1,158,1298,157,-1,1298,158,401,-1,1165,350,351,-1,1165,1136,350,-1,1383,16,382,-1,16,1383,380,-1,1267,1297,1131,-1,1297,1267,1281,-1,1280,1294,1296,-1,1294,1280,1279,-1,162,58,161,-1,58,162,56,-1,123,135,124,-1,123,403,135,-1,1292,337,356,-1,1074,337,1292,-1,351,71,1165,-1,351,11,71,-1,83,339,1271,-1,339,83,342,-1,166,344,102,-1,168,344,166,-1,1119,110,103,-1,110,1119,111,-1,110,105,103,-1,107,105,110,-1,1287,1289,1114,-1,1287,1121,1289,-1,112,1116,1286,-1,112,114,1116,-1,1288,1117,79,-1,1118,1117,1288,-1,99,103,102,-1,1119,103,99,-1,1073,1286,338,-1,1287,1286,1073,-1,90,1056,1055,-1,1056,90,1128,-1,1285,1021,92,-1,1021,1285,1283,-1,1282,1280,1281,-1,1280,1282,1278,-1,1277,1049,1279,-1,1049,1277,1276,-1,95,1128,93,-1,95,430,1128,-1,1056,1126,386,-1,1056,431,1126,-1,1067,1270,1268,-1,1067,1271,1270,-1,1124,1267,1122,-1,1124,1269,1267,-1,1265,1263,1035,-1,1265,1264,1263,-1,1180,1025,1358,-1,1025,1180,1202,-1,1103,170,173,-1,1103,1135,170,-1,52,59,64,-1,59,52,55,-1,63,53,60,-1,63,68,53,-1,65,1261,1260,-1,64,1261,65,-1,1259,511,1141,-1,1410,511,1259,-1,1137,153,1079,-1,153,1137,70,-1,1257,63,62,-1,1257,1255,63,-1,154,68,1042,-1,68,154,67,-1,1140,1262,61,-1,510,1262,1140,-1,1152,1153,27,-1,1152,1154,1153,-1,47,43,42,-1,47,45,43,-1,1049,1252,1050,-1,1252,1049,1276,-1,1051,1405,1387,-1,1048,1405,1051,-1,35,1405,1048,-1,35,36,1405,-1,1050,1145,1253,-1,1252,1145,1050,-1,329,1143,423,-1,1143,329,1150,-1,38,323,39,-1,38,321,323,-1,26,42,29,-1,26,1251,42,-1,47,428,46,-1,47,426,428,-1,31,1147,1250,-1,1147,31,1148,-1,1144,43,45,-1,1144,1151,43,-1,44,1249,1142,-1,44,1146,1249,-1,1149,34,33,-1,1149,482,34,-1,1157,1161,1158,-1,1157,17,1161,-1,49,1152,37,-1,49,1154,1152,-1,49,1155,1154,-1,49,1159,1155,-1,1158,21,24,-1,1161,21,1158,-1,17,326,20,-1,17,1157,326,-1,345,1160,48,-1,345,346,1160,-1,25,1247,1156,-1,25,1083,1247,-1,15,13,1164,-1,13,15,72,-1,7,336,8,-1,1136,336,7,-1,1026,1202,1037,-1,1026,1025,1202,-1,1238,2,1037,-1,1238,1237,2,-1,1207,1246,1240,-1,1207,1241,1246,-1,374,1242,1045,-1,374,1241,1242,-1,1231,1184,1186,-1,1231,1233,1184,-1,1235,1228,1176,-1,1228,1235,1190,-1,1230,1221,1219,-1,1221,1230,1534,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=13 */
		private int[] getsternum_Geo_6_17_coordIndex_13()
		{
			int[] value = {1191,1225,1192,-1,1226,1225,1191,-1,1184,1232,1185,-1,1232,1184,1233,-1,1240,1208,1207,-1,1240,1166,1208,-1,1176,1172,1174,-1,1239,1172,1176,-1,1228,1225,1227,-1,1225,1228,1229,-1,1204,1238,1201,-1,1168,1238,1204,-1,1216,1185,1232,-1,1185,1216,1215,-1,1195,1198,1194,-1,1198,1195,1203,-1,1206,1177,1179,-1,1206,1175,1177,-1,1209,1213,1212,-1,1213,1209,1210,-1,1230,1244,1534,-1,1230,1189,1244,-1,1534,1213,1210,-1,1534,1244,1213,-1,1234,1173,1211,-1,1235,1173,1234,-1,1206,1211,1173,-1,1211,1206,1212,-1,1219,1217,1230,-1,1219,1216,1217,-1,1234,1189,1190,-1,1234,1244,1189,-1,1209,1243,1242,-1,1212,1243,1209,-1,1239,1226,1200,-1,1226,1239,1227,-1,1223,1222,1215,-1,1223,1196,1222,-1,1229,1192,1225,-1,1192,1229,1188,-1,1186,1217,1231,-1,1217,1186,1218,-1,1221,1166,1220,-1,1166,1221,1208,-1,442,1171,443,-1,1171,442,1178,-1,1205,1220,1166,-1,1220,1205,1224,-1,1221,1210,1208,-1,1221,1534,1210,-1,1200,1191,1198,-1,1200,1226,1191,-1,1188,1193,1192,-1,1193,1188,1187,-1,1232,1217,1216,-1,1232,1231,1217,-1,1237,0,2,-1,1237,1236,0,-1,852,1243,1179,-1,852,1245,1243,-1,1240,1236,1167,-1,1240,1246,1236,-1,1168,1237,1238,-1,1168,1167,1237,-1,875,1170,873,-1,875,1171,1170,-1};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=1 */
		private double[] getsternum_Coord_7_17_point_1()
		{
			double[] value = {0.2714,44.378,3.0176,0.2802,44.4848,3.0948,0.2552,44.4039,3.0819,0.4381,44.5874,2.8839,0.356,44.4852,2.8663,0.4743,44.6371,2.8514,1.1511,50.0685,0.5292,1.2421,50.0616,0.6195,1.2702,50.0049,0.6364,1.1826,50.0835,0.5687,1.2178,49.993,0.5748,0.9827,50.3162,0.5879,0.9229,50.3648,0.5475,0.9352,50.3897,0.5776,1.042,50.3399,0.6994,0.9463,50.4446,0.6214,0.9007,50.5937,0.6388,0.5346,48.8797,1.4967,0.5607,48.9031,1.5068,0.5561,48.9019,1.5125,0.5379,48.8834,1.4933,0.525,48.8691,1.5042,0.5402,48.874,1.5168,0.5303,48.8625,1.5076,0.4304,48.8834,1.4544,0.4375,48.8764,1.46,0.4808,48.9061,1.2683,0.4894,48.8618,1.3279,0.4902,48.8508,1.3346,0.4822,48.916,1.2641,0.0,48.9293,1.2149,0.094,48.9381,1.221,0.0,48.6606,1.3518,0.1069,48.9938,1.2198,0.0,48.9616,1.2231,0.1047,49.0054,1.1811,0.0,48.99,1.1873,0.4771,48.8885,1.3097,0.5024,48.9647,1.2473,0.4986,48.903,1.305,0.483,48.9389,1.2555,0.481,48.9345,1.2574,0.4524,48.917,1.2463,0.4369,48.9506,1.2431,0.3194,48.9804,1.2296,0.409,48.9593,1.2283,0.321,48.9581,1.2173,0.4101,48.9237,1.2249,0.4244,48.8897,1.3677,0.4168,48.8816,1.3689,0.5401,48.8784,1.5123,0.536,48.8945,1.52,0.368,48.9864,1.515,0.3674,48.9825,1.5166,0.4088,48.9795,1.5119,0.4094,48.983,1.5097,0.4113,48.9983,1.5142,0.5303,48.9442,1.5068,0.5334,48.9502,1.503,0.4104,48.9913,1.5167,0.2746,49.0301,1.4808,0.1279,49.0199,1.47,0.1269,49.0183,1.4871,0.2758,49.0092,1.5103,0.3688,48.9957,1.5211,0.275,49.0486,1.4813,0.2751,49.0335,1.4782,0.4025,48.9683,1.5358,0.3665,48.9601,1.5482,0.5184,48.9075,1.5261,0.512,48.9052,1.5444,1.0123,50.3278,0.6434,0.964,50.3825,0.606,0.2377,44.5487,3.0518,0.259,44.547,2.996,0.2488,44.5822,3.054,0.5231,50.5334,0.7435,0.7985,50.3947,0.8207,0.5689,50.6308,0.7457,1.0998,49.8289,0.5629,1.0129,49.6841,0.6481,1.0238,49.7812,0.5704,0.9633,49.7186,0.6317,0.883,49.6731,0.6783,0.9118,49.7492,0.6272,0.9115,49.663,0.6857,0.3313,50.8961,0.5222,0.4541,50.77,0.642,0.4087,50.8941,0.5305,0.4054,50.5195,0.3284,0.2885,50.6992,0.3163,0.4423,50.6684,0.3296,0.377,50.4201,0.3281,0.2674,50.6172,0.3205,0.2317,50.5159,0.35,0.1901,50.6457,0.3262,0.1247,50.6462,0.3326,0.0,50.7531,0.3527,0.1004,50.7659,0.3679,0.9591,49.6127,0.7553,0.9129,49.5783,0.7752,0.9652,49.6297,0.7125,0.9641,49.5982,0.8385,0.9675,49.6156,0.8263,1.0107,49.614,0.8833,0.9943,49.6444,0.8567,0.9723,49.8043,0.806,0.929,49.7672,0.8029,1.1166,49.678,0.8616,0.9215,49.8677,0.7234,0.9013,49.7462,0.7842,0.9067,49.7538,0.7482,1.1471,50.0257,0.6919,1.0364,50.0193,0.6606,1.1264,50.0481,0.6485,1.0951,50.0331,0.613,0.935,49.8414,0.5421,1.0513,49.8446,0.5417,0.7545,50.2695,0.8685,0.6448,49.199,1.2177,0.6649,49.2936,1.1455,0.5481,49.3134,1.1888,0.6871,45.2049,2.9086,0.6054,45.0294,2.9774,0.685,45.1627,2.8945,0.6726,45.2461,2.9046,0.676,45.2201,2.7005,0.7123,45.2328,2.7571,0.6859,45.1686,2.7049,0.6906,45.1335,2.7388,0.5255,45.0397,2.8069,0.5405,45.0766,2.8364,0.4987,44.9757,2.8652,0.7162,45.2441,2.8218,0.6834,45.2472,2.8851,0.6588,45.1204,2.8848,0.7207,45.2106,2.7971,0.6738,45.2858,2.6901,0.6081,45.3259,2.7828,0.6113,45.3576,2.8218,0.6788,45.32,2.849,0.7131,45.2711,2.7885,0.8225,45.7718,2.6591,0.7484,45.7023,2.5785,0.741,45.7821,2.5441,0.7913,45.8332,2.6357,0.7869,45.8138,2.7641,0.7165,45.9025,2.7492,0.7323,45.9042,2.6998,0.6311,45.8853,2.4989,0.5767,46.0152,2.4552,0.6935,45.8912,2.534,0.3789,48.8395,1.6255,0.5106,48.9012,1.5495,0.4036,48.9629,1.5417,0.4738,50.0529,0.8783,0.3207,50.2246,0.7672,0.2589,50.0954,0.8166,0.1144,50.1029,0.7839,0.112,50.2429,0.7152,0.0,50.086,0.7451,0.6103,49.118,1.3294,0.4457,49.1622,1.3618,0.515,49.1868,1.1067,0.4708,49.2054,1.0892,0.5654,49.3341,1.007,0.9561,49.5744,0.9403,0.7638,49.4493,1.0503,0.7651,49.4447,1.0198,0.9359,49.5901,0.9678,0.3897,44.653,3.0289,0.4075,44.6738,2.9812,0.4326,44.6814,3.0164,0.4261,44.6746,3.0357,0.2899,44.3417,2.9339,0.3084,44.3893,2.9328,0.3001,44.407,2.9428,0.2623,44.3939,3.0164,0.2732,44.4911,3.08,0.4604,44.712,3.025,0.4847,44.7696,2.9891,0.5314,44.88,2.9903,0.4774,44.892,2.942,0.5021,44.8742,2.9692,0.5522,44.8475,2.7985,0.6229,44.9851,2.756,0.5164,44.8492,2.8249,0.5641,44.9846,2.7814,0.5536,45.6308,2.5475,0.6834,45.6165,2.621,0.6763,45.3159,2.8719,0.6421,45.4938,2.8842,0.8008,45.7313,2.7899,0.7161,45.6468,2.805,0.7899,45.678,2.6895,0.6572,45.4875,2.8493,0.7051,45.6104,2.7859,0.7169,45.6409,2.7,0.2166,44.5787,2.8126,0.1259,44.7982,2.773,0.3318,44.7026,2.786,0.1112,44.6318,2.789,0.4628,44.726,3.0554,0.4195,44.7007,2.9382,0.4609,44.7207,2.9054,0.4445,44.7291,2.9315,0.4467,44.6761,2.9086,0.4648,44.7896,2.9169,0.4507,44.7359,2.9579,0.4665,44.8185,2.94,0.337,44.5886,2.9527,0.3289,44.5673,2.9351,0.4707,44.8057,2.8835,0.4805,44.8793,2.894,0.3944,44.6724,2.9448,0.345,44.6099,2.9703,0.4259,44.6296,2.9157,0.4185,44.5803,2.9034,0.4475,44.6215,2.8944,0.2425,44.4722,2.969,0.227,44.4729,3.0092,0.3139,44.5535,2.9358,0.5217,45.0572,2.8858,0.621,44.9836,2.7334,0.5484,45.0083,2.6931,0.5834,45.2354,2.6602,0.6626,45.2156,2.6822,0.6196,45.2685,2.9412,0.5816,45.4948,2.9103,0.5974,45.4536,2.6926,0.6175,45.5506,2.6905,0.6014,45.4645,2.7514,0.6054,45.4758,2.81,0.6057,45.3484,2.7417,0.6222,45.5641,2.7571,0.6306,45.5739,2.72,0.6763,46.5207,2.405,0.6539,46.5492,2.5448,0.6691,46.4828,2.5151,0.6565,46.0494,2.7021,0.5352,46.246,2.3787,0.5903,46.4991,2.2947,0.6295,46.4668,2.3578,0.619,46.2698,2.6221,0.651,46.0532,2.676,0.6262,46.2863,2.6444,0.5808,46.0285,2.4766,0.6298,45.9467,2.539,0.6711,45.9704,2.6611,0.4903,46.2053,2.5307,0.4869,46.2796,2.4604,0.4994,46.3177,2.486,0.6304,46.4005,2.4464,0.6195,46.3703,2.5399,0.5094,46.2775,2.5535,0.5104,46.0802,2.5627,0.5287,46.0095,2.5463,0.5143,46.0765,2.5021,0.544,46.0126,2.6197,0.5539,46.0921,2.6221,0.6032,49.1213,1.1998,0.4855,49.0703,1.2774,0.4762,49.06,1.2756,0.626,49.1285,1.2129,0.4391,49.0046,1.33,0.483,49.0533,1.3027,0.4804,49.0117,1.3539,0.4902,48.6047,1.5035,0.4743,48.6612,1.4435,0.3985,48.7088,1.4913,0.4019,48.7637,1.4502,0.4067,48.7071,1.5302,0.3897,48.7937,1.4698,0.4182,48.7749,1.5092,0.5026,48.6329,1.5667,0.5132,48.6636,1.6264,0.5309,48.5282,1.6465,0.5153,48.6956,1.5659,0.549,48.3964,1.7971,0.5511,48.4597,1.7244,0.5009,48.6398,1.6904,0.5419,47.583,2.1054,0.6001,47.7802,1.9696,0.6026,47.8341,1.9434,0.5538,47.2361,2.2917,0.6187,47.009,2.4076,0.6157,47.0604,2.313,0.4587,47.2312,2.0245,0.4466,47.2137,2.0033,0.4819,47.5673,1.8867,0.4838,47.5593,1.9071,0.5554,47.0325,2.1254,0.5037,47.1114,2.1249,0.5434,47.262,2.2332,0.5375,47.1241,2.2482,0.475,47.4992,2.0772,0.4339,47.4762,2.0292,0.4726,47.6098,2.0067,0.4518,47.6037,1.9416,0.4412,47.4921,1.9685,0.5229,47.6733,1.9091,0.4274,47.2792,2.0476,0.423,47.3018,2.1029,0.4357,47.1729,2.1262,0.2292,44.5151,3.0428,0.4991,44.7409,2.87,0.4789,44.6426,2.8838,0.4843,44.8711,2.8447,0.5611,45.9849,2.5892,0.6932,45.9395,2.6,0.4939,46.1959,2.4672,0.5432,46.2413,2.4082,0.5808,46.3535,2.4003,0.5623,47.6896,1.989,0.4582,47.6291,1.9655,0.5749,47.72,1.9354,0.6646,46.9838,2.2453,0.542,46.9755,2.0966,0.6305,47.8242,1.8978,0.6155,45.448,2.6528,0.6744,45.5947,2.6499,0.5084,48.9746,1.2427,0.5683,49.1651,1.1389,0.5028,48.9107,1.3012,0.5745,49.0939,1.2071,0.586,49.0346,1.3417,0.4449,48.8989,1.4445,0.4575,49.0005,1.3026,0.6006,48.4129,1.6442,0.4632,48.9614,1.2214,0.6093,49.1138,1.3139,0.4032,48.6904,1.5201,0.6641,49.2338,1.1459,0.6893,49.3002,1.1127,0.66,50.1878,0.8928,0.3792,50.3413,0.7612,1.2719,50.1023,0.7046,1.2868,50.0669,0.7524,1.3061,49.9801,0.7035,0.675,49.6931,0.7444,0.7056,49.4653,0.9016,0.6065,49.4903,0.8777,0.8541,49.601,0.7456,0.6449,49.3047,1.0456,0.7533,49.4473,0.955,0.4271,48.8946,1.3657,0.4081,48.9086,1.4087,0.6251,49.2239,1.1224,1.0533,49.9958,0.5981,1.0829,50.1614,0.5363,1.214,50.0988,0.6083,1.1363,50.1658,0.6037,0.3083,49.9114,0.9132,0.5382,49.8848,0.9614,0.5983,49.9418,0.9298,1.0606,50.209,0.7991,1.2171,50.1286,0.766,1.2194,50.1556,0.7165,1.0486,50.3038,0.7233,0.1209,50.4746,0.609,0.0,50.4281,0.553,0.4518,47.1639,2.1632,0.4518,47.1824,2.1874,0.4729,48.3799,1.8159,0.413,48.6216,1.7492,0.3395,48.6134,1.7586,0.1671,48.3741,1.8462,0.317,48.3642,1.8306,0.1694,48.5982,1.7349,0.4613,46.2323,2.3697,0.5308,45.999,2.4217,0.3002,46.219,2.3918,0.3086,45.9762,2.4889,0.3293,44.4999,2.8239,0.2542,44.3462,2.8566,0.1522,50.5697,0.3441,0.2359,50.3815,0.3831,0.0,50.6621,0.3154,0.1035,50.7928,0.4142,0.0,50.7856,0.3899,0.9214,50.5313,0.7034,0.59,50.8375,0.5853,0.7493,50.7522,0.6179,0.5441,50.858,0.4718,0.6888,50.7631,0.5081,0.2918,50.8937,0.4383,0.2114,50.8504,0.4307,0.2538,50.8386,0.5131,0.0,50.7856,0.4391,0.1261,50.7622,0.4725,0.5906,50.7542,0.6854,0.0459,50.7149,0.5091,0.0,50.7112,0.4884,0.0,50.2217,0.6515,0.0,49.5443,1.1015,0.0501,49.6621,1.0239,0.0,49.6677,1.0195,0.0,48.1082,1.9254,0.1646,48.1145,1.9237,0.0,48.3562,1.8261,0.0,49.9053,0.8693,0.069,49.9076,0.8824,0.5499,45.0159,2.9302,0.6001,45.025,2.9488,0.5032,47.5946,2.1308,0.4961,47.8223,1.9684,0.2177,50.4727,0.6371,0.6333,49.4748,1.0745,0.3719,48.1179,1.8913,0.5298,48.1317,1.8796,0.3794,47.8294,1.9939,0.1674,47.5905,2.1147,0.1767,47.8607,2.0352,0.3545,47.5812,2.1164,0.4402,46.944,2.3949,0.6127,46.7424,2.4453,0.5681,47.012,2.4234,0.4831,46.7146,2.4813,0.5254,47.2649,2.3158,0.6693,46.7563,2.4305,0.6093,46.5298,2.5718,0.4468,46.513,2.5669,0.6848,45.6961,2.8624,0.4175,48.9768,1.1941,0.5675,49.7424,0.7159,0.5191,49.5453,0.8677,0.4079,48.9073,1.2298,0.3681,48.6513,1.3637,0.3226,48.9432,1.223,0.9339,50.2868,0.8165,0.1802,50.6618,0.3291,0.1495,50.7763,0.3717,0.4255,47.6006,1.8459,0.5238,47.8681,1.7537,0.455,47.8986,1.7287,0.5542,45.8275,2.5091,0.4779,44.8513,2.7498,0.3107,45.1009,2.726,0.3002,44.9196,2.7519,0.417,44.6474,2.7912,0.5515,44.8483,2.7808,-0.3084,44.3893,2.9328,-0.2899,44.3417,2.9339,-0.2707,44.3793,3.0205,-1.3061,49.9801,0.7035,-1.2719,50.1023,0.7046,-1.2702,50.0049,0.6364,-0.9229,50.3648,0.5475,-0.8944,50.3059,0.4757,-0.9385,50.3213,0.5295,-0.8692,50.4283,0.5103,-1.1862,50.1701,0.6679,-1.042,50.3399,0.6994,-1.0123,50.3278,0.6434,-1.2194,50.1556,0.7165,-0.8321,50.6241,0.5446,-0.7576,50.5762,0.4547,-0.8983,50.4654,0.5674,-0.9827,50.3162,0.5879,-0.964,50.3825,0.606,-0.9352,50.3897,0.5776,-1.0486,50.3038,0.7233,-0.5303,48.8625,1.5076,-0.5499,48.8673,1.5377,-0.5402,48.874,1.5168,-0.5401,48.8784,1.5123,-0.5346,48.8797,1.4967,-0.526,48.8743,1.5009,-0.3916,48.8881,1.4159,-0.3932,48.8938,1.4137,-0.4168,48.8816,1.3689,-0.4168,48.8754,1.371,-0.4319,48.8887,1.4512,-0.4053,48.9043,1.4111,-0.443,48.8944,1.4485,-0.4242,48.8672,1.3753,-0.3969,48.877,1.4211,-0.4764,48.8804,1.3144,-0.4771,48.8885,1.3097,-0.481,48.9345,1.2574,-0.483,48.9389,1.2555,-0.1061,48.9894,1.2213,0.0,48.9582,1.2241,-0.0981,48.9528,1.2157,0.0,48.9425,1.2101,-0.2027,48.9703,1.2448,-0.201,48.9261,1.233,-0.321,48.9581,1.2173,-0.3194,48.9804,1.2296,-0.4822,48.916,1.2641,-0.4894,48.8618,1.3279,-0.4378,48.954,1.2411,-0.4607,48.9523,1.2278,-0.5024,48.9647,1.2473,-0.5351,48.8914,1.5232,-0.536,48.8945,1.52,-0.5191,48.911,1.5226,-0.5184,48.9075,1.5261,-0.4088,48.9795,1.5119,-0.4094,48.983,1.5097,-0.2746,49.0301,1.4808,-0.368,48.9864,1.515,-0.3674,48.9825,1.5166,-0.2751,49.0335,1.4782,-0.5303,48.9442,1.5068,-0.5334,48.9502,1.503,-0.5561,48.9019,1.5125,-0.5607,48.9031,1.5068,-0.5326,48.8561,1.5103,-0.551,48.8613,1.541,0.0,49.0442,1.4235,0.0,49.0783,1.4128,-0.1257,49.0563,1.4491,-0.1278,49.0236,1.4676,-0.275,49.0486,1.4813,-0.4104,48.9913,1.5167,-1.2421,50.0616,0.6195,-1.2429,50.1003,0.6564,-1.214,50.0988,0.6083,-0.2837,44.6053,3.0407,-0.3142,44.6181,3.0195,-0.259,44.547,2.996,-0.3128,44.6066,3.0885,-0.3758,44.6574,3.0768,-0.3554,44.6396,3.0662,-0.3172,44.6207,3.1028,-0.2488,44.5822,3.054,-0.2868,44.542,3.094,-0.2377,44.5487,3.0518,-0.2911,44.539,3.1083,-0.2695,44.5295,3.1176,-0.9118,49.7492,0.6272,-0.935,49.8414,0.5421,-0.7294,49.858,0.591,-1.0238,49.7812,0.5704,-0.9633,49.7186,0.6317,-1.0513,49.8446,0.5417,-1.0998,49.8289,0.5629,0.0,50.5251,0.3328,-0.2359,50.3815,0.3831,-0.2216,50.1729,0.4959,0.0,50.2926,0.4179,-1.0129,49.6841,0.6481,-0.9652,49.6297,0.7125,-0.9591,49.6127,0.7553,-0.3313,50.8961,0.5222,-0.2918,50.8937,0.4383,-0.3722,50.9041,0.4454,-0.4087,50.8941,0.5305,-0.3361,50.84,0.3761,-0.2707,50.8333,0.3662,-0.2885,50.6992,0.3163,-0.2262,50.6837,0.327,-0.2674,50.6172,0.3205,-0.1035,50.7928,0.4142,-0.1574,50.8138,0.4221,-0.1261,50.7622,0.4725,-0.1796,50.7987,0.4893,-0.3459,50.2941,0.3856,-0.2317,50.5159,0.35,-0.3521,50.2131,0.449,-0.1522,50.5697,0.3441,-0.963,49.9285,0.4984,-1.0879,49.9592,0.5175,-0.9927,49.999,0.4869,-0.471,50.079,0.508,-0.4756,50.1274,0.431,-0.1247,50.6462,0.3326,-1.0107,49.614,0.8833,-0.9561,49.5744,0.9403,-1.1451,49.6644,0.8781,-0.9641,49.5982,0.8385,-1.2865,49.8004,0.8201,-1.2709,49.8079,0.8061,-1.1166,49.678,0.8616,-0.963,49.628,0.7603,-1.0169,49.6867,0.6629,-0.9013,49.7462,0.7842,-0.9675,49.6156,0.8263,-0.929,49.7672,0.8029,-0.9943,49.6444,0.8567,-1.0533,49.9958,0.5981,-1.1415,49.9108,0.5699,-1.1018,49.8316,0.5759,-1.0258,49.9168,0.6144,-1.2138,49.9885,0.5854,-1.1264,50.0481,0.6485,-1.2623,49.9967,0.6422,-1.0951,50.0331,0.613,-0.9067,49.7538,0.7482,-0.9215,49.8677,0.7234,-0.9473,49.8069,0.6792,-0.7056,49.4653,0.9016,-0.9129,49.5783,0.7752,-0.8541,49.601,0.7456,-1.0364,50.0193,0.6606,-1.1481,49.9949,0.7263,-1.1471,50.0257,0.6919,-0.9115,49.663,0.6857,-0.883,49.6731,0.6783,-0.8397,50.2091,0.4364,-1.0356,50.1566,0.4774,-1.164,49.935,0.8571,-1.2513,49.8572,0.8428,-1.1012,49.897,0.8576,-0.1699,50.6271,0.5782,-0.2177,50.4727,0.6371,-0.1209,50.4746,0.609,-0.6675,45.1541,2.8153,-0.6588,45.1204,2.8848,-0.7207,45.2106,2.7971,-0.6763,45.102,2.7663,-0.5765,45.0927,2.8961,-0.6001,45.025,2.9488,-0.5499,45.0159,2.9302,-0.4987,44.9757,2.8652,-0.4952,44.9834,2.9179,-0.5217,45.0572,2.8858,-0.6859,45.1686,2.7049,-0.676,45.2201,2.7005,-0.6626,45.2156,2.6822,-0.6906,45.1335,2.7388,-0.7123,45.2328,2.7571,-0.5877,45.0671,2.7778,-0.6229,44.9851,2.756,-0.5641,44.9846,2.7814,-0.7162,45.2441,2.8218,-0.7198,45.2392,2.792,-0.7131,45.2711,2.7885,-0.6631,45.3094,2.7182,-0.6738,45.2858,2.6901,-0.621,44.9836,2.7334,-0.6834,45.2472,2.8851,-0.6763,45.3159,2.8719,-0.6081,45.3259,2.7828,-0.6057,45.3484,2.7417,-0.8225,45.7718,2.6591,-0.8008,45.7313,2.7899,-0.7869,45.8138,2.7641,-0.7913,45.8332,2.6357,-0.741,45.7821,2.5441,-0.7165,45.9025,2.7492,-0.6768,45.8414,2.7848,-0.6311,45.8853,2.4989,-0.5767,46.0152,2.4552,-0.5308,45.999,2.4217,-0.5542,45.8275,2.5091,-0.3789,48.8395,1.6255,-0.5009,48.6398,1.6904,-0.413,48.6216,1.7492,-0.5106,48.9012,1.5495,-0.7113,50.4938,0.4072,-0.6664,50.3128,0.3937,-0.0459,50.7149,0.5091,-0.6448,49.199,1.2177,-0.6093,49.1138,1.3139,-0.6103,49.118,1.3294,-0.6251,49.2239,1.1224,-0.5654,49.3341,1.007,-0.5683,49.1651,1.1389,-0.515,49.1868,1.1067,-0.4475,44.6215,2.8944,-0.4381,44.5874,2.8839,-0.4185,44.5803,2.9034,-0.3289,44.5673,2.9351,-0.337,44.5886,2.9527,-0.4259,44.6296,2.9157,-0.3942,44.6829,3.0867,-0.356,44.4852,2.8663,-0.352,44.489,2.8852,-0.3001,44.407,2.9428,-0.5164,44.8492,2.8249,-0.5522,44.8475,2.7985,-0.4991,44.7409,2.87,-0.5021,44.8742,2.9692,-0.4774,44.892,2.942,-0.6848,45.6961,2.8624,-0.7161,45.6468,2.805,-0.5936,45.4386,2.6277,-0.6834,45.6165,2.621,-0.7899,45.678,2.6895,-0.7484,45.7023,2.5785,-0.6744,45.5947,2.6499,-0.7169,45.6409,2.7,-0.6155,45.448,2.6528,-0.4843,44.8711,2.8447,-0.4507,44.7359,2.9579,-0.4445,44.7291,2.9315,-0.4357,44.7041,2.9736,-0.4195,44.7007,2.9382,-0.4609,44.7207,2.9054,-0.4648,44.7896,2.9169,-0.4707,44.8057,2.8835,-0.4075,44.6738,2.9812,-0.4326,44.6814,3.0164,-0.4604,44.712,3.025,-0.3296,44.6139,2.9949,-0.345,44.6099,2.9703,-0.3944,44.6724,2.9448,-0.4665,44.8185,2.94,-0.4805,44.8793,2.894,-0.3897,44.653,3.0289,-0.2425,44.4722,2.969,-0.227,44.4729,3.0092,-0.2623,44.3939,3.0164,-0.2292,44.5151,3.0428,-0.4789,44.6426,2.8838,-0.4743,44.6371,2.8514,-0.4847,44.7696,2.9891,-0.5974,45.4536,2.6926,-0.5255,45.0397,2.8069,-0.5015,44.9642,2.8135,-0.6014,45.4645,2.7514,-0.6306,45.5739,2.72,-0.6175,45.5506,2.6905,-0.6935,45.8912,2.534,-0.6763,46.5207,2.405,-0.5903,46.4991,2.2947,-0.6295,46.4668,2.3578,-0.6539,46.5492,2.5448,-0.6691,46.4828,2.5151,-0.6262,46.2863,2.6444,-0.6298,45.9467,2.539,-0.6932,45.9395,2.6,-0.5432,46.2413,2.4082,-0.5808,46.3535,2.4003,-0.5352,46.246,2.3787,-0.6195,46.3703,2.5399,-0.619,46.2698,2.6221,-0.4869,46.2796,2.4604,-0.4994,46.3177,2.486,-0.6304,46.4005,2.4464,-0.4903,46.2053,2.5307,-0.5094,46.2775,2.5535,-0.5287,46.0095,2.5463,-0.5808,46.0285,2.4766,-0.5143,46.0765,2.5021,-0.5539,46.0921,2.6221,-0.5104,46.0802,2.5627,-0.544,46.0126,2.6197,-0.4855,49.0703,1.2774,-0.4762,49.06,1.2756,-0.4391,49.0046,1.33,-0.4206,48.6658,1.385,-0.4381,48.4297,1.4889,-0.4806,48.4712,1.5053,-0.4019,48.7637,1.4502,-0.3985,48.7088,1.4913,-0.3897,48.7937,1.4698,-0.5026,48.6329,1.5667,-0.5153,48.6956,1.5659,-0.4067,48.7071,1.5302,-0.4182,48.7749,1.5092,-0.5511,48.4597,1.7244,-0.5309,48.5282,1.6465,-0.5132,48.6636,1.6264,-0.5766,47.7909,1.8522,-0.5238,47.8681,1.7537,-0.4819,47.5673,1.8867,-0.542,46.9755,2.0966,-0.5554,47.0325,2.1254,-0.4466,47.2137,2.0033,-0.5423,47.0839,2.2035,-0.6157,47.0604,2.313,-0.5375,47.1241,2.2482,-0.6646,46.9838,2.2453,-0.5229,47.6733,1.9091,-0.4838,47.5593,1.9071,-0.5037,47.1114,2.1249,-0.5369,47.5644,2.0843,-0.5623,47.6896,1.989,-0.4726,47.6098,2.0067,-0.475,47.4992,2.0772,-0.4339,47.4762,2.0292,-0.4518,47.6037,1.9416,-0.4412,47.4921,1.9685,-0.4587,47.2312,2.0245,-0.4357,47.1729,2.1262,-0.4274,47.2792,2.0476,-0.423,47.3018,2.1029,-0.4518,47.1824,2.1874,-0.4741,47.2905,2.1767,-0.2691,44.5124,2.9377,-0.4467,44.6761,2.9086,-0.5357,46.2128,2.5958,-0.5611,45.9849,2.5892,-0.6711,45.9704,2.6611,-0.4582,47.6291,1.9655,-0.5749,47.72,1.9354,-0.6187,47.009,2.4076,-0.6305,47.8242,1.8978,-0.4518,47.1639,2.1632,-0.4943,48.6003,1.5432,-0.5619,48.4777,1.6146,-0.586,49.0346,1.3417,-0.5379,48.8834,1.4933,-0.6213,49.1129,1.2493,-0.626,49.1285,1.2129,-0.483,49.0533,1.3027,-0.437,48.8706,1.4618,-0.4032,48.6904,1.5201,-0.4902,48.6047,1.5035,-0.6006,48.4129,1.6442,-0.5275,48.5232,1.5246,-0.2718,50.4621,0.6525,-0.7533,49.4473,0.955,-1.2927,49.96,0.8061,-1.3085,49.8924,0.7848,-1.1826,50.0835,0.5687,-0.7638,49.4493,1.0503,-0.7651,49.4447,1.0198,-0.6893,49.3002,1.1127,-0.6649,49.2936,1.1455,-1.112,49.6801,0.9075,-0.4575,49.0005,1.3026,-0.7478,49.9068,0.515,-0.7397,49.8423,0.9393,-0.5382,49.8848,0.9614,-0.5983,49.9418,0.9298,-1.0103,49.9662,0.6756,-0.3792,50.3413,0.7612,-0.3207,50.2246,0.7672,-0.5689,50.6308,0.7457,-0.5231,50.5334,0.7435,-0.3414,50.7287,0.6204,-0.4541,50.77,0.642,-0.3641,48.4514,1.4787,-0.3681,48.6513,1.3637,-0.4613,46.2323,2.3697,-0.0609,46.218,2.4185,0.0,46.5316,2.3022,0.0,46.2281,2.4252,-0.3293,44.4999,2.8239,-0.2542,44.3462,2.8567,-0.4738,50.0529,0.8783,-0.6845,50.0075,0.9011,-0.4457,49.1622,1.3618,-0.3662,49.1798,1.3716,-0.4029,49.3347,1.2482,-0.5481,49.3134,1.1888,-0.112,50.2429,0.7152,-0.069,49.9076,0.8824,-0.2053,49.0011,1.2031,-0.1272,49.2465,1.0741,-0.1063,49.0211,1.1725,-0.2269,49.2306,1.0866,-0.5314,44.88,2.9903,-0.5538,47.2361,2.2917,-0.5032,47.5946,2.1308,-0.5419,47.583,2.1054,-0.5254,47.2649,2.3158,-0.1155,44.4414,2.8093,-0.119,44.3783,2.8238,-0.6054,45.4758,2.81,-0.6222,45.5641,2.7571,-0.7545,50.2695,0.8685,-0.4724,50.402,0.7312,-0.6449,49.3047,1.0456,-0.3668,48.9547,1.5534,-0.4036,48.9629,1.5417,-0.4961,47.8223,1.9684,-0.3794,47.8294,1.9939,-0.3545,47.5812,2.1164,-0.1767,47.8607,2.0352,0.0,47.5956,2.1329,0.0,47.8674,2.0079,-0.1674,47.5905,2.1147,-0.5681,47.012,2.4234,-0.3504,47.2263,2.295,-0.4402,46.944,2.3949,-0.6565,46.0494,2.7021,-0.6215,46.0512,2.7338,-0.6101,46.2947,2.6632,-0.2056,44.4412,3.1319,-0.2194,44.5621,3.1488,-0.258,44.3997,3.0744,-0.4205,44.7642,3.091,-0.4901,44.8909,3.0572,-0.4628,44.726,3.0554,-0.5336,44.8857,3.0121,-0.1648,44.9582,3.0541,0.0,44.8206,3.1116,0.0,44.982,3.0575,-0.5402,45.6854,2.8682,-0.2965,45.7982,2.8193,-0.5433,45.8152,2.8001,-0.3141,45.6492,2.8636,-0.2834,44.6605,3.1352,-0.095,44.6071,3.1669,-0.1608,44.6984,3.1314,-0.5906,50.7542,0.6854,-0.59,50.8375,0.5853,-0.356,50.3441,0.3613,-0.4915,49.3666,1.0026,-0.4708,49.2054,1.0892,-0.393,47.2282,1.985,-0.4255,47.6006,1.8459,-0.3086,45.9762,2.4889,-0.4244,45.7981,2.53,-0.5536,45.6308,2.5475,-0.5182,45.4248,2.6316,-0.417,44.6474,2.7912,-0.5515,44.8483,2.7808,-0.4779,44.8513,2.7498,-0.455,47.8986,1.7287,-0.1901,50.6457,0.3262,-0.1802,50.6618,0.3291,-0.9214,50.5313,0.7034,-1.0606,50.209,0.7991,-0.9339,50.2868,0.8165,-0.3226,48.9432,1.223,-0.4079,48.9073,1.2298,-0.675,49.6931,0.7444,-0.5675,49.7424,0.7159,-0.5191,49.5453,0.8677,-0.6065,49.4903,0.8777,-0.4175,48.9768,1.1941,-0.4632,48.9614,1.2214,-0.6421,45.4938,2.8842,-0.5816,45.4948,2.9103,-0.4831,46.7146,2.4813,-0.6127,46.7424,2.4453,-0.6093,46.5298,2.5718,-0.4468,46.513,2.5669,-0.6693,46.7563,2.4305,-0.5298,48.1317,1.8796,-0.3719,48.1179,1.8913,-0.6333,49.4748,1.0745,-0.6726,45.2461,2.9046,-0.6026,47.8341,1.9434,-0.4054,50.5195,0.3284,-0.1144,50.1029,0.7839,-0.1646,48.1145,1.9237,-0.1671,48.3741,1.8462,-0.66,50.1878,0.8928,-0.0501,49.6621,1.0239,-0.2114,50.8504,0.4307,-0.2538,50.8386,0.5131,-0.9007,50.5937,0.6388,-0.1004,50.7659,0.3679,-0.2166,44.5787,2.8126,-0.1694,48.5982,1.7349,-0.3395,48.6134,1.7586,-0.317,48.3642,1.8306,-0.549,48.3964,1.7971,-0.4729,48.3799,1.8159,-1.2171,50.1286,0.766,-0.3083,49.9114,0.9132,-0.4081,48.9086,1.4087,-0.4271,48.8946,1.3657,-1.2868,50.0669,0.7524,-0.6641,49.2338,1.1459,-0.5084,48.9746,1.2427,-0.5745,49.0939,1.2071,-0.6032,49.1213,1.1998,-0.4804,49.0117,1.3539,-0.4449,48.8989,1.4445,-0.4939,46.1959,2.4672,-0.6001,47.7802,1.9696,-0.6113,45.3576,2.8218,-0.5434,47.262,2.2332,-0.4743,48.6612,1.4435,-0.651,46.0532,2.676,-0.7323,45.9042,2.6998,-0.6788,45.32,2.849,-0.6572,45.4875,2.8493,-0.6196,45.2685,2.9412,-0.5484,45.0083,2.6931,-0.5834,45.2354,2.6602,-0.5405,45.0766,2.8364,-0.299,44.5398,2.9365,-0.2732,44.4911,3.08,-0.4261,44.6746,3.0357,-0.7051,45.6104,2.7859,-0.6871,45.2049,2.9086,-0.2802,44.4848,3.0948,-0.9359,49.5901,0.9678,-0.2589,50.0954,0.8166,-0.1659,49.9098,0.8991,-0.685,45.1627,2.8945,-0.6054,45.0294,2.9774,-0.593,45.1186,2.8246,-0.7985,50.3947,0.8207,-0.9723,49.8043,0.806,-0.377,50.4201,0.3281,-0.4423,50.6684,0.3296,-0.512,48.9052,1.5444,-0.4025,48.9683,1.5358,-0.3665,48.9601,1.5482,-0.3688,48.9957,1.5211,-0.1269,49.0183,1.4871,-0.1279,49.0199,1.47,-0.2758,49.0092,1.5103,-0.4113,48.9983,1.5142,-0.4244,48.8897,1.3677,-0.4986,48.903,1.305,-0.409,48.9593,1.2283,-0.4101,48.9237,1.2249,-0.4524,48.917,1.2463,-0.4369,48.9506,1.2431};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=2 */
		private double[] getsternum_Coord_7_17_point_2()
		{
			double[] value = {-0.2039,48.9852,1.2126,-0.2023,48.9748,1.2424,-0.3192,48.9846,1.2275,-0.3175,49.0184,1.1868,-0.1047,49.0054,1.1811,-0.1069,48.9938,1.2198,-0.094,48.9381,1.221,-0.4902,48.8508,1.3346,-0.4808,48.9061,1.2683,-0.525,48.8691,1.5042,-0.4304,48.8834,1.4544,-0.4375,48.8764,1.46,-0.9463,50.4446,0.6214,-1.1511,50.0685,0.5292,-1.2178,49.993,0.5748,0.5936,45.4386,2.6277,0.5182,45.4248,2.6316,0.4244,45.7981,2.53,0.393,47.2282,1.985,0.4915,49.3666,1.0026,0.3459,50.2941,0.3856,0.356,50.3441,0.3613,0.7113,50.4938,0.4072,0.7576,50.5762,0.4547,0.8944,50.3059,0.4757,0.095,44.6071,3.1669,0.2194,44.5621,3.1488,0.2834,44.6605,3.1352,0.1608,44.6984,3.1314,0.5433,45.8152,2.8001,0.3141,45.6492,2.8636,0.5402,45.6854,2.8682,0.2965,45.7982,2.8193,0.1648,44.9582,3.0541,0.5336,44.8857,3.0121,0.4205,44.7642,3.091,0.4901,44.8909,3.0572,0.2056,44.4412,3.1319,0.2695,44.5295,3.1176,0.6101,46.2947,2.6632,0.6215,46.0512,2.7338,0.3504,47.2263,2.295,0.3668,48.9547,1.5534,0.2718,50.4621,0.6525,0.4724,50.402,0.7312,0.119,44.3783,2.8238,0.1155,44.4414,2.8093,0.7198,45.2392,2.792,0.1063,49.0211,1.1725,0.2269,49.2306,1.0866,0.2053,49.0011,1.2031,0.1272,49.2465,1.0741,0.4029,49.3347,1.2482,0.3662,49.1798,1.3716,0.9385,50.3213,0.5295,0.2707,50.8333,0.3662,0.1986,50.8132,0.3761,0.6845,50.0075,0.9011,0.5357,46.2128,2.5958,0.0609,46.218,2.4185,0.3414,50.7287,0.6204,1.0103,49.9662,0.6756,0.9473,49.8069,0.6792,1.0258,49.9168,0.6144,0.7397,49.8423,0.9393,0.963,49.9285,0.4984,1.0879,49.9592,0.5175,0.7294,49.858,0.591,0.7478,49.9068,0.515,1.112,49.6801,0.9075,1.2865,49.8004,0.8201,1.2513,49.8572,0.8428,1.1451,49.6644,0.8781,1.3085,49.8924,0.7848,1.2927,49.96,0.8061,0.1699,50.6271,0.5782,0.5275,48.5232,1.5246,0.5619,48.4777,1.6146,0.4806,48.4712,1.5053,0.551,48.8613,1.541,0.4381,48.4297,1.4889,0.4943,48.6003,1.5432,0.5326,48.8561,1.5103,0.437,48.8706,1.4618,0.6213,49.1129,1.2493,0.5015,44.9642,2.8135,0.5766,47.7909,1.8522,0.2691,44.5124,2.9377,0.3296,44.6139,2.9949,0.4741,47.2905,2.1767,0.5369,47.5644,2.0843,0.5423,47.0839,2.2035,0.4661,48.6821,1.4089,0.4206,48.6658,1.385,0.6631,45.3094,2.7182,0.5782,45.0584,3.0062,0.2837,44.6053,3.0407,0.3142,44.6181,3.0195,0.4357,44.7041,2.9736,0.4952,44.9834,2.9179,0.352,44.489,2.8852,0.3942,44.6829,3.0867,0.3172,44.6207,3.1028,0.3758,44.6574,3.0768,0.8397,50.2091,0.4364,0.6664,50.3128,0.3937,0.6768,45.8414,2.7848,0.6763,45.102,2.7663,0.5877,45.0671,2.7778,0.5765,45.0927,2.8961,0.6675,45.1541,2.8153,1.1012,49.897,0.8576,1.164,49.935,0.8571,1.0356,50.1566,0.4774,1.1481,49.9949,0.7263,1.2138,49.9885,0.5854,1.2623,49.9967,0.6422,1.1018,49.8316,0.5759,1.1415,49.9108,0.5699,0.963,49.628,0.7603,1.0169,49.6867,0.6629,1.2709,49.8079,0.8061,0.3521,50.2131,0.449,0.4756,50.1274,0.431,0.471,50.079,0.508,0.9927,49.999,0.4869,0.1574,50.8138,0.4221,0.1796,50.7987,0.4893,0.2262,50.6837,0.327,0.3361,50.84,0.3761,0.3722,50.9041,0.4454,0.2216,50.1729,0.4959,0.2911,44.539,3.1083,0.3128,44.6066,3.0885,0.2868,44.542,3.094,0.3554,44.6396,3.0662,1.2429,50.1003,0.6564,0.5499,48.8673,1.5377,0.5351,48.8914,1.5232,0.5191,48.911,1.5226,0.1278,49.0236,1.4676,0.1257,49.0563,1.4491,0.3192,48.9846,1.2275,0.4147,48.9662,1.2011,0.41,48.9618,1.2267,0.3175,49.0184,1.1868,0.2027,48.9703,1.2448,0.201,48.9261,1.233,0.0981,48.9528,1.2157,0.1061,48.9894,1.2213,0.4607,48.9523,1.2278,0.4378,48.954,1.2411,0.4764,48.8804,1.3144,0.4242,48.8672,1.3753,0.4168,48.8754,1.371,0.3916,48.8881,1.4159,0.3969,48.877,1.4211,0.443,48.8944,1.4485,0.4319,48.8887,1.4512,0.3932,48.8938,1.4137,0.4053,48.9043,1.4111,0.526,48.8743,1.5009,0.8692,50.4283,0.5103,0.8321,50.6241,0.5446,0.8983,50.4654,0.5674,1.1862,50.1701,0.6679,0.2892,44.0148,3.0317,0.2345,44.1842,3.0171,0.2056,44.1833,3.043,-0.228,44.1789,3.0473,-0.2067,44.3018,3.0778,-0.2655,44.2952,3.0115,-0.2693,44.1814,3.0307,-0.1809,43.9806,2.9903,-0.2629,44.1968,2.9493,-0.2134,44.2017,2.9276,-0.3086,43.9556,3.0218,-0.2228,44.3096,2.8724,-0.2785,44.2945,2.9384,-0.1289,44.3129,2.8513,0.0,44.4953,3.1723,-0.0685,44.2866,3.1183,0.0222,44.2965,3.15,-0.0753,44.483,3.1587,0.1211,43.5846,3.2415,0.1578,43.6047,3.2626,0.0822,43.6084,3.2411,-0.0024,43.7185,3.08,-0.068,43.6788,3.0776,-0.023,43.8313,3.0265,-0.1181,43.8504,3.0451,-0.0934,43.8326,3.1479,-0.0896,43.6662,3.1613,-0.0163,43.7187,3.1784,0.0016,43.8396,3.1505,0.1034,43.8588,3.1897,0.1204,43.7767,3.234,-0.0934,44.1631,3.0611,-0.0082,43.9957,3.1138,0.0316,44.1639,3.1479,-0.1596,43.9724,3.1219,0.0919,44.2898,3.1094,0.0753,44.483,3.1587,0.0559,44.0168,3.1372,0.1257,44.1671,3.0505,0.1575,44.0098,3.0714,-0.1405,44.2072,2.9034,0.2333,44.2118,2.9233,0.2771,44.0233,2.9636,0.1155,44.2149,2.8904,0.1156,44.0164,2.9487,-0.0546,44.0139,2.98,-0.0036,44.2258,2.8789,-0.0136,44.0184,2.9545,0.2421,43.7654,3.1478,0.2274,43.6901,3.2228,0.2294,43.6872,3.1297,0.0968,43.6797,3.1248,0.0715,43.6639,3.2119,0.2493,43.7847,3.0328,0.2834,43.8512,3.088,0.2663,43.8879,3.0105,0.1387,43.6975,3.2594,0.2009,43.7669,3.188,0.1658,43.8481,3.1274,-0.1733,43.6847,3.1593,-0.1883,43.8265,3.1446,-0.2829,43.8137,3.124,-0.2397,43.8095,3.0641,-0.146,43.6968,3.0933,0.0804,43.8157,3.0167,0.1032,43.5792,3.1719,0.1623,43.5825,3.1909,0.1265,43.5737,3.2117,-0.0766,43.9547,3.0027,-0.1729,43.9517,3.0018,0.2532,44.3062,3.0075,0.2396,44.3006,3.0438,0.1834,44.3016,3.0872,-0.3143,43.9444,3.0836,0.2389,44.1909,2.9904,0.2446,44.2965,2.887,0.1259,44.3156,2.8711,0.0027,44.3099,2.8629,-0.0129,43.9347,2.9856,0.0,44.3831,2.8312,0.2553,44.3061,2.9474,0.3979,48.8715,1.4241,0.4256,48.8621,1.3786,0.2023,48.9748,1.2424,0.2003,48.9102,1.2394,0.452,48.9049,1.2513,0.3185,49.0288,1.1801,0.2039,48.9852,1.2126,0.1806,48.6883,1.3507,0.2749,49.0048,1.5159,0.0,49.0355,1.4471,0.1274,49.0134,1.4929,0.0,49.0401,1.4413,0.1252,49.0638,1.4464,0.2764,49.0563,1.4783,0.3706,49.0025,1.5192,0.0,49.0414,1.4252,0.3519,44.7119,3.1133,0.1986,44.7482,3.1145,0.2448,44.7928,3.0957,0.0,44.7749,3.1279,0.3379,50.0764,0.535,0.5918,49.9571,0.5463,0.4583,49.9579,0.5798,0.5788,49.8398,0.6283,0.7022,49.7734,0.6591,0.22,50.6847,0.5693,0.7671,49.9969,0.4654,0.5902,50.0159,0.4658,0.6079,50.1053,0.4217,0.3484,49.2161,1.0934,0.3799,49.4115,0.9855,0.4158,49.5946,0.8542,0.2597,49.4593,0.9673,0.2854,49.6725,0.8256,0.3216,49.9251,0.644,0.4457,49.8413,0.6745,0.4913,50.1911,0.3935,0.5351,50.3937,0.3512,0.5197,50.2745,0.3606,1.2918,49.9736,0.7013,1.2908,49.8942,0.7739,1.143,49.9113,0.558,1.135,49.9095,0.7701,0.7998,50.0906,0.4402,0.9151,49.7524,0.9182,1.2055,50.0128,0.8349,0.593,45.1186,2.8246,0.151,49.4978,0.9422,0.5731,50.5816,0.357,0.1691,49.7282,0.7962,0.2072,49.9975,0.6121,0.1659,49.9098,0.8991,0.1814,44.9733,2.7521,0.299,44.5398,2.9365,0.6221,46.7258,2.2222,0.6982,46.7431,2.3211,0.5715,48.1285,1.6462,0.6938,48.1606,1.7539,1.0076,50.033,0.8816,1.0431,50.0985,0.8562,0.8458,50.108,0.8981,0.4526,46.9788,2.0839,0.3957,46.7393,2.2008,0.3378,46.9909,2.0954,0.4921,46.7295,2.1994,0.0,46.7775,2.1996,0.0,47.0271,2.0966,0.2258,47.2495,1.9935,0.1843,48.4966,1.4613,0.3641,48.4514,1.4787,0.3,48.8401,1.6251,0.1805,46.4761,2.595,0.0,46.2937,2.69,0.1936,46.2898,2.6654,0.0,46.4852,2.614,0.3795,46.2827,2.6596,0.1141,45.9649,2.5057,0.3823,46.5026,2.2939,0.4652,46.4941,2.2846,0.1839,45.131,2.7346,0.4293,45.6412,2.5691,0.1357,45.7291,2.5869,0.1693,45.5714,2.6294,0.0,45.285,2.7247,0.1743,45.4113,2.6732,0.1791,45.2699,2.7067,0.0,45.4241,2.6953,0.3932,45.2443,2.6867,0.3867,45.4037,2.6498,0.0,44.4656,2.8114,0.0,44.6501,2.7907,0.642,50.1965,0.3968,0.4927,50.7916,0.3835,0.6307,50.6996,0.4149,0.2587,49.3524,1.248,0.1105,49.198,1.3535,0.2667,49.1919,1.3631,0.1113,49.3534,1.2426,0.4692,49.4997,1.1173,0.7616,49.6159,0.9908,0.5886,49.6527,1.0328,0.9076,50.1807,0.8663,0.1789,49.6852,1.0344,0.1536,48.8269,1.6271,0.0,48.8258,1.5834,0.1168,49.5414,1.1214,0.2911,49.5226,1.1329,0.0,45.1482,2.7489,0.0,45.946,2.5339,0.0,45.7061,2.6208,0.0,44.7295,3.1439,0.0,44.6256,3.1741,0.6456,48.1419,1.859,0.3586,49.6872,1.0428,0.896,49.962,0.8804,0.0,46.857,2.4597,0.1673,46.6649,2.522,0.1529,46.8801,2.4298,0.0,46.6549,2.5457,0.0,47.2079,2.3181,0.1595,47.1994,2.2996,0.4026,46.0326,2.7321,0.2085,46.0231,2.7573,0.0,45.7878,2.864,0.0,46.0231,2.7979,0.0,45.4277,2.9629,0.3036,45.2584,2.9572,0.3095,45.4603,2.9101,0.0,45.2564,2.9973,0.4424,45.4799,2.9057,0.366,45.081,3.0073,0.4893,45.2514,2.9454,0.2638,45.1011,3.006,0.0,45.1105,3.033,0.3093,44.9305,3.064,0.0,45.6589,2.9036,0.7906,50.6519,0.7049,0.0,50.061,0.5416,0.0,49.5505,0.909,0.0,49.8018,0.7351,0.0,49.2709,1.0588,0.4715,48.1471,1.6309,0.3541,48.1714,1.6183,0.3608,47.9279,1.7127,0.2389,47.6257,1.8282,0.0,47.2799,1.9961,0.0,47.6595,1.8396,0.0,48.0147,1.7017,0.0,48.2182,1.6168,0.0,44.8016,2.7769,-1.0829,50.1614,0.5363,-0.3979,48.8715,1.4241,-0.41,48.9618,1.2267,-0.2003,48.9102,1.2394,-0.452,48.9049,1.2513,-0.5028,48.9107,1.3012,-0.4147,48.9662,1.2011,-0.3185,49.0288,1.1801,0.0,49.0015,1.1806,-0.3484,49.2161,1.0934,-0.1274,49.0134,1.4929,-0.2749,49.0048,1.5159,-0.1252,49.0638,1.4464,0.0,49.085,1.4115,-0.3706,49.0025,1.5192,-0.2764,49.0563,1.4783,-0.3519,44.7119,3.1133,-0.2448,44.7928,3.0957,-0.1986,44.7482,3.1145,-0.3379,50.0764,0.535,-0.4583,49.9579,0.5798,-0.5788,49.8398,0.6283,-0.5918,49.9571,0.5463,-0.7022,49.7734,0.6591,-0.1986,50.8132,0.3761,-0.1495,50.7763,0.3717,-0.3799,49.4115,0.9855,-0.2597,49.4593,0.9673,-0.2854,49.6725,0.8256,-0.4457,49.8413,0.6745,-0.3216,49.9251,0.644,-0.4158,49.5946,0.8542,-0.5197,50.2745,0.3606,-0.4913,50.1911,0.3935,-1.2918,49.9736,0.7013,-1.2908,49.8942,0.7739,-1.143,49.9113,0.558,-1.135,49.9095,0.7701,-1.1363,50.1658,0.6037,-1.2055,50.0128,0.8349,-0.151,49.4978,0.9422,-0.1691,49.7282,0.7962,-0.2072,49.9975,0.6121,-0.7906,50.6519,0.7049,-0.7493,50.7522,0.6179,-0.3853,44.5344,2.8944,0.0,44.973,2.7666,-0.1259,44.7982,2.773,-0.1814,44.9733,2.7521,-0.3318,44.7026,2.786,-0.3002,44.9196,2.7519,-0.3139,44.5535,2.9358,-0.5782,45.0584,3.0062,-0.4661,48.6821,1.4089,-0.6221,46.7258,2.2222,-0.6982,46.7431,2.3211,-0.5715,48.1285,1.6462,-0.6938,48.1606,1.7539,-0.4256,48.8621,1.3786,-1.0431,50.0985,0.8562,-0.4921,46.7295,2.1994,-0.4526,46.9788,2.0839,-0.2258,47.2495,1.9935,-0.3378,46.9909,2.0954,-0.1843,48.4966,1.4613,-0.1806,48.6883,1.3507,0.0,48.491,1.4632,0.0,48.603,1.7035,-0.6456,48.1419,1.859,-0.3795,46.2827,2.6596,-0.1805,46.4761,2.595,-0.1936,46.2898,2.6654,-0.1141,45.9649,2.5057,-0.3823,46.5026,2.2939,-0.3002,46.219,2.3918,-0.4652,46.4941,2.2846,-0.1839,45.131,2.7346,-0.1357,45.7291,2.5869,0.0,45.564,2.6603,-0.1693,45.5714,2.6294,-0.4293,45.6412,2.5691,-0.3867,45.4037,2.6498,-0.1791,45.2699,2.7067,-0.3932,45.2443,2.6867,-0.1743,45.4113,2.6732,-0.1112,44.6318,2.789,-0.642,50.1965,0.3968,-0.6079,50.1053,0.4217,-0.5441,50.858,0.4718,-0.6307,50.6996,0.4149,-0.6888,50.7631,0.5081,-0.4927,50.7916,0.3835,-0.9151,49.7524,0.9182,-0.896,49.962,0.8804,-0.2667,49.1919,1.3631,-0.2587,49.3524,1.248,-0.1105,49.198,1.3535,0.0,49.3495,1.2296,-0.1113,49.3534,1.2426,0.0,49.1966,1.3291,-0.5886,49.6527,1.0328,-0.7616,49.6159,0.9908,-0.4692,49.4997,1.1173,-0.8458,50.108,0.8981,-0.9076,50.1807,0.8663,-0.1168,49.5414,1.1214,-0.1789,49.6852,1.0344,-0.1536,48.8269,1.6271,-0.2911,49.5226,1.1329,-0.3586,49.6872,1.0428,-1.0076,50.033,0.8816,-0.1529,46.8801,2.4298,-0.1595,47.1994,2.2996,-0.1673,46.6649,2.522,-0.4026,46.0326,2.7321,-0.2085,46.0231,2.7573,-0.2638,45.1011,3.006,-0.3036,45.2584,2.9572,-0.3095,45.4603,2.9101,-0.4424,45.4799,2.9057,-0.4893,45.2514,2.9454,-0.3093,44.9305,3.064,-0.366,45.081,3.0073,-0.5902,50.0159,0.4658,-0.22,50.6847,0.5693,-0.5731,50.5816,0.357,-0.4715,48.1471,1.6309,-0.3608,47.9279,1.7127,-0.3541,48.1714,1.6183,-0.2389,47.6257,1.8282,-0.3957,46.7393,2.2008,-0.3107,45.1009,2.726,-0.5351,50.3937,0.3512,-0.7998,50.0906,0.4402,-0.3,48.8401,1.6251,-0.7671,49.9969,0.4654,0.3853,44.5344,2.8944,0.0999,43.9187,2.9848};
			return value;
		}

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

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getrclavcle_Geo_6_117_coordIndex_2()
		{
			int[] value = {451,452,453,-1,451,454,452,-1,455,456,457,-1,455,458,456,-1,459,460,461,-1,461,462,459,-1,463,464,465,-1,465,466,463,-1,467,468,469,-1,467,470,468,-1,471,472,473,-1,471,474,472,-1,475,476,111,-1,475,477,476,-1,478,479,480,-1,479,481,480,-1,113,482,483,-1,484,485,486,-1,484,487,485,-1,488,489,119,-1,112,490,123,-1,491,492,121,-1,121,493,491,-1,494,118,495,-1,496,497,498,-1,68,499,500,-1,501,502,82,-1,95,503,504,-1,505,506,507,-1,505,508,506,-1,509,510,97,-1,509,511,510,-1,512,513,133,-1,514,515,138,-1,515,75,138,-1,516,517,518,-1,518,519,516,-1,520,521,142,-1,522,523,524,-1,524,525,522,-1,526,527,528,-1,526,92,527,-1,12,529,15,-1,12,530,529,-1,69,531,532,-1,69,533,531,-1,145,154,534,-1,145,535,154,-1,536,537,538,-1,536,152,537,-1,539,540,127,-1,539,541,540,-1,2,3,14,-1,14,13,2,-1,542,543,544,-1,543,545,544,-1,164,546,156,-1,546,547,156,-1,548,163,540,-1,548,168,163,-1,174,167,549,-1,174,534,167,-1,550,551,173,-1,550,552,551,-1,553,193,514,-1,554,518,555,-1,198,190,556,-1,190,519,556,-1,557,539,558,-1,557,161,539,-1,222,492,559,-1,484,227,560,-1,484,495,227,-1,235,215,498,-1,215,213,498,-1,475,561,240,-1,475,223,561,-1,471,490,243,-1,471,562,490,-1,563,564,469,-1,563,487,564,-1,4,11,9,-1,4,6,11,-1,565,566,464,-1,565,460,566,-1,567,249,568,-1,567,457,249,-1,568,569,567,-1,270,570,571,-1,270,572,570,-1,573,271,574,-1,271,159,574,-1,179,575,517,-1,517,446,179,-1,279,447,516,-1,516,189,279,-1,449,576,577,-1,577,578,449,-1,577,286,578,-1,287,579,280,-1,579,448,280,-1,579,580,448,-1,293,581,501,-1,293,289,581,-1,439,502,582,-1,582,295,439,-1,582,442,295,-1,318,317,416,-1,318,420,317,-1,583,323,319,-1,323,584,319,-1,585,515,192,-1,585,327,515,-1,586,165,158,-1,586,176,165,-1,405,587,409,-1,405,588,587,-1,409,336,405,-1,538,177,589,-1,590,591,592,-1,590,593,591,-1,390,594,394,-1,390,425,594,-1,390,344,425,-1,350,393,389,-1,595,395,596,-1,595,387,395,-1,357,341,400,-1,357,597,341,-1,383,399,339,-1,383,358,399,-1,361,337,274,-1,274,450,361,-1,361,382,337,-1,337,402,274,-1,402,598,274,-1,371,374,366,-1,371,599,374,-1,368,356,378,-1,356,600,378,-1,601,107,500,-1,601,108,107,-1,602,568,603,-1,602,569,568,-1,604,108,602,-1,604,106,108,-1,270,269,572,-1,269,605,572,-1,606,5,607,-1,606,0,5,-1,333,335,499,-1,335,500,499,-1,356,19,18,-1,368,19,356,-1,377,23,22,-1,369,23,377,-1,25,366,28,-1,25,371,366,-1,26,29,31,-1,28,29,26,-1,366,373,367,-1,366,374,373,-1,372,33,36,-1,372,388,33,-1,351,608,349,-1,609,608,351,-1,346,375,347,-1,376,375,346,-1,365,307,364,-1,365,308,307,-1,24,379,363,-1,24,21,379,-1,39,610,37,-1,610,39,440,-1,611,356,355,-1,611,600,356,-1,380,45,43,-1,380,362,45,-1,45,450,40,-1,45,361,450,-1,382,48,337,-1,382,46,48,-1,26,49,27,-1,49,26,47,-1,30,383,31,-1,383,30,358,-1,357,612,597,-1,357,359,612,-1,385,441,386,-1,385,440,441,-1,355,42,292,-1,355,44,42,-1,613,352,614,-1,613,353,352,-1,35,615,354,-1,35,34,615,-1,595,616,617,-1,595,596,616,-1,350,388,351,-1,350,389,388,-1,389,395,387,-1,389,393,395,-1,345,307,309,-1,345,347,307,-1,390,51,344,-1,390,52,51,-1,51,618,343,-1,51,50,618,-1,394,619,392,-1,394,594,619,-1,620,411,621,-1,620,414,411,-1,396,56,53,-1,396,622,56,-1,623,590,592,-1,624,590,623,-1,625,57,59,-1,626,57,625,-1,627,628,612,-1,627,629,628,-1,597,342,341,-1,597,630,342,-1,62,341,63,-1,341,62,400,-1,188,342,186,-1,340,342,188,-1,62,631,401,-1,62,61,631,-1,631,66,403,-1,66,631,64,-1,632,274,598,-1,632,275,274,-1,65,633,634,-1,65,635,633,-1,636,637,638,-1,636,639,637,-1,170,637,640,-1,637,170,169,-1,641,642,639,-1,642,641,643,-1,68,644,499,-1,67,644,68,-1,334,645,335,-1,334,646,645,-1,333,405,336,-1,333,406,405,-1,405,647,588,-1,405,407,647,-1,648,649,650,-1,649,648,651,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getrclavcle_Geo_6_117_coordIndex_3()
		{
			int[] value = {652,653,64,-1,652,654,653,-1,155,655,654,-1,655,155,157,-1,586,177,176,-1,586,589,177,-1,587,410,409,-1,587,606,410,-1,330,521,520,-1,330,329,521,-1,411,332,331,-1,332,411,413,-1,656,657,658,-1,656,659,657,-1,657,660,661,-1,657,662,660,-1,663,664,665,-1,663,659,664,-1,191,585,192,-1,666,585,191,-1,327,75,515,-1,327,76,75,-1,667,328,665,-1,326,328,667,-1,323,664,324,-1,583,664,323,-1,412,322,413,-1,325,322,412,-1,668,669,670,-1,668,671,669,-1,672,319,584,-1,672,320,319,-1,318,417,321,-1,318,416,417,-1,195,73,415,-1,73,195,74,-1,513,316,315,-1,316,513,512,-1,420,314,317,-1,314,420,419,-1,421,312,311,-1,421,418,312,-1,423,313,424,-1,310,313,423,-1,306,50,309,-1,306,673,50,-1,674,303,618,-1,674,304,303,-1,428,305,302,-1,305,428,427,-1,429,300,299,-1,429,426,300,-1,433,301,298,-1,301,433,432,-1,675,430,676,-1,431,430,675,-1,200,677,678,-1,677,200,199,-1,679,680,681,-1,679,682,680,-1,683,684,685,-1,683,686,684,-1,687,436,435,-1,687,688,436,-1,689,690,691,-1,690,689,692,-1,281,693,694,-1,693,281,282,-1,442,297,295,-1,297,442,444,-1,439,82,502,-1,439,80,82,-1,438,39,38,-1,438,441,39,-1,293,41,289,-1,293,42,41,-1,695,442,582,-1,695,445,442,-1,291,581,289,-1,696,581,291,-1,83,41,40,-1,290,41,83,-1,287,697,579,-1,287,288,697,-1,698,285,284,-1,698,699,285,-1,286,692,578,-1,286,283,692,-1,282,87,689,-1,87,282,88,-1,700,443,445,-1,443,700,701,-1,279,448,447,-1,279,280,448,-1,179,89,91,-1,446,89,179,-1,92,702,527,-1,90,702,92,-1,181,703,182,-1,704,703,181,-1,705,706,707,-1,708,706,705,-1,93,449,96,-1,93,576,449,-1,95,709,503,-1,94,709,95,-1,710,202,204,-1,710,711,202,-1,276,100,712,-1,276,98,100,-1,99,574,101,-1,99,573,574,-1,713,84,275,-1,713,85,84,-1,271,160,159,-1,271,273,160,-1,714,715,716,-1,714,717,715,-1,718,68,719,-1,718,70,68,-1,270,720,267,-1,270,571,720,-1,720,104,721,-1,720,102,104,-1,570,722,571,-1,722,570,723,-1,264,496,266,-1,264,497,496,-1,205,452,206,-1,453,452,205,-1,723,454,451,-1,454,723,724,-1,570,604,725,-1,570,572,604,-1,107,605,719,-1,106,605,107,-1,569,645,567,-1,569,601,645,-1,259,726,256,-1,727,726,259,-1,263,728,262,-1,263,729,728,-1,260,477,261,-1,260,476,477,-1,730,257,731,-1,730,258,257,-1,241,732,239,-1,733,732,241,-1,734,244,735,-1,734,242,244,-1,252,736,255,-1,737,736,252,-1,738,739,646,-1,739,738,740,-1,253,458,254,-1,456,458,253,-1,728,253,255,-1,253,728,741,-1,742,250,741,-1,742,251,250,-1,544,743,744,-1,743,544,545,-1,464,745,565,-1,745,464,463,-1,746,460,459,-1,460,746,566,-1,607,747,748,-1,747,607,749,-1,465,750,466,-1,465,751,750,-1,752,753,754,-1,752,755,753,-1,756,757,758,-1,756,759,757,-1,760,761,762,-1,760,763,761,-1,468,563,469,-1,468,764,563,-1,246,467,247,-1,470,467,246,-1,545,246,245,-1,246,545,543,-1,765,248,247,-1,248,765,766,-1,767,471,473,-1,471,767,562,-1,243,112,109,-1,243,490,112,-1,223,111,110,-1,475,111,223,-1,768,240,561,-1,238,240,768,-1,236,479,478,-1,479,236,237,-1,498,237,235,-1,237,498,497,-1,482,116,236,-1,116,482,113,-1,769,770,765,-1,769,771,770,-1,233,768,772,-1,233,232,768,-1,221,233,219,-1,231,233,221,-1,114,216,115,-1,114,230,216,-1,228,221,218,-1,228,229,221,-1,484,494,495,-1,484,486,494,-1,227,118,117,-1,227,495,118,-1,225,119,120,-1,488,119,225,-1,120,121,224,-1,120,493,121,-1,773,490,562,-1,773,123,490,-1,559,223,222,-1,223,559,561,-1,491,559,492,-1,491,772,559,-1,220,494,218,-1,118,494,220,-1,774,775,764,-1,775,774,776,-1,498,212,496,-1,498,213,212,-1,214,776,777,-1,214,211,776,-1,778,774,779,-1,778,780,774,-1,209,781,782,-1,781,209,208,-1,783,784,785,-1,784,783,786,-1,787,788,789,-1,787,790,788,-1,791,783,788,-1,791,721,783,-1,104,209,786,-1,104,105,209,-1,792,557,558,-1,793,557,792,-1,712,203,202,-1,712,794,203,-1,201,503,204,-1,201,504,503,-1,97,504,509,-1,95,504,97,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getrclavcle_Geo_6_117_coordIndex_4()
		{
			int[] value = {795,796,797,-1,795,798,796,-1,799,508,800,-1,506,508,799,-1,124,801,802,-1,124,126,801,-1,803,511,804,-1,510,511,803,-1,131,198,556,-1,128,198,131,-1,197,131,805,-1,131,197,129,-1,554,519,518,-1,554,556,519,-1,806,136,196,-1,136,806,135,-1,135,139,132,-1,135,137,139,-1,806,193,553,-1,806,194,193,-1,133,195,512,-1,133,132,195,-1,193,515,514,-1,515,193,192,-1,807,808,809,-1,807,810,808,-1,811,179,178,-1,811,575,179,-1,519,189,516,-1,519,190,189,-1,812,178,180,-1,812,810,178,-1,526,813,814,-1,813,526,528,-1,184,815,816,-1,815,184,183,-1,56,817,54,-1,56,818,817,-1,593,819,591,-1,593,820,819,-1,524,821,822,-1,524,523,821,-1,823,524,824,-1,525,524,823,-1,825,187,826,-1,185,187,825,-1,801,823,800,-1,801,826,823,-1,827,796,828,-1,796,827,804,-1,829,803,830,-1,803,829,707,-1,527,184,528,-1,181,184,527,-1,166,176,175,-1,176,166,165,-1,530,831,529,-1,530,832,831,-1,171,532,531,-1,532,171,170,-1,833,834,835,-1,833,836,834,-1,837,173,172,-1,837,550,173,-1,834,174,549,-1,172,174,834,-1,146,173,551,-1,143,173,146,-1,147,167,150,-1,147,549,167,-1,838,540,541,-1,838,548,540,-1,168,153,163,-1,168,151,153,-1,537,154,535,-1,154,537,152,-1,158,164,156,-1,165,164,158,-1,536,153,152,-1,536,162,153,-1,160,539,161,-1,541,539,160,-1,552,839,551,-1,839,552,840,-1,14,72,841,-1,72,14,3,-1,648,156,547,-1,648,157,156,-1,364,347,375,-1,364,307,347,-1,308,296,842,-1,365,296,308,-1,365,384,296,-1,359,627,612,-1,359,843,627,-1,386,438,294,-1,441,438,386,-1,354,624,623,-1,354,615,624,-1,617,398,844,-1,617,616,398,-1,52,309,50,-1,52,345,309,-1,303,343,618,-1,343,303,422,-1,331,621,411,-1,621,331,397,-1,630,186,342,-1,630,522,186,-1,64,635,65,-1,64,653,635,-1,272,275,632,-1,272,713,275,-1,638,169,845,-1,638,637,169,-1,640,532,170,-1,640,846,532,-1,408,646,334,-1,408,738,646,-1,407,651,647,-1,407,649,651,-1,654,847,155,-1,652,847,654,-1,848,329,849,-1,329,848,521,-1,658,661,850,-1,658,657,661,-1,662,851,660,-1,662,852,851,-1,666,809,808,-1,666,191,809,-1,670,325,412,-1,325,670,669,-1,312,320,672,-1,312,418,320,-1,512,415,316,-1,415,512,195,-1,675,315,431,-1,315,675,513,-1,423,427,310,-1,423,305,427,-1,853,304,674,-1,853,434,304,-1,426,686,300,-1,426,684,686,-1,199,430,677,-1,430,199,676,-1,79,678,77,-1,79,200,678,-1,435,283,687,-1,435,692,283,-1,435,690,692,-1,444,694,297,-1,694,444,281,-1,277,696,291,-1,696,277,854,-1,290,85,278,-1,85,290,83,-1,284,855,698,-1,284,856,855,-1,88,701,86,-1,88,443,701,-1,527,704,181,-1,702,704,527,-1,204,709,710,-1,709,204,503,-1,719,269,718,-1,719,605,269,-1,716,857,533,-1,716,715,857,-1,267,721,791,-1,267,720,721,-1,266,212,210,-1,266,496,212,-1,206,258,730,-1,452,258,206,-1,251,256,726,-1,251,742,256,-1,239,261,477,-1,261,239,732,-1,262,255,736,-1,728,255,262,-1,737,858,859,-1,737,252,858,-1,740,455,739,-1,740,462,455,-1,741,456,253,-1,456,741,250,-1,545,472,743,-1,545,245,472,-1,459,749,746,-1,459,747,749,-1,465,10,751,-1,8,10,465,-1,758,755,752,-1,758,757,755,-1,762,759,756,-1,762,761,759,-1,467,765,247,-1,467,769,765,-1,779,764,468,-1,779,774,764,-1,766,473,248,-1,766,767,473,-1,238,232,480,-1,238,768,232,-1,489,771,226,-1,771,489,770,-1,229,231,221,-1,231,229,483,-1,218,486,228,-1,218,494,486,-1,118,493,120,-1,118,220,493,-1,123,224,121,-1,123,773,224,-1,776,217,775,-1,776,211,217,-1,782,786,209,-1,782,784,786,-1,529,790,787,-1,529,831,790,-1,505,793,792,-1,793,505,860,-1,509,201,861,-1,201,509,504,-1,804,797,796,-1,797,804,511,-1,805,862,197,-1,805,863,862,-1,180,814,812,-1,180,526,814,-1,142,183,140,-1,142,815,183,-1,820,828,819,-1,820,827,828,-1,822,824,524,-1,822,864,824,-1,535,175,537,-1,175,535,166,-1,832,865,866,-1,530,865,832,-1,836,172,834,-1,836,837,172,-1,867,839,840,-1,839,867,868,-1,867,588,647,-1,588,867,71,-1,841,840,552,-1,841,72,840,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=5 */
		private int[] getrclavcle_Geo_6_117_coordIndex_5()
		{
			int[] value = {836,857,866,-1,836,833,857,-1,717,832,715,-1,717,831,832,-1,830,804,827,-1,830,803,804,-1,800,824,799,-1,824,800,823,-1,54,820,593,-1,820,54,817,-1,818,622,141,-1,818,56,622,-1,661,814,813,-1,661,660,814,-1,863,575,811,-1,555,575,863,-1,676,134,675,-1,134,676,130,-1,558,802,792,-1,558,124,802,-1,797,869,795,-1,869,797,861,-1,793,574,557,-1,793,101,574,-1,788,870,791,-1,870,788,790,-1,757,785,784,-1,759,785,757,-1,780,776,774,-1,780,777,776,-1,561,772,768,-1,561,559,772,-1,562,871,773,-1,562,767,871,-1,762,7,760,-1,7,762,6,-1,751,754,750,-1,751,752,754,-1,566,9,8,-1,566,746,9,-1,740,748,747,-1,740,738,748,-1,858,565,745,-1,858,872,565,-1,646,567,645,-1,646,739,567,-1,601,602,108,-1,601,569,602,-1,725,723,570,-1,725,724,723,-1,709,701,700,-1,709,94,701,-1,708,93,706,-1,93,708,576,-1,855,90,580,-1,855,702,90,-1,853,691,690,-1,873,691,853,-1,685,688,687,-1,688,685,684,-1,682,678,677,-1,682,679,678,-1,594,670,619,-1,594,668,670,-1,659,662,657,-1,663,662,659,-1,606,1,0,-1,606,587,1,-1,654,874,653,-1,654,655,874,-1,650,643,641,-1,650,649,643,-1,639,640,637,-1,642,640,639,-1,598,634,632,-1,634,598,65,-1,59,627,625,-1,629,627,59,-1,624,55,590,-1,624,844,55,-1,621,596,620,-1,621,616,596,-1,600,37,610,-1,611,37,600,-1,875,609,599,-1,875,608,609,-1,614,32,613,-1,614,843,32,-1,617,34,595,-1,617,615,34,-1,626,592,57,-1,626,623,592,-1,597,628,630,-1,597,612,628,-1,638,635,636,-1,635,638,633,-1,876,67,846,-1,644,67,876,-1,64,61,652,-1,631,61,64,-1,589,847,60,-1,586,847,589,-1,658,877,656,-1,658,849,877,-1,666,878,585,-1,666,852,878,-1,583,665,664,-1,583,667,665,-1,671,584,669,-1,672,584,671,-1,673,618,50,-1,674,618,673,-1,686,681,680,-1,686,683,681,-1,694,879,842,-1,694,693,879,-1,696,582,581,-1,696,695,582,-1,579,699,698,-1,697,699,579,-1,689,578,692,-1,689,87,578,-1,577,704,856,-1,577,703,704,-1,711,880,854,-1,711,710,880,-1,573,85,713,-1,573,99,85,-1,716,718,714,-1,718,716,70,-1,571,102,720,-1,722,102,571,-1,106,572,605,-1,106,604,572,-1,726,603,568,-1,726,727,603,-1,733,731,732,-1,733,730,731,-1,737,735,736,-1,737,734,735,-1,729,741,728,-1,729,742,741,-1,744,881,859,-1,744,743,881,-1,5,749,607,-1,5,4,749,-1,11,758,10,-1,11,756,758,-1,564,771,769,-1,771,564,560,-1,770,766,765,-1,882,766,770,-1,764,883,563,-1,764,775,883,-1,778,884,885,-1,778,779,884,-1,755,781,753,-1,755,782,781,-1,763,789,761,-1,763,787,789,-1,721,786,783,-1,104,786,721,-1,500,719,68,-1,719,500,107,-1,794,100,860,-1,794,712,100,-1,556,805,131,-1,554,805,556,-1,553,135,806,-1,553,137,135,-1,809,862,807,-1,862,809,886,-1,851,810,812,-1,851,808,810,-1,816,848,850,-1,815,848,816,-1,126,826,801,-1,826,126,825,-1,828,798,864,-1,828,796,798,-1,140,707,829,-1,140,705,707,-1,58,822,821,-1,822,591,819,-1,822,58,591,-1,550,865,887,-1,550,837,865,-1,549,835,834,-1,147,835,549,-1,548,845,148,-1,548,838,845,-1,546,551,839,-1,546,146,551,-1,651,547,868,-1,648,547,651,-1,531,835,171,-1,531,833,835,-1,12,841,887,-1,12,14,841,-1,162,185,825,-1,185,162,536,-1,525,826,187,-1,525,823,826,-1,818,830,817,-1,818,829,830,-1,528,816,813,-1,528,184,816,-1,810,811,178,-1,807,811,810,-1,194,196,886,-1,196,194,806,-1,802,800,508,-1,802,801,800,-1,798,506,799,-1,795,506,798,-1,869,794,507,-1,794,869,203,-1,785,788,783,-1,785,789,788,-1,208,777,781,-1,214,777,208,-1,871,488,225,-1,488,871,882,-1,230,883,216,-1,230,485,883,-1,219,772,491,-1,772,219,233,-1,482,478,234,-1,478,482,236,-1,470,543,884,-1,470,246,543,-1,13,763,760,-1,13,15,763,-1,754,780,778,-1,754,753,780,-1,466,885,542,-1,466,750,885,-1,463,744,745,-1,744,463,544,-1,254,461,872,-1,458,461,254,-1,881,242,734,-1,881,474,242,-1,481,733,241,-1,733,481,207,-1,731,729,263,-1,731,257,729,-1,476,735,244,-1,260,735,476,-1,602,725,604,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=6 */
		private int[] getrclavcle_Geo_6_117_coordIndex_6()
		{
			int[] value = {725,602,603,-1,454,727,259,-1,454,724,727,-1,453,497,264,-1,205,497,453,-1,205,237,497,-1,205,479,237,-1,723,265,722,-1,723,451,265,-1,714,870,717,-1,714,268,870,-1,712,711,276,-1,711,712,202,-1,707,510,803,-1,706,510,707,-1,182,708,705,-1,703,708,182,-1,880,445,695,-1,880,700,445,-1,282,691,693,-1,691,282,689,-1,685,699,683,-1,685,285,699,-1,681,288,679,-1,681,697,288,-1,682,298,680,-1,298,682,433,-1,302,688,428,-1,302,436,688,-1,879,673,306,-1,879,873,673,-1,299,311,429,-1,421,311,299,-1,419,432,314,-1,419,301,432,-1,424,671,668,-1,424,313,671,-1,321,326,667,-1,326,321,417,-1,665,878,663,-1,665,328,878,-1,324,659,656,-1,324,664,659,-1,877,413,322,-1,332,413,877,-1,748,606,607,-1,606,748,410,-1,650,157,648,-1,650,655,157,-1,601,335,645,-1,601,500,335,-1,406,499,644,-1,406,333,499,-1,643,876,642,-1,643,404,876,-1,874,639,636,-1,874,641,639,-1,160,634,541,-1,634,160,273,-1,634,838,541,-1,634,633,838,-1,403,401,631,-1,401,403,338,-1,340,538,589,-1,340,188,538,-1,523,629,821,-1,629,523,628,-1,330,622,396,-1,330,520,622,-1,392,414,620,-1,392,619,414,-1,348,393,350,-1,348,391,393,-1,626,614,352,-1,614,626,625,-1,362,360,381,-1,380,360,362,-1,611,292,437,-1,611,355,292,-1,363,440,385,-1,379,440,363,-1,379,610,440,-1,349,376,346,-1,608,376,349,-1,609,388,372,-1,609,351,388,-1,367,353,613,-1,367,373,353,-1,369,875,370,-1,369,377,875,-1,647,868,867,-1,647,651,868,-1,840,71,867,-1,840,72,71,-1,868,546,839,-1,546,868,547,-1,540,125,127,-1,163,125,540,-1,146,164,144,-1,164,146,546,-1,166,145,144,-1,535,145,166,-1,167,154,151,-1,167,534,154,-1,148,168,548,-1,148,150,168,-1,148,169,149,-1,169,148,845,-1,171,147,149,-1,835,147,171,-1,174,145,534,-1,174,143,145,-1,887,552,550,-1,887,841,552,-1,837,866,865,-1,836,866,837,-1,533,833,531,-1,533,857,833,-1,866,715,832,-1,715,866,857,-1,887,530,12,-1,530,887,865,-1,177,537,175,-1,177,538,537,-1,91,526,180,-1,92,526,91,-1,183,705,140,-1,705,183,182,-1,864,819,828,-1,864,822,819,-1,864,799,824,-1,799,864,798,-1,125,825,126,-1,825,125,162,-1,536,188,185,-1,188,536,538,-1,522,187,186,-1,522,525,187,-1,827,817,830,-1,820,817,827,-1,829,141,140,-1,818,141,829,-1,141,520,142,-1,141,622,520,-1,521,815,142,-1,848,815,521,-1,850,813,816,-1,661,813,850,-1,660,812,814,-1,851,812,660,-1,555,517,575,-1,555,518,517,-1,863,807,862,-1,807,863,811,-1,886,191,194,-1,191,886,809,-1,139,75,74,-1,139,138,75,-1,133,675,134,-1,675,133,513,-1,553,138,137,-1,553,514,138,-1,197,886,196,-1,197,862,886,-1,136,130,129,-1,136,134,130,-1,805,555,863,-1,805,554,555,-1,198,79,190,-1,198,200,79,-1,130,199,128,-1,199,130,676,-1,539,124,558,-1,124,539,127,-1,508,792,802,-1,508,505,792,-1,795,507,506,-1,795,869,507,-1,511,861,797,-1,861,511,509,-1,203,861,201,-1,203,869,861,-1,507,860,505,-1,794,860,507,-1,159,557,574,-1,557,159,161,-1,860,101,793,-1,101,860,100,-1,717,790,831,-1,870,790,717,-1,15,787,763,-1,787,15,529,-1,761,785,759,-1,785,761,789,-1,755,784,782,-1,755,757,784,-1,753,777,780,-1,777,753,781,-1,543,885,884,-1,885,543,542,-1,210,214,208,-1,212,214,210,-1,215,211,213,-1,215,217,211,-1,775,216,883,-1,775,217,216,-1,220,491,493,-1,491,220,219,-1,222,121,492,-1,222,122,121,-1,122,112,123,-1,112,122,110,-1,767,882,871,-1,766,882,767,-1,225,773,871,-1,225,224,773,-1,488,770,489,-1,488,882,770,-1,226,119,489,-1,226,117,119,-1,563,485,487,-1,485,563,883,-1,485,228,486,-1,230,228,485,-1,114,483,229,-1,113,483,114,-1,234,483,482,-1,234,231,483,-1,226,560,227,-1,771,560,226,-1,487,560,564,-1,560,487,484,-1,116,215,235,-1,116,115,215,-1,234,480,232,-1,478,480,234,-1,479,207,481,-1,479,205,207,-1,480,241,238,-1,241,480,481,-1,240,477,475,-1,477,240,239,-1,244,111,476,-1,244,109,111,-1,474,243,242,-1,474,471,243,-1,245,473,472,-1,245,248,473,-1,769,469,564,-1,467,469,769,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=7 */
		private int[] getrclavcle_Geo_6_117_coordIndex_7()
		{
			int[] value = {884,468,470,-1,468,884,779,-1,2,760,7,-1,760,2,13,-1,6,756,11,-1,756,6,762,-1,10,752,751,-1,752,10,758,-1,750,778,885,-1,750,754,778,-1,544,466,542,-1,463,466,544,-1,8,464,566,-1,8,465,464,-1,4,746,749,-1,4,9,746,-1,747,462,740,-1,459,462,747,-1,460,872,461,-1,565,872,460,-1,745,859,858,-1,744,859,745,-1,743,474,881,-1,743,472,474,-1,872,252,254,-1,252,872,858,-1,462,458,455,-1,458,462,461,-1,250,457,456,-1,457,250,249,-1,739,457,567,-1,739,455,457,-1,859,734,737,-1,734,859,881,-1,257,742,729,-1,257,256,742,-1,207,730,733,-1,730,207,206,-1,736,260,262,-1,260,736,735,-1,263,732,731,-1,263,261,732,-1,249,726,568,-1,726,249,251,-1,724,603,727,-1,724,725,603,-1,452,259,258,-1,452,454,259,-1,265,453,264,-1,265,451,453,-1,103,210,105,-1,103,266,210,-1,722,103,102,-1,722,265,103,-1,268,791,870,-1,268,267,791,-1,269,714,718,-1,714,269,268,-1,70,533,69,-1,70,716,533,-1,450,84,83,-1,274,84,450,-1,713,271,573,-1,713,272,271,-1,99,278,85,-1,98,278,99,-1,276,854,277,-1,711,854,276,-1,710,700,880,-1,709,700,710,-1,94,86,701,-1,96,86,94,-1,706,97,510,-1,706,93,97,-1,703,576,708,-1,703,577,576,-1,702,856,704,-1,702,855,856,-1,89,580,90,-1,89,448,580,-1,446,516,447,-1,446,517,516,-1,78,189,79,-1,78,279,189,-1,281,443,88,-1,281,444,443,-1,449,87,86,-1,578,87,449,-1,856,286,577,-1,284,286,856,-1,580,698,855,-1,579,698,580,-1,78,287,280,-1,77,287,78,-1,278,291,290,-1,291,278,277,-1,854,695,696,-1,695,854,880,-1,502,581,582,-1,581,502,501,-1,501,81,293,-1,81,501,82,-1,81,437,292,-1,80,437,81,-1,439,294,438,-1,295,294,439,-1,297,842,296,-1,694,842,297,-1,693,873,879,-1,691,873,693,-1,690,434,853,-1,435,434,690,-1,285,687,283,-1,685,687,285,-1,697,683,699,-1,681,683,697,-1,77,679,288,-1,678,679,77,-1,677,433,682,-1,430,433,677,-1,680,300,686,-1,298,300,680,-1,684,428,688,-1,426,428,684,-1,436,304,434,-1,302,304,436,-1,873,674,673,-1,674,873,853,-1,842,306,308,-1,306,842,879,-1,422,305,423,-1,422,303,305,-1,429,310,427,-1,311,310,429,-1,421,301,419,-1,421,299,301,-1,431,314,432,-1,315,314,431,-1,316,416,317,-1,415,416,316,-1,418,318,320,-1,318,418,420,-1,313,672,671,-1,672,313,312,-1,425,668,594,-1,668,425,424,-1,619,412,414,-1,412,619,670,-1,669,323,325,-1,323,669,584,-1,319,667,583,-1,667,319,321,-1,417,76,326,-1,76,417,73,-1,585,328,327,-1,585,878,328,-1,808,852,666,-1,852,808,851,-1,852,663,878,-1,662,663,852,-1,322,656,877,-1,656,322,324,-1,849,850,848,-1,849,658,850,-1,332,849,329,-1,332,877,849,-1,410,738,408,-1,410,748,738,-1,71,587,588,-1,1,587,71,-1,155,586,158,-1,847,586,155,-1,60,652,61,-1,652,60,847,-1,655,641,874,-1,650,641,655,-1,649,404,643,-1,407,404,649,-1,409,334,336,-1,334,409,408,-1,404,644,876,-1,644,404,406,-1,846,69,532,-1,846,67,69,-1,846,642,876,-1,640,642,846,-1,653,636,635,-1,636,653,874,-1,633,845,838,-1,633,638,845,-1,632,273,272,-1,632,634,273,-1,65,402,66,-1,402,65,598,-1,402,338,403,-1,337,338,402,-1,399,338,339,-1,399,401,338,-1,60,340,589,-1,63,340,60,-1,522,628,523,-1,630,628,522,-1,821,59,58,-1,629,59,821,-1,57,591,58,-1,57,592,591,-1,593,55,54,-1,590,55,593,-1,396,331,330,-1,396,397,331,-1,844,53,55,-1,398,53,844,-1,616,397,398,-1,616,621,397,-1,395,620,596,-1,395,392,620,-1,425,343,422,-1,344,343,425,-1,390,393,391,-1,390,394,393,-1,345,391,348,-1,345,52,391,-1,346,350,349,-1,350,346,348,-1,33,595,34,-1,595,33,387,-1,615,844,624,-1,615,617,844,-1,352,623,626,-1,352,354,623,-1,843,625,627,-1,843,614,625,-1,294,384,386,-1,384,294,296,-1,30,843,359,-1,30,32,843,-1,357,399,358,-1,357,400,399,-1,383,48,47,-1,383,339,48,-1,49,381,360,-1,46,381,49,-1,361,381,382,-1,361,362,381,-1,16,380,17,-1,380,16,360,-1,44,17,43,-1,17,44,18,-1,437,37,611,-1,37,437,38,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=8 */
		private int[] getrclavcle_Geo_6_117_coordIndex_8()
		{
			int[] value = {610,378,600,-1,379,378,610,-1,385,365,363,-1,365,385,384,-1,375,24,364,-1,375,22,24,-1,608,377,376,-1,608,875,377,-1,372,599,609,-1,372,374,599,-1,373,35,353,-1,373,36,35,-1,29,613,32,-1,29,367,613,-1,599,370,875,-1,371,370,599,-1,25,16,20,-1,25,27,16,-1,20,369,370,-1,19,369,20,-1,378,23,368,-1,23,378,21,-1};
			return value;
		}

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

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getrrrib_Geo_6_132_coordIndex_2()
		{
			int[] value = {244,248,250,-1,307,247,246,-1,246,370,307,-1,200,371,198,-1,259,256,258,-1,259,261,256,-1,372,259,258,-1,286,334,373,-1,334,343,373,-1,218,231,230,-1,217,374,282,-1,217,216,374,-1,224,67,222,-1,67,225,222,-1,95,215,221,-1,215,223,221,-1,218,220,219,-1,375,282,344,-1,282,374,344,-1,285,237,306,-1,237,305,306,-1,94,93,282,-1,282,375,94,-1,376,317,336,-1,336,377,376,-1,212,268,210,-1,209,378,207,-1,221,223,379,-1,380,236,204,-1,94,375,335,-1,185,187,173,-1,185,186,187,-1,381,164,160,-1,381,382,164,-1,383,384,385,-1,383,386,384,-1,387,190,388,-1,387,191,190,-1,144,389,390,-1,144,195,389,-1,390,167,166,-1,390,389,167,-1,391,392,189,-1,392,152,150,-1,150,287,392,-1,146,147,184,-1,186,142,393,-1,393,188,186,-1,382,163,164,-1,382,394,163,-1,184,147,395,-1,183,139,396,-1,397,170,398,-1,164,161,160,-1,161,157,156,-1,157,163,399,-1,163,400,399,-1,152,154,151,-1,151,150,152,-1,401,149,402,-1,149,148,402,-1,393,142,390,-1,142,144,390,-1,403,166,165,-1,165,404,403,-1,163,394,400,-1,394,405,400,-1,327,406,407,-1,327,328,406,-1,182,196,145,-1,182,183,196,-1,184,143,185,-1,184,395,143,-1,181,139,180,-1,181,396,139,-1,2,134,135,-1,2,408,134,-1,408,1,409,-1,408,2,1,-1,137,410,409,-1,137,411,410,-1,412,413,414,-1,412,415,413,-1,416,124,125,-1,138,1,17,-1,1,0,17,-1,113,136,111,-1,113,417,136,-1,418,419,383,-1,420,421,131,-1,422,423,424,-1,74,176,77,-1,141,180,139,-1,425,426,5,-1,426,14,5,-1,266,55,97,-1,266,427,55,-1,399,400,192,-1,192,193,399,-1,428,76,91,-1,428,429,76,-1,82,293,83,-1,430,429,385,-1,429,428,385,-1,431,432,433,-1,432,434,433,-1,435,436,437,-1,436,438,437,-1,79,439,90,-1,439,440,90,-1,88,87,296,-1,41,40,441,-1,425,4,207,-1,425,5,4,-1,18,14,426,-1,18,12,14,-1,61,442,10,-1,10,9,61,-1,125,107,106,-1,106,416,125,-1,443,103,102,-1,265,444,26,-1,26,445,265,-1,446,332,54,-1,102,447,443,-1,20,22,96,-1,448,42,44,-1,449,450,451,-1,378,452,207,-1,60,59,123,-1,36,35,40,-1,449,453,450,-1,45,441,40,-1,45,35,44,-1,35,37,44,-1,36,33,38,-1,36,39,33,-1,454,33,32,-1,453,66,68,-1,453,43,66,-1,31,30,455,-1,444,27,26,-1,23,96,22,-1,23,25,96,-1,23,448,24,-1,23,42,448,-1,320,456,323,-1,6,21,7,-1,299,17,15,-1,299,112,17,-1,5,457,3,-1,342,341,19,-1,208,4,10,-1,23,225,51,-1,23,22,225,-1,122,432,431,-1,122,458,432,-1,459,460,461,-1,459,298,460,-1,297,101,99,-1,86,101,297,-1,13,19,341,-1,13,12,19,-1,110,299,123,-1,110,112,299,-1,429,74,76,-1,429,116,74,-1,238,362,369,-1,238,240,362,-1,281,351,227,-1,351,281,352,-1,426,320,18,-1,320,426,456,-1,378,363,365,-1,363,378,209,-1,47,462,463,-1,444,462,47,-1,364,34,464,-1,364,455,34,-1,450,68,465,-1,450,453,68,-1,51,43,42,-1,43,51,66,-1,27,56,28,-1,56,27,46,-1,30,34,455,-1,34,30,32,-1,33,41,466,-1,39,41,33,-1,441,44,449,-1,441,45,44,-1,467,468,469,-1,468,467,470,-1,452,365,465,-1,452,378,365,-1,44,453,449,-1,44,43,453,-1,209,471,363,-1,208,471,209,-1,466,34,33,-1,34,466,464,-1,443,128,288,-1,443,447,128,-1,126,472,473,-1,472,126,474,-1,475,446,427,-1,446,475,332,-1,445,266,265,-1,266,445,476,-1,477,478,479,-1,477,480,478,-1,481,482,319,-1,482,481,129,-1,427,21,55,-1,427,446,21,-1,447,53,474,-1,447,102,53,-1,416,103,483,-1,416,106,103,-1,127,481,480,-1,127,129,481,-1,444,264,462,-1,444,265,264,-1,484,48,485,-1,48,484,49,-1,9,62,61,-1,62,9,486,-1,208,442,471,-1,442,208,10,-1,11,49,484,-1,13,49,11,-1,487,488,214,-1,487,489,488,-1,490,467,469,-1,490,491,467,-1,9,457,486,-1,457,9,3,-1,442,63,31,-1,442,61,63,-1,64,489,492,-1,489,64,488,-1,387,493,191,-1,114,493,387,-1,439,361,440,-1,361,439,494,-1,495,438,436,-1,495,496,438,-1,431,435,437,-1,431,433,435,-1,434,497,384,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getrrrib_Geo_6_132_coordIndex_3()
		{
			int[] value = {434,432,497,-1,101,498,100,-1,101,499,498,-1,294,86,297,-1,294,87,86,-1,352,22,6,-1,284,22,352,-1,473,475,476,-1,473,472,475,-1,19,500,342,-1,19,322,500,-1,13,50,49,-1,13,341,50,-1,492,478,501,-1,492,489,478,-1,330,502,331,-1,330,503,502,-1,504,505,506,-1,507,505,504,-1,508,388,190,-1,388,508,509,-1,510,511,512,-1,174,511,510,-1,513,114,387,-1,115,114,513,-1,75,514,515,-1,77,514,75,-1,419,516,517,-1,419,518,516,-1,386,324,326,-1,386,383,324,-1,519,422,520,-1,422,519,423,-1,521,522,523,-1,521,524,522,-1,420,525,421,-1,420,526,525,-1,518,418,527,-1,418,518,419,-1,113,342,417,-1,113,71,342,-1,2,301,528,-1,2,135,301,-1,529,183,396,-1,183,529,196,-1,502,530,531,-1,502,532,530,-1,513,507,512,-1,505,507,513,-1,530,509,533,-1,509,530,506,-1,16,534,535,-1,528,534,16,-1,119,536,535,-1,537,536,119,-1,109,538,108,-1,109,539,538,-1,108,540,105,-1,540,108,538,-1,57,124,290,-1,57,60,124,-1,414,495,412,-1,495,414,296,-1,500,415,541,-1,415,500,413,-1,1,137,409,-1,138,137,1,-1,411,542,410,-1,411,543,542,-1,544,433,545,-1,544,435,433,-1,542,546,547,-1,546,542,545,-1,409,548,408,-1,548,409,410,-1,325,520,422,-1,520,325,549,-1,383,428,418,-1,383,385,428,-1,550,517,516,-1,517,550,549,-1,519,420,131,-1,523,420,519,-1,525,181,329,-1,181,525,396,-1,50,71,70,-1,71,50,342,-1,398,174,510,-1,177,174,398,-1,178,141,402,-1,180,141,178,-1,184,401,146,-1,184,172,401,-1,395,145,143,-1,395,182,145,-1,399,159,157,-1,399,551,159,-1,503,179,552,-1,179,503,330,-1,553,554,555,-1,553,556,554,-1,397,510,557,-1,397,398,510,-1,406,558,559,-1,328,558,406,-1,560,524,561,-1,560,522,524,-1,396,526,529,-1,396,525,526,-1,405,404,165,-1,394,404,405,-1,393,166,403,-1,393,390,166,-1,562,563,197,-1,564,563,562,-1,563,161,156,-1,161,563,162,-1,381,565,566,-1,565,381,567,-1,382,404,394,-1,568,404,382,-1,405,192,400,-1,192,405,327,-1,515,159,551,-1,514,159,515,-1,398,155,562,-1,170,155,398,-1,568,403,404,-1,568,569,403,-1,566,392,391,-1,566,565,392,-1,558,389,561,-1,558,167,389,-1,403,188,393,-1,569,188,403,-1,171,150,149,-1,171,287,150,-1,162,564,567,-1,162,563,564,-1,569,189,188,-1,189,569,391,-1,570,553,552,-1,553,570,571,-1,301,533,572,-1,533,301,302,-1,536,299,15,-1,536,300,299,-1,557,512,507,-1,557,510,512,-1,573,109,574,-1,539,109,573,-1,104,461,54,-1,459,461,104,-1,417,575,136,-1,541,575,417,-1,548,134,408,-1,548,424,134,-1,523,526,420,-1,523,522,526,-1,384,546,434,-1,546,384,386,-1,412,436,576,-1,412,495,436,-1,160,567,381,-1,160,162,567,-1,203,371,577,-1,203,198,371,-1,199,243,200,-1,241,243,199,-1,379,222,578,-1,379,223,222,-1,452,579,207,-1,452,580,579,-1,581,582,269,-1,582,581,583,-1,584,585,586,-1,584,587,585,-1,336,588,377,-1,588,336,304,-1,589,590,591,-1,592,590,589,-1,588,593,594,-1,588,595,593,-1,317,596,316,-1,376,596,317,-1,376,597,596,-1,376,270,597,-1,377,594,267,-1,377,588,594,-1,595,598,593,-1,595,590,598,-1,599,371,200,-1,592,371,599,-1,236,305,237,-1,236,600,305,-1,285,335,334,-1,306,335,285,-1,37,448,44,-1,448,37,463,-1,334,375,344,-1,375,334,335,-1,601,343,235,-1,343,601,373,-1,206,286,373,-1,205,286,206,-1,602,204,206,-1,204,602,262,-1,239,276,240,-1,239,278,276,-1,603,348,347,-1,603,260,348,-1,604,256,261,-1,604,368,256,-1,315,605,255,-1,315,309,605,-1,584,308,587,-1,308,584,606,-1,607,591,600,-1,589,591,607,-1,608,307,370,-1,271,307,608,-1,367,366,257,-1,312,366,367,-1,589,252,577,-1,589,607,252,-1,608,584,242,-1,608,606,584,-1,245,362,254,-1,245,250,362,-1,369,367,368,-1,369,249,367,-1,501,73,492,-1,318,73,501,-1,609,582,580,-1,609,597,582,-1,594,211,210,-1,594,593,211,-1,610,213,311,-1,610,212,213,-1,583,611,612,-1,611,583,581,-1,207,613,491,-1,613,207,579,-1,614,88,615,-1,614,89,88,-1,85,470,338,-1,470,85,498,-1,78,340,616,-1,340,78,82,-1,79,314,439,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getrrrib_Geo_6_132_coordIndex_4()
		{
			int[] value = {617,314,79,-1,354,291,355,-1,350,291,354,-1,359,292,345,-1,292,359,358,-1,603,238,604,-1,603,239,238,-1,360,277,346,-1,360,359,277,-1,358,353,355,-1,357,353,358,-1,354,618,274,-1,354,356,618,-1,348,601,349,-1,601,348,602,-1,234,333,619,-1,333,234,280,-1,333,221,619,-1,333,219,221,-1,343,374,233,-1,374,343,344,-1,350,293,291,-1,350,83,293,-1,440,275,90,-1,276,275,440,-1,357,279,228,-1,357,360,279,-1,322,413,500,-1,322,321,413,-1,31,471,442,-1,31,455,471,-1,469,614,323,-1,469,468,614,-1,337,613,612,-1,613,337,339,-1,336,94,335,-1,336,317,94,-1,611,620,621,-1,611,610,620,-1,379,619,221,-1,229,619,379,-1,356,8,618,-1,356,351,8,-1,360,349,279,-1,346,349,360,-1,572,509,508,-1,533,509,572,-1,537,300,536,-1,537,574,300,-1,178,552,179,-1,178,570,552,-1,174,74,511,-1,74,174,176,-1,493,120,191,-1,458,120,493,-1,438,539,573,-1,496,539,438,-1,575,543,411,-1,543,575,622,-1,326,422,424,-1,422,326,325,-1,561,195,560,-1,561,389,195,-1,516,559,550,-1,516,406,559,-1,547,386,326,-1,547,546,386,-1,415,576,622,-1,415,412,576,-1,338,467,339,-1,338,470,467,-1,617,310,314,-1,617,620,310,-1,612,621,337,-1,612,611,621,-1,339,491,613,-1,491,339,467,-1,322,18,320,-1,19,18,322,-1,290,477,57,-1,477,290,289,-1,62,488,64,-1,62,485,488,-1,465,580,452,-1,465,609,580,-1,361,254,362,-1,361,494,254,-1,259,380,204,-1,259,372,380,-1,600,303,305,-1,591,303,600,-1,604,260,603,-1,604,261,260,-1,451,466,449,-1,451,464,466,-1,58,487,69,-1,58,479,487,-1,490,426,425,-1,426,490,456,-1,620,311,310,-1,610,311,620,-1,616,337,621,-1,340,337,616,-1,323,615,321,-1,614,615,323,-1,622,544,543,-1,576,544,622,-1,550,524,521,-1,524,550,559,-1,547,424,548,-1,424,547,326,-1,541,622,575,-1,541,415,622,-1,437,573,121,-1,573,437,438,-1,430,384,497,-1,384,430,385,-1,571,556,553,-1,556,571,169,-1,528,0,2,-1,528,16,0,-1,111,17,112,-1,138,17,111,-1,534,508,117,-1,508,534,572,-1,555,504,532,-1,554,504,555,-1,538,294,540,-1,294,538,295,-1,84,98,100,-1,272,98,84,-1,345,90,275,-1,345,81,90,-1,227,357,228,-1,357,227,353,-1,273,461,460,-1,623,461,273,-1,225,578,222,-1,284,578,225,-1,621,617,616,-1,620,617,621,-1,469,456,490,-1,469,323,456,-1,321,414,413,-1,321,615,414,-1,351,353,227,-1,356,353,351,-1,229,578,281,-1,229,379,578,-1,216,233,374,-1,216,230,233,-1,226,619,229,-1,226,234,619,-1,231,234,232,-1,231,280,234,-1,235,349,601,-1,235,279,349,-1,623,274,618,-1,623,273,274,-1,278,346,277,-1,347,346,278,-1,359,275,277,-1,345,275,359,-1,292,355,291,-1,292,358,355,-1,354,272,350,-1,272,354,274,-1,315,439,314,-1,315,494,439,-1,616,79,78,-1,616,617,79,-1,338,82,85,-1,338,340,82,-1,89,468,499,-1,89,614,468,-1,615,296,414,-1,615,88,296,-1,612,579,583,-1,612,613,579,-1,581,610,611,-1,610,581,212,-1,587,311,213,-1,308,311,587,-1,593,585,211,-1,598,585,593,-1,210,267,594,-1,267,210,268,-1,270,582,597,-1,270,269,582,-1,7,446,54,-1,7,21,446,-1,252,258,253,-1,258,252,372,-1,370,255,605,-1,255,370,246,-1,606,370,605,-1,608,370,606,-1,586,200,243,-1,586,599,200,-1,257,313,253,-1,366,313,257,-1,249,312,367,-1,251,312,249,-1,242,271,608,-1,241,271,242,-1,598,586,585,-1,598,599,586,-1,309,606,605,-1,309,308,606,-1,494,255,254,-1,494,315,255,-1,369,604,238,-1,604,369,368,-1,260,602,348,-1,260,262,602,-1,239,347,278,-1,239,603,347,-1,240,440,361,-1,240,276,440,-1,233,235,343,-1,233,232,235,-1,602,373,601,-1,206,373,602,-1,463,38,47,-1,37,38,463,-1,607,372,252,-1,607,380,372,-1,380,600,236,-1,607,600,380,-1,598,592,599,-1,590,592,598,-1,304,595,588,-1,304,303,595,-1,267,376,377,-1,376,267,270,-1,67,596,65,-1,67,316,596,-1,303,590,595,-1,590,303,591,-1,592,577,371,-1,592,589,577,-1,586,242,584,-1,586,243,242,-1,587,211,585,-1,211,587,213,-1,269,212,581,-1,269,268,212,-1,580,583,579,-1,580,582,583,-1,618,7,623,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=5 */
		private int[] getrrrib_Geo_6_132_coordIndex_5()
		{
			int[] value = {8,7,618,-1,201,577,252,-1,203,577,201,-1,313,201,253,-1,201,313,202,-1,198,202,199,-1,198,203,202,-1,193,551,399,-1,193,515,551,-1,151,169,571,-1,154,169,151,-1,576,435,544,-1,576,436,435,-1,560,196,529,-1,560,195,196,-1,133,424,423,-1,133,134,424,-1,136,411,137,-1,411,136,575,-1,54,623,7,-1,461,623,54,-1,105,459,104,-1,540,459,105,-1,121,574,537,-1,121,573,574,-1,169,397,556,-1,397,169,170,-1,572,528,301,-1,534,528,572,-1,532,503,555,-1,532,502,503,-1,149,172,171,-1,401,172,149,-1,148,571,570,-1,151,571,148,-1,91,194,527,-1,194,91,92,-1,287,189,392,-1,189,287,187,-1,152,565,153,-1,565,152,392,-1,568,391,569,-1,568,566,391,-1,327,165,168,-1,327,405,165,-1,514,176,175,-1,176,514,77,-1,328,167,558,-1,328,168,167,-1,407,192,327,-1,194,192,407,-1,382,566,568,-1,566,382,381,-1,153,567,564,-1,153,565,567,-1,156,197,563,-1,156,158,197,-1,564,155,153,-1,564,562,155,-1,182,147,140,-1,182,395,147,-1,522,529,526,-1,560,529,522,-1,559,561,524,-1,558,561,559,-1,556,557,554,-1,556,397,557,-1,552,555,503,-1,552,553,555,-1,181,330,329,-1,181,179,330,-1,402,570,178,-1,570,402,148,-1,146,402,141,-1,146,401,402,-1,514,158,159,-1,514,175,158,-1,562,177,398,-1,197,177,562,-1,329,421,525,-1,331,421,329,-1,131,331,132,-1,421,331,131,-1,549,521,520,-1,550,521,549,-1,91,418,428,-1,91,527,418,-1,549,324,517,-1,324,549,325,-1,131,423,519,-1,133,423,131,-1,410,547,548,-1,547,410,542,-1,545,434,546,-1,434,545,433,-1,543,545,542,-1,543,544,545,-1,342,541,417,-1,541,342,500,-1,480,501,478,-1,501,480,481,-1,102,54,53,-1,102,104,54,-1,124,483,290,-1,416,483,124,-1,539,295,538,-1,539,496,295,-1,15,535,536,-1,15,16,535,-1,118,537,119,-1,121,537,118,-1,458,118,120,-1,458,122,118,-1,535,117,119,-1,534,117,535,-1,531,533,302,-1,533,531,530,-1,387,505,513,-1,387,388,505,-1,116,511,74,-1,511,116,115,-1,532,506,530,-1,532,504,506,-1,531,331,502,-1,331,531,132,-1,132,302,130,-1,302,132,531,-1,574,107,300,-1,107,574,109,-1,108,103,106,-1,103,108,105,-1,407,527,194,-1,527,407,518,-1,523,520,521,-1,520,523,519,-1,383,517,324,-1,383,419,517,-1,518,406,516,-1,406,518,407,-1,512,115,513,-1,511,115,512,-1,117,190,120,-1,190,117,508,-1,506,388,509,-1,505,388,506,-1,554,507,504,-1,557,507,554,-1,484,457,11,-1,457,484,486,-1,482,476,445,-1,473,476,482,-1,128,474,126,-1,128,447,474,-1,609,596,597,-1,65,596,609,-1,284,281,578,-1,284,352,281,-1,288,624,443,-1,290,624,288,-1,290,483,624,-1,296,496,495,-1,295,496,296,-1,85,100,498,-1,85,84,100,-1,78,293,82,-1,78,80,293,-1,497,114,430,-1,493,114,497,-1,110,71,113,-1,110,72,71,-1,492,63,64,-1,73,63,492,-1,214,69,487,-1,214,70,69,-1,68,609,465,-1,609,68,65,-1,318,29,73,-1,318,28,29,-1,491,425,207,-1,490,425,491,-1,489,479,478,-1,487,479,489,-1,214,485,48,-1,488,485,214,-1,62,484,485,-1,62,486,484,-1,462,25,24,-1,25,462,264,-1,445,319,482,-1,319,445,26,-1,624,103,443,-1,624,483,103,-1,472,332,475,-1,472,52,332,-1,57,479,58,-1,57,477,479,-1,481,318,501,-1,319,318,481,-1,289,480,477,-1,289,127,480,-1,33,56,38,-1,33,454,56,-1,476,427,266,-1,427,476,475,-1,129,473,482,-1,473,129,126,-1,474,52,472,-1,52,474,53,-1,288,127,289,-1,288,128,127,-1,455,363,471,-1,455,364,363,-1,470,499,468,-1,499,470,498,-1,466,441,449,-1,41,441,466,-1,451,465,365,-1,451,450,465,-1,29,32,30,-1,29,454,32,-1,444,46,27,-1,444,47,46,-1,464,365,364,-1,365,464,451,-1,28,454,29,-1,56,454,28,-1,24,463,462,-1,24,448,463,-1,298,99,460,-1,298,297,99,-1,460,98,273,-1,99,98,460,-1,92,515,193,-1,92,75,515,-1,116,430,114,-1,430,116,429,-1,14,457,5,-1,457,14,11,-1,499,86,89,-1,499,101,86,-1,540,298,459,-1,540,294,298,-1,497,458,493,-1,432,458,497,-1,431,121,122,-1,437,121,431,-1};
			return value;
		}

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

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

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

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getrrib2_Geo_6_137_coordIndex_4()
		{
			int[] value = {385,205,139,-1,385,202,205,-1,207,381,302,-1,381,207,383,-1,283,300,299,-1,283,181,300,-1,197,301,191,-1,197,298,301,-1,180,297,296,-1,282,297,180,-1,292,390,290,-1,390,292,389,-1,25,389,26,-1,25,390,389,-1,24,27,23,-1,24,28,27,-1,138,238,235,-1,238,138,137,-1,17,36,18,-1,17,37,36,-1,251,38,35,-1,251,344,38,-1,55,218,56,-1,284,218,55,-1,199,367,265,-1,199,288,367,-1,256,335,257,-1,333,335,256,-1,289,215,217,-1,289,287,215,-1};
			return value;
		}

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

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getrrib3_Geo_6_142_coordIndex_2()
		{
			int[] value = {26,0,2,-1,2,27,26,-1,364,52,51,-1,364,278,52,-1,264,335,332,-1,332,330,264,-1,188,370,189,-1,371,280,329,-1,330,182,265,-1,330,183,182,-1,372,334,324,-1,372,331,334,-1,186,370,187,-1,186,260,370,-1,324,320,319,-1,319,372,324,-1,323,260,259,-1,259,317,323,-1,314,6,373,-1,314,4,6,-1,307,4,314,-1,307,305,4,-1,10,374,375,-1,374,309,375,-1,306,313,292,-1,306,307,313,-1,309,308,271,-1,271,375,309,-1,375,271,274,-1,274,302,375,-1,299,273,376,-1,299,298,273,-1,291,294,290,-1,291,377,294,-1,378,379,130,-1,291,131,380,-1,381,125,128,-1,128,382,381,-1,125,381,11,-1,11,122,125,-1,383,151,384,-1,151,148,384,-1,169,172,385,-1,261,282,284,-1,284,258,261,-1,187,180,184,-1,180,183,184,-1,30,29,194,-1,194,193,30,-1,266,326,328,-1,383,178,386,-1,178,179,386,-1,301,274,298,-1,274,273,298,-1,190,69,387,-1,387,388,190,-1,378,130,389,-1,130,390,389,-1,220,391,233,-1,233,247,220,-1,105,392,393,-1,105,104,392,-1,394,113,211,-1,394,395,113,-1,396,397,398,-1,398,399,396,-1,111,114,400,-1,114,401,400,-1,349,402,403,-1,349,350,402,-1,399,202,404,-1,404,396,399,-1,38,241,243,-1,38,200,241,-1,210,358,405,-1,406,407,156,-1,407,408,156,-1,210,405,208,-1,228,225,212,-1,409,231,391,-1,231,233,391,-1,234,359,210,-1,228,109,226,-1,228,110,109,-1,226,109,105,-1,105,393,226,-1,392,410,215,-1,411,412,413,-1,212,414,211,-1,235,210,356,-1,89,348,347,-1,89,230,348,-1,415,416,417,-1,415,418,416,-1,199,245,200,-1,245,239,200,-1,419,342,197,-1,197,196,419,-1,192,194,420,-1,420,196,192,-1,326,266,370,-1,266,189,370,-1,280,327,329,-1,176,159,421,-1,176,174,159,-1,163,162,155,-1,155,152,163,-1,236,422,173,-1,236,22,422,-1,163,423,164,-1,163,424,423,-1,425,426,427,-1,407,136,139,-1,139,428,407,-1,428,429,408,-1,408,407,428,-1,408,288,286,-1,408,429,288,-1,430,132,431,-1,430,432,132,-1,250,433,434,-1,433,435,434,-1,389,390,382,-1,390,381,382,-1,436,249,437,-1,249,438,437,-1,117,302,118,-1,439,115,395,-1,115,113,395,-1,111,110,112,-1,112,114,111,-1,109,108,106,-1,106,105,109,-1,93,96,91,-1,93,341,96,-1,100,55,440,-1,100,56,55,-1,441,442,443,-1,441,37,442,-1,444,445,440,-1,444,417,445,-1,89,446,88,-1,89,347,446,-1,345,447,448,-1,449,346,86,-1,86,85,449,-1,450,27,66,-1,78,451,80,-1,451,66,80,-1,32,452,388,-1,388,387,32,-1,453,76,454,-1,76,75,454,-1,455,341,262,-1,275,339,1,-1,1,277,275,-1,64,61,369,-1,62,61,65,-1,61,63,368,-1,456,457,279,-1,279,458,456,-1,57,59,459,-1,459,276,57,-1,460,39,55,-1,39,242,55,-1,47,53,371,-1,53,52,371,-1,42,365,51,-1,51,50,42,-1,456,461,369,-1,343,40,50,-1,40,42,50,-1,442,37,460,-1,37,39,460,-1,462,334,333,-1,462,463,334,-1,25,29,26,-1,29,31,26,-1,193,452,32,-1,32,30,193,-1,367,341,455,-1,71,197,72,-1,197,367,72,-1,22,24,464,-1,464,385,22,-1,464,169,385,-1,179,465,386,-1,17,16,118,-1,0,285,277,-1,277,1,0,-1,265,264,330,-1,5,321,3,-1,321,5,310,-1,67,82,80,-1,67,83,82,-1,314,316,315,-1,373,316,314,-1,466,467,120,-1,468,467,466,-1,22,469,422,-1,385,469,22,-1,422,470,471,-1,422,469,470,-1,73,262,74,-1,73,455,262,-1,70,73,76,-1,73,70,72,-1,193,453,452,-1,193,195,453,-1,333,472,462,-1,472,333,337,-1,362,473,363,-1,362,474,473,-1,475,476,477,-1,476,475,478,-1,92,35,90,-1,35,92,474,-1,343,53,479,-1,343,50,53,-1,461,458,480,-1,456,458,461,-1,54,460,55,-1,49,460,54,-1,365,43,481,-1,42,43,365,-1,329,47,371,-1,46,47,329,-1,459,480,276,-1,459,461,480,-1,456,368,457,-1,456,369,368,-1,457,63,482,-1,457,368,63,-1,452,454,388,-1,452,453,454,-1,483,32,387,-1,28,32,483,-1,416,445,417,-1,445,416,79,-1,77,86,346,-1,77,484,86,-1,485,416,418,-1,485,484,416,-1,486,345,344,-1,345,486,447,-1,473,448,475,-1,345,448,473,-1,198,476,487,-1,198,441,476,-1,349,446,347,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getrrib3_Geo_6_142_coordIndex_3()
		{
			int[] value = {349,488,446,-1,440,242,444,-1,440,55,242,-1,49,442,460,-1,49,48,442,-1,440,82,100,-1,82,440,445,-1,33,268,269,-1,33,362,268,-1,439,489,490,-1,439,395,489,-1,221,491,101,-1,221,361,491,-1,467,492,493,-1,492,467,494,-1,423,495,496,-1,424,495,423,-1,494,147,496,-1,494,146,147,-1,497,498,499,-1,497,500,498,-1,501,502,503,-1,501,504,502,-1,11,390,14,-1,390,11,381,-1,435,389,382,-1,433,389,435,-1,438,250,434,-1,249,250,438,-1,143,429,505,-1,143,288,429,-1,506,379,142,-1,379,506,431,-1,507,295,508,-1,296,295,507,-1,509,510,511,-1,512,510,509,-1,431,427,430,-1,427,431,506,-1,506,425,427,-1,505,425,506,-1,428,505,429,-1,428,425,505,-1,139,425,428,-1,425,139,426,-1,427,513,514,-1,427,426,513,-1,515,148,512,-1,384,148,515,-1,434,500,497,-1,500,434,435,-1,389,140,378,-1,389,433,140,-1,514,508,516,-1,514,507,508,-1,517,146,468,-1,517,144,146,-1,150,518,297,-1,150,149,518,-1,519,167,515,-1,167,519,421,-1,152,503,502,-1,154,503,152,-1,385,153,469,-1,385,172,153,-1,173,406,236,-1,406,173,175,-1,162,470,155,-1,162,168,470,-1,464,157,520,-1,464,24,157,-1,450,196,420,-1,419,196,450,-1,97,419,451,-1,419,97,342,-1,454,181,191,-1,454,75,181,-1,239,244,103,-1,245,244,239,-1,115,401,114,-1,401,115,521,-1,522,523,398,-1,522,524,523,-1,397,230,525,-1,230,397,348,-1,486,446,447,-1,486,88,446,-1,246,402,404,-1,246,526,402,-1,361,527,490,-1,361,360,527,-1,235,414,212,-1,235,356,414,-1,356,528,414,-1,356,355,528,-1,227,234,225,-1,359,234,227,-1,529,411,237,-1,411,529,412,-1,530,401,524,-1,530,400,401,-1,527,531,532,-1,531,527,203,-1,391,530,409,-1,391,217,530,-1,531,398,523,-1,531,399,398,-1,354,533,248,-1,354,534,533,-1,393,227,226,-1,393,214,227,-1,111,219,108,-1,111,400,219,-1,357,413,412,-1,413,357,281,-1,392,214,393,-1,215,214,392,-1,414,394,211,-1,394,414,528,-1,205,405,216,-1,205,208,405,-1,412,358,357,-1,412,529,358,-1,232,84,353,-1,232,87,84,-1,490,532,439,-1,532,490,527,-1,404,350,396,-1,350,404,402,-1,488,475,448,-1,488,478,475,-1,110,212,112,-1,110,228,212,-1,522,231,409,-1,231,522,525,-1,535,536,537,-1,536,535,538,-1,413,223,537,-1,413,410,223,-1,491,102,101,-1,205,102,491,-1,411,537,536,-1,411,413,537,-1,396,348,397,-1,396,350,348,-1,130,14,390,-1,130,129,14,-1,180,370,188,-1,370,180,187,-1,463,539,325,-1,463,540,539,-1,541,34,270,-1,541,472,34,-1,301,300,304,-1,301,298,300,-1,271,305,272,-1,308,305,271,-1,383,166,178,-1,384,166,383,-1,542,303,543,-1,303,542,544,-1,502,163,152,-1,502,424,163,-1,157,287,520,-1,287,157,286,-1,176,519,137,-1,176,421,519,-1,436,520,287,-1,436,170,520,-1,174,422,471,-1,174,173,422,-1,276,340,275,-1,340,276,480,-1,59,64,459,-1,59,65,64,-1,482,58,328,-1,58,482,60,-1,418,545,534,-1,418,415,545,-1,262,93,263,-1,262,341,93,-1,162,21,168,-1,162,19,21,-1,386,147,145,-1,465,147,386,-1,519,512,509,-1,515,512,519,-1,504,424,502,-1,424,504,495,-1,438,497,501,-1,434,497,438,-1,432,131,132,-1,380,131,432,-1,288,141,251,-1,288,143,141,-1,516,432,430,-1,516,546,432,-1,547,291,380,-1,547,377,291,-1,376,377,299,-1,376,294,377,-1,546,134,547,-1,546,135,134,-1,543,295,542,-1,295,543,133,-1,273,306,376,-1,273,272,306,-1,544,468,466,-1,517,468,544,-1,127,119,121,-1,119,127,126,-1,117,124,123,-1,116,124,117,-1,302,10,375,-1,8,10,302,-1,292,312,293,-1,292,313,312,-1,318,309,374,-1,318,310,309,-1,548,282,185,-1,372,282,548,-1,282,372,319,-1,549,540,44,-1,539,540,549,-1,329,323,322,-1,329,326,323,-1,331,185,184,-1,372,185,331,-1,548,185,372,-1,334,325,324,-1,334,463,325,-1,550,44,540,-1,550,45,44,-1,337,332,335,-1,332,337,333,-1,541,45,550,-1,541,479,45,-1,52,280,371,-1,52,278,280,-1,68,387,69,-1,68,483,387,-1,482,327,457,-1,328,327,482,-1,266,58,69,-1,328,58,266,-1,99,338,366,-1,99,98,338,-1,420,27,450,-1,27,420,25,-1,72,455,73,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getrrib3_Geo_6_142_coordIndex_4()
		{
			int[] value = {455,72,367,-1,366,481,99,-1,366,365,481,-1,441,477,476,-1,441,443,477,-1,415,351,545,-1,352,351,415,-1,439,521,115,-1,439,532,521,-1,351,240,538,-1,351,241,240,-1,545,538,535,-1,545,351,538,-1,199,246,245,-1,199,526,246,-1,199,487,526,-1,199,198,487,-1,485,353,84,-1,353,485,354,-1,352,417,444,-1,352,415,417,-1,488,447,446,-1,488,448,447,-1,243,444,242,-1,243,352,444,-1,363,267,268,-1,363,551,267,-1,194,25,420,-1,29,25,194,-1,81,1,339,-1,81,83,1,-1,364,279,278,-1,364,458,279,-1,483,277,285,-1,483,68,277,-1,270,479,541,-1,270,343,479,-1,264,336,335,-1,264,263,336,-1,331,332,334,-1,331,330,332,-1,46,322,552,-1,46,329,322,-1,6,539,549,-1,3,539,6,-1,373,549,552,-1,373,6,549,-1,319,310,318,-1,319,320,310,-1,259,311,317,-1,311,259,256,-1,313,311,312,-1,311,313,315,-1,284,374,283,-1,284,318,374,-1,293,255,553,-1,293,312,255,-1,8,117,123,-1,117,8,302,-1,126,116,119,-1,126,124,116,-1,121,498,127,-1,121,493,498,-1,303,466,15,-1,303,544,466,-1,17,301,304,-1,301,17,118,-1,133,300,134,-1,133,543,300,-1,542,297,518,-1,297,542,295,-1,135,516,508,-1,546,516,135,-1,547,299,377,-1,299,547,134,-1,376,292,294,-1,306,292,376,-1,380,546,547,-1,432,546,380,-1,509,513,138,-1,509,511,513,-1,290,553,253,-1,293,553,290,-1,9,12,254,-1,13,12,9,-1,438,503,437,-1,438,501,503,-1,138,519,509,-1,519,138,137,-1,469,155,470,-1,469,153,155,-1,28,285,31,-1,28,483,285,-1,182,262,265,-1,74,262,182,-1,534,535,533,-1,534,545,535,-1,63,60,482,-1,60,63,62,-1,64,461,459,-1,64,369,461,-1,366,340,364,-1,366,338,340,-1,471,159,174,-1,471,160,159,-1,165,554,177,-1,554,165,555,-1,465,164,423,-1,164,465,179,-1,176,136,175,-1,137,136,176,-1,437,170,436,-1,170,437,171,-1,145,383,386,-1,145,151,383,-1,544,518,517,-1,544,542,518,-1,543,304,300,-1,303,304,543,-1,308,4,305,-1,5,4,308,-1,3,325,539,-1,3,321,325,-1,463,550,540,-1,463,462,550,-1,550,472,541,-1,550,462,472,-1,98,339,338,-1,98,81,339,-1,188,181,180,-1,191,181,188,-1,289,255,257,-1,553,255,289,-1,259,258,256,-1,259,261,258,-1,553,254,253,-1,553,289,254,-1,129,12,14,-1,129,252,12,-1,249,287,251,-1,249,436,287,-1,536,237,411,-1,237,536,238,-1,538,238,536,-1,238,538,240,-1,537,533,535,-1,537,223,533,-1,525,229,231,-1,229,525,230,-1,233,353,247,-1,233,232,353,-1,206,395,394,-1,395,206,489,-1,103,240,239,-1,103,238,240,-1,94,449,95,-1,94,346,449,-1,358,216,405,-1,529,216,358,-1,528,206,394,-1,528,207,206,-1,281,410,413,-1,281,224,410,-1,229,87,232,-1,87,229,89,-1,449,88,486,-1,88,449,85,-1,219,106,108,-1,106,219,218,-1,248,223,107,-1,248,533,223,-1,534,485,418,-1,354,485,534,-1,399,203,202,-1,399,531,203,-1,409,524,522,-1,409,530,524,-1,220,217,391,-1,220,218,217,-1,201,221,222,-1,201,360,221,-1,523,532,531,-1,523,521,532,-1,217,400,530,-1,217,219,400,-1,216,237,102,-1,237,216,529,-1,410,213,215,-1,224,213,410,-1,359,214,213,-1,359,227,214,-1,225,235,212,-1,234,235,225,-1,355,207,528,-1,355,209,207,-1,207,208,205,-1,208,207,209,-1,205,489,206,-1,205,491,489,-1,203,360,201,-1,360,203,527,-1,404,204,246,-1,204,404,202,-1,526,403,402,-1,526,487,403,-1,398,525,522,-1,525,398,397,-1,524,521,523,-1,524,401,521,-1,37,198,38,-1,198,37,441,-1,192,70,195,-1,192,71,70,-1,450,451,419,-1,450,66,451,-1,191,388,454,-1,191,190,388,-1,326,260,323,-1,326,370,260,-1,164,20,19,-1,20,164,179,-1,23,406,156,-1,23,236,406,-1,169,520,170,-1,169,464,520,-1,175,407,406,-1,407,175,136,-1,172,154,153,-1,172,171,154,-1,20,554,21,-1,177,554,20,-1,161,555,165,-1,555,161,158,-1,166,515,167,-1,166,384,515,-1,421,161,167,-1,161,421,159,-1,154,437,503,-1,154,171,437,-1,156,286,157,-1,156,408,286,-1,512,150,510,-1,512,148,150,-1,145,149,151,-1,145,144,149,-1,510,297,296,-1,510,150,297,-1,149,517,518,-1,149,144,517,-1,499,493,492,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=5 */
		private int[] getrrib3_Geo_6_142_coordIndex_5()
		{
			int[] value = {493,499,498,-1,378,142,379,-1,378,140,142,-1,500,382,128,-1,500,435,382,-1,433,141,140,-1,250,141,433,-1,513,507,514,-1,513,511,507,-1,430,514,516,-1,430,427,514,-1,426,138,513,-1,426,139,138,-1,511,296,507,-1,510,296,511,-1,133,508,295,-1,133,135,508,-1,131,252,129,-1,252,131,291,-1,431,130,379,-1,130,431,132,-1,142,505,506,-1,142,143,505,-1,492,504,499,-1,492,495,504,-1,499,501,497,-1,501,499,504,-1,500,127,498,-1,500,128,127,-1,124,125,122,-1,125,124,126,-1,496,465,423,-1,496,147,465,-1,468,494,467,-1,494,468,146,-1,492,496,495,-1,492,494,496,-1,493,120,467,-1,493,121,120,-1,119,16,18,-1,119,116,16,-1,491,490,489,-1,491,361,490,-1,204,222,244,-1,204,201,222,-1,410,104,223,-1,410,392,104,-1,100,81,98,-1,100,82,81,-1,94,451,78,-1,94,97,451,-1,41,269,268,-1,40,269,41,-1,345,474,92,-1,345,473,474,-1,488,403,478,-1,349,403,488,-1,477,551,363,-1,477,267,551,-1,267,477,443,-1,95,486,344,-1,95,449,486,-1,484,84,86,-1,485,84,484,-1,445,80,82,-1,445,79,80,-1,484,79,416,-1,484,77,79,-1,327,279,457,-1,327,280,279,-1,60,65,59,-1,60,62,65,-1,99,54,56,-1,481,54,99,-1,481,49,54,-1,43,49,481,-1,480,364,340,-1,480,458,364,-1,552,44,46,-1,552,549,44,-1,479,47,45,-1,479,53,47,-1,48,443,442,-1,267,443,48,-1,478,487,476,-1,487,478,403,-1,475,363,473,-1,477,363,475,-1,33,474,362,-1,33,35,474,-1,337,34,472,-1,34,337,36,-1,76,195,70,-1,195,76,453,-1,21,555,158,-1,21,554,555,-1,168,471,470,-1,168,160,471,-1,15,120,18,-1,466,120,15,-1,283,10,7,-1,283,374,10,-1,8,13,9,-1,8,123,13,-1,316,552,322,-1,552,316,373,-1,2,83,67,-1,2,1,83,-1};
			return value;
		}

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

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

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

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getrrib4_Geo_6_147_coordIndex_4()
		{
			int[] value = {379,357,380,-1,379,381,357,-1,301,356,357,-1,301,300,356,-1,265,9,21,-1,265,12,9,-1,7,284,8,-1,7,185,284,-1,285,40,175,-1,285,41,40,-1,297,1,296,-1,2,1,297,-1};
			return value;
		}

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

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

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getrrib5_Geo_6_152_coordIndex_3()
		{
			int[] value = {256,317,318,-1,255,348,316,-1,348,255,254,-1,79,396,304,-1,79,81,396,-1,385,63,60,-1,63,385,396,-1,56,309,59,-1,56,310,309,-1,360,276,296,-1,360,249,276,-1,65,358,206,-1,67,358,65,-1,359,66,252,-1,359,64,66,-1,203,368,250,-1,203,202,368,-1,249,141,276,-1,141,249,248,-1,328,157,208,-1,154,157,328,-1,280,383,279,-1,280,126,383,-1,253,209,243,-1,253,205,209,-1,145,363,397,-1,145,82,363,-1,251,243,245,-1,251,253,243,-1,148,68,273,-1,148,149,68,-1,146,120,397,-1,146,119,120,-1,108,146,397,-1,108,110,146,-1,86,380,85,-1,86,375,380,-1,378,89,376,-1,378,105,89,-1,223,111,221,-1,223,377,111,-1,100,284,101,-1,284,100,285,-1,382,374,282,-1,374,382,381,-1,281,370,107,-1,294,370,281,-1,282,379,382,-1,106,379,282,-1,235,281,237,-1,235,294,281,-1,101,373,287,-1,373,101,284,-1,287,233,101,-1,233,287,289,-1,381,375,374,-1,375,381,380,-1,291,229,92,-1,292,229,291,-1,83,221,111,-1,83,365,221,-1,377,220,376,-1,377,223,220,-1,96,87,371,-1,87,96,88,-1,224,365,367,-1,365,224,221,-1,228,236,227,-1,228,234,236,-1,109,366,215,-1,366,109,277,-1,384,367,362,-1,367,384,224,-1,397,117,145,-1,117,397,120,-1,10,250,368,-1,11,250,10,-1,279,364,369,-1,279,383,364,-1,125,224,384,-1,125,222,224,-1,208,247,209,-1,208,157,247,-1,167,139,140,-1,167,166,139,-1,66,205,253,-1,66,65,205,-1,207,298,299,-1,206,298,207,-1,398,67,64,-1,398,58,67,-1,357,206,358,-1,298,206,357,-1,360,203,249,-1,360,201,203,-1,310,198,199,-1,56,198,310,-1,308,355,307,-1,308,311,355,-1,396,303,63,-1,303,396,81,-1,305,396,385,-1,305,304,396,-1,79,318,80,-1,79,256,318,-1,353,385,361,-1,353,305,385,-1,316,184,255,-1,316,183,184,-1,312,195,55,-1,312,315,195,-1,192,185,188,-1,192,182,185,-1,187,269,317,-1,187,186,269,-1,313,44,314,-1,184,44,313,-1,190,182,192,-1,190,181,182,-1,268,185,179,-1,268,186,185,-1,43,263,176,-1,43,270,263,-1,264,179,180,-1,179,264,268,-1,327,175,329,-1,45,175,327,-1,392,5,174,-1,392,3,5,-1,47,395,260,-1,47,46,395,-1,394,261,393,-1,261,394,262,-1,173,392,174,-1,173,350,392,-1,389,395,171,-1,395,389,393,-1,390,349,394,-1,390,352,349,-1,20,266,391,-1,20,22,266,-1,171,325,389,-1,271,325,171,-1,344,352,390,-1,344,343,352,-1,41,399,40,-1,399,41,332,-1,36,336,335,-1,347,336,36,-1,346,331,340,-1,346,387,331,-1,345,400,386,-1,319,400,345,-1,18,126,280,-1,18,17,126,-1,274,217,127,-1,274,218,217,-1,167,135,0,-1,136,135,167,-1,213,158,147,-1,213,159,158,-1,397,278,108,-1,397,363,278,-1,273,12,148,-1,273,153,12,-1,116,152,151,-1,115,152,116,-1,11,248,250,-1,11,143,248,-1,15,115,118,-1,15,152,115,-1,82,144,8,-1,82,145,144,-1,151,71,116,-1,151,72,71,-1,156,135,137,-1,156,1,135,-1,165,156,212,-1,165,1,156,-1,384,126,125,-1,384,383,126,-1,169,68,70,-1,68,169,273,-1,211,69,68,-1,155,69,211,-1,149,122,210,-1,149,121,122,-1,120,115,117,-1,118,115,120,-1,240,381,382,-1,381,240,216,-1,85,215,366,-1,85,380,215,-1,371,107,370,-1,371,87,107,-1,242,378,219,-1,379,378,242,-1,112,377,231,-1,111,377,112,-1,375,227,236,-1,227,375,86,-1,230,91,232,-1,230,238,91,-1,286,97,283,-1,97,286,94,-1,373,103,293,-1,373,104,103,-1,372,112,232,-1,372,113,112,-1,233,234,228,-1,234,233,289,-1,285,290,286,-1,292,290,285,-1,371,97,96,-1,102,97,371,-1,293,370,294,-1,293,103,370,-1,113,83,111,-1,113,84,83,-1,9,244,7,-1,244,10,245,-1,244,9,10,-1,86,226,227,-1,84,226,86,-1,366,83,85,-1,366,365,83,-1,278,367,277,-1,278,362,367,-1,364,82,369,-1,364,363,82,-1,99,372,93,-1,99,226,372,-1,202,251,368,-1,252,251,202,-1,78,303,81,-1,200,303,78,-1,51,76,181,-1,76,51,50,-1,354,355,361,-1,354,307,355,-1,360,302,62,-1,360,296,302,-1,356,64,359,-1,64,356,398,-1,358,306,357,-1,358,57,306,-1,200,398,356,-1,200,198,398,-1,198,58,398,-1,198,56,58,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getrrib5_Geo_6_152_coordIndex_4()
		{
			int[] value = {62,354,60,-1,354,62,302,-1,197,353,196,-1,353,197,189,-1,57,308,306,-1,59,308,57,-1,270,42,269,-1,42,270,43,-1,352,350,349,-1,351,350,352,-1,348,78,80,-1,78,348,199,-1,172,48,267,-1,172,46,48,-1,45,176,175,-1,43,176,45,-1,40,400,319,-1,400,40,399,-1,39,337,37,-1,39,338,337,-1,38,347,36,-1,347,38,341,-1,26,340,324,-1,346,340,26,-1,345,320,319,-1,345,23,320,-1,325,28,344,-1,29,28,325,-1,33,170,35,-1,33,342,170,-1,326,37,337,-1,37,326,342,-1,38,32,341,-1,38,33,32,-1,24,324,21,-1,26,324,24,-1,320,25,322,-1,320,23,25,-1,340,333,339,-1,333,340,331,-1,338,30,337,-1,338,41,30,-1,387,332,331,-1,387,399,332,-1,386,399,387,-1,386,400,399,-1,6,391,266,-1,391,6,3,-1};
			return value;
		}

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

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getrrib6_Geo_6_157_coordIndex_2()
		{
			int[] value = {162,325,324,-1,326,327,328,-1,293,43,19,-1,293,44,43,-1,229,329,330,-1,229,136,329,-1,331,332,231,-1,231,23,331,-1,146,239,147,-1,223,320,333,-1,221,70,138,-1,221,220,70,-1,197,196,334,-1,206,208,195,-1,208,192,195,-1,41,40,274,-1,5,4,60,-1,60,215,5,-1,85,36,65,-1,169,335,170,-1,187,189,211,-1,189,336,211,-1,212,337,338,-1,338,172,212,-1,339,334,340,-1,339,190,334,-1,190,197,334,-1,200,199,213,-1,213,236,200,-1,195,191,175,-1,195,194,191,-1,185,211,201,-1,194,14,191,-1,237,198,200,-1,237,341,198,-1,191,14,180,-1,14,178,180,-1,179,342,181,-1,181,178,179,-1,176,343,344,-1,344,10,176,-1,236,213,174,-1,174,180,236,-1,345,346,171,-1,30,6,5,-1,51,165,296,-1,296,49,51,-1,163,284,347,-1,163,166,284,-1,341,292,198,-1,341,286,292,-1,198,292,201,-1,348,349,350,-1,350,351,348,-1,118,321,47,-1,47,352,118,-1,298,73,301,-1,298,84,73,-1,70,137,138,-1,70,69,137,-1,136,229,134,-1,229,330,240,-1,330,353,240,-1,224,137,69,-1,69,222,224,-1,354,226,143,-1,226,144,143,-1,148,136,133,-1,148,329,136,-1,73,75,301,-1,75,300,301,-1,320,355,356,-1,320,319,355,-1,228,125,227,-1,245,318,357,-1,245,247,318,-1,117,358,359,-1,117,28,358,-1,121,106,27,-1,27,29,121,-1,153,106,121,-1,121,119,153,-1,96,100,99,-1,96,317,100,-1,109,352,110,-1,92,360,39,-1,92,91,360,-1,317,96,93,-1,93,90,317,-1,227,89,144,-1,81,250,82,-1,250,361,82,-1,362,83,80,-1,362,68,83,-1,75,264,305,-1,75,74,264,-1,355,362,356,-1,250,81,251,-1,34,271,216,-1,56,48,156,-1,156,59,56,-1,363,297,47,-1,47,46,363,-1,49,297,363,-1,363,50,49,-1,166,165,51,-1,166,163,165,-1,114,54,155,-1,42,50,40,-1,42,350,50,-1,297,110,47,-1,110,352,47,-1,275,363,46,-1,216,35,34,-1,216,31,35,-1,33,65,36,-1,54,269,55,-1,239,230,229,-1,229,240,239,-1,20,25,21,-1,20,26,25,-1,23,22,331,-1,19,43,16,-1,57,43,58,-1,57,16,43,-1,9,235,364,-1,2,365,0,-1,2,8,365,-1,366,7,2,-1,7,366,367,-1,222,72,319,-1,222,69,72,-1,4,61,60,-1,4,368,61,-1,62,214,55,-1,62,17,214,-1,324,158,160,-1,158,324,159,-1,156,114,155,-1,114,156,112,-1,42,351,350,-1,42,369,351,-1,370,157,159,-1,370,294,157,-1,281,233,282,-1,233,281,371,-1,303,264,260,-1,305,264,303,-1,257,262,308,-1,257,259,262,-1,319,66,355,-1,319,72,66,-1,68,355,66,-1,68,362,355,-1,360,37,39,-1,360,372,37,-1,373,374,375,-1,373,302,374,-1,47,115,45,-1,47,321,115,-1,108,119,109,-1,153,119,108,-1,310,359,358,-1,359,310,255,-1,71,376,67,-1,71,377,376,-1,376,357,318,-1,357,376,378,-1,379,148,221,-1,379,329,148,-1,142,239,143,-1,142,230,239,-1,145,380,381,-1,145,382,380,-1,383,331,384,-1,383,332,331,-1,225,21,224,-1,225,22,21,-1,354,239,146,-1,354,143,239,-1,231,353,140,-1,231,385,353,-1,140,330,139,-1,353,330,140,-1,384,386,383,-1,333,386,384,-1,129,386,242,-1,387,386,129,-1,150,323,388,-1,323,150,322,-1,389,356,362,-1,356,389,241,-1,378,124,357,-1,122,124,378,-1,272,280,277,-1,272,111,280,-1,299,84,298,-1,299,390,84,-1,348,370,391,-1,370,348,351,-1,284,341,347,-1,284,286,341,-1,335,345,392,-1,335,169,345,-1,344,12,10,-1,392,12,344,-1,2,207,338,-1,2,1,207,-1,14,193,15,-1,14,194,193,-1,13,176,179,-1,176,13,343,-1,342,364,326,-1,364,342,177,-1,168,290,346,-1,168,202,290,-1,237,347,341,-1,393,347,237,-1,182,196,170,-1,182,217,196,-1,202,167,203,-1,167,202,168,-1,189,394,336,-1,189,395,394,-1,396,212,219,-1,337,212,396,-1,209,334,210,-1,209,340,334,-1,211,218,201,-1,397,211,336,-1,211,397,218,-1,340,398,399,-1,398,340,209,-1,399,339,340,-1,339,399,0,-1,158,61,368,-1,158,276,61,-1,215,62,295,-1,60,62,215,-1,35,63,33,-1,63,35,400,-1,0,395,339,-1,0,365,395,-1,207,3,205,-1,1,3,207,-1,381,387,401,-1,387,381,380,-1,320,241,242,-1,320,356,241,-1,382,147,385,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getrrib6_Geo_6_157_coordIndex_3()
		{
			int[] value = {382,145,147,-1,26,379,24,-1,26,139,379,-1,343,183,344,-1,183,343,184,-1,44,42,41,-1,42,44,369,-1,279,402,403,-1,404,402,279,-1,278,296,165,-1,278,280,296,-1,164,287,405,-1,164,393,287,-1,327,232,402,-1,232,327,326,-1,328,289,288,-1,328,327,289,-1,182,335,183,-1,182,170,335,-1,118,109,119,-1,352,109,118,-1,406,220,149,-1,377,220,406,-1,387,128,401,-1,129,128,387,-1,88,323,86,-1,323,88,123,-1,72,67,66,-1,67,72,71,-1,39,126,243,-1,38,126,39,-1,407,357,124,-1,357,407,245,-1,93,408,91,-1,408,93,409,-1,81,410,251,-1,81,246,410,-1,96,409,93,-1,409,96,95,-1,252,76,78,-1,316,76,252,-1,314,77,79,-1,253,77,314,-1,254,100,317,-1,254,313,100,-1,257,316,258,-1,76,316,257,-1,314,312,313,-1,314,307,312,-1,316,311,258,-1,316,309,311,-1,411,307,261,-1,411,312,307,-1,358,311,310,-1,358,412,311,-1,413,375,411,-1,413,373,375,-1,412,306,256,-1,414,306,412,-1,302,359,374,-1,302,117,359,-1,304,414,415,-1,306,414,304,-1,266,373,413,-1,373,266,104,-1,305,300,75,-1,305,304,300,-1,105,116,103,-1,116,105,120,-1,415,300,304,-1,415,132,300,-1,65,267,74,-1,267,65,64,-1,54,113,64,-1,54,114,113,-1,299,416,417,-1,416,299,273,-1,58,41,274,-1,41,58,43,-1,293,369,44,-1,294,369,293,-1,404,278,405,-1,404,279,278,-1,418,391,419,-1,418,348,391,-1,326,235,232,-1,235,326,364,-1,285,418,291,-1,285,420,418,-1,171,325,162,-1,171,346,325,-1,238,180,288,-1,238,236,180,-1,217,334,196,-1,210,334,217,-1,213,219,212,-1,213,199,219,-1,346,169,168,-1,169,346,345,-1,182,15,193,-1,184,15,182,-1,285,204,283,-1,204,285,291,-1,405,289,404,-1,405,287,289,-1,418,290,291,-1,290,418,419,-1,420,284,166,-1,285,284,420,-1,324,419,391,-1,419,324,325,-1,166,349,420,-1,166,52,349,-1,402,234,403,-1,402,232,234,-1,403,417,416,-1,417,403,234,-1,350,52,50,-1,52,350,349,-1,293,18,276,-1,19,18,293,-1,277,273,272,-1,277,416,273,-1,281,216,271,-1,30,216,281,-1,301,270,298,-1,270,301,131,-1,64,268,267,-1,268,64,113,-1,132,27,107,-1,132,415,27,-1,102,266,268,-1,104,266,102,-1,263,266,413,-1,263,265,266,-1,27,414,28,-1,414,27,415,-1,412,28,414,-1,28,412,358,-1,256,303,259,-1,306,303,256,-1,413,261,263,-1,413,411,261,-1,255,374,359,-1,255,101,374,-1,412,258,311,-1,412,256,258,-1,98,411,375,-1,411,98,312,-1,410,95,315,-1,410,409,95,-1,361,253,248,-1,361,77,253,-1,315,251,410,-1,251,315,252,-1,246,409,410,-1,408,409,246,-1,82,248,152,-1,361,248,82,-1,407,91,408,-1,407,360,91,-1,372,407,124,-1,372,360,407,-1,389,243,126,-1,389,151,243,-1,122,406,388,-1,406,122,378,-1,228,401,128,-1,228,226,401,-1,71,220,377,-1,71,70,220,-1,348,420,349,-1,418,420,348,-1,339,189,190,-1,339,395,189,-1,9,177,10,-1,364,177,9,-1,238,393,237,-1,238,287,393,-1,165,405,278,-1,164,405,165,-1,404,327,402,-1,289,327,404,-1,279,416,277,-1,279,403,416,-1,234,371,417,-1,234,233,371,-1,9,6,282,-1,9,11,6,-1,385,240,353,-1,147,240,385,-1,354,401,226,-1,381,401,354,-1,333,225,223,-1,384,225,333,-1,322,142,141,-1,142,322,135,-1,205,398,209,-1,205,3,398,-1,367,421,7,-1,396,421,367,-1,400,31,32,-1,400,35,31,-1,295,32,215,-1,295,400,32,-1,400,269,63,-1,295,269,400,-1,395,8,394,-1,395,365,8,-1,367,337,396,-1,337,367,366,-1,366,338,337,-1,338,366,2,-1,7,394,8,-1,421,394,7,-1,397,421,218,-1,336,421,397,-1,421,336,394,-1,206,209,208,-1,206,205,209,-1,421,219,218,-1,396,219,421,-1,185,292,188,-1,292,185,201,-1,203,197,190,-1,167,197,203,-1,192,182,193,-1,217,182,192,-1,190,186,203,-1,187,186,190,-1,393,163,347,-1,164,163,393,-1,346,419,325,-1,346,290,419,-1,179,177,342,-1,177,179,176,-1,343,15,184,-1,343,13,15,-1,338,173,172,-1,338,207,173,-1,11,161,6,-1,161,11,162,-1,392,171,12,-1,392,345,171,-1,161,158,368,-1,161,160,158,-1,159,391,370,-1,159,324,391,-1,214,59,53,-1,59,214,57,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getrrib6_Geo_6_157_coordIndex_4()
		{
			int[] value = {390,417,371,-1,417,390,299,-1,108,272,154,-1,108,111,272,-1,124,88,372,-1,88,124,123,-1,67,318,68,-1,376,318,67,-1,241,126,127,-1,241,389,126,-1,362,151,389,-1,362,80,151,-1,388,149,150,-1,149,388,406,-1,322,133,135,-1,322,150,133,-1,387,383,386,-1,380,383,387,-1,242,333,320,-1,242,386,333,-1,379,330,329,-1,379,139,330,-1,332,385,231,-1,385,332,382,-1,24,221,138,-1,24,379,221,-1,21,137,224,-1,21,25,137,-1,22,384,331,-1,384,22,225,-1,382,383,380,-1,382,332,383,-1,146,381,354,-1,146,145,381,-1,135,230,142,-1,135,134,230,-1,128,125,228,-1,128,127,125,-1,377,378,376,-1,378,377,406,-1,123,388,323,-1,123,122,388,-1,121,116,120,-1,121,29,116,-1,255,97,94,-1,255,310,97,-1,268,115,102,-1,113,115,268,-1,110,280,111,-1,296,280,110,-1,321,102,115,-1,321,105,102,-1,104,302,373,-1,104,103,302,-1,375,101,98,-1,375,374,101,-1,372,87,37,-1,372,88,87,-1,371,271,390,-1,371,281,271,-1,361,78,77,-1,78,361,250,-1,308,76,257,-1,308,79,76,-1,259,260,262,-1,259,303,260,-1,85,390,271,-1,390,85,84,-1,282,235,9,-1,282,233,235,-1,369,370,351,-1,369,294,370,-1,275,50,363,-1,275,40,50,-1,112,48,45,-1,48,112,156,-1,245,408,246,-1,245,407,408,-1,6,368,4,-1,161,368,6,-1,16,214,17,-1,16,57,214,-1,342,328,181,-1,326,328,342,-1,392,183,335,-1,344,183,392,-1,399,3,0,-1,3,399,398,-1,181,288,180,-1,288,181,328,-1};
			return value;
		}

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

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

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getrrib7_Geo_6_162_coordIndex_3()
		{
			int[] value = {194,188,187,-1,194,99,188,-1,193,114,117,-1,310,114,193,-1,218,106,220,-1,218,109,106,-1,325,250,249,-1,325,300,250,-1,115,213,116,-1,302,213,115,-1,273,173,121,-1,273,174,173,-1,225,323,226,-1,225,242,323,-1,304,300,325,-1,306,300,304,-1,163,299,165,-1,323,299,163,-1,169,322,305,-1,322,169,166,-1,118,62,128,-1,104,62,118,-1,247,322,320,-1,247,248,322,-1,168,319,166,-1,319,168,321,-1,318,321,236,-1,321,318,319,-1,320,71,247,-1,320,160,71,-1,318,156,160,-1,318,155,156,-1,124,151,125,-1,266,151,124,-1,147,142,141,-1,147,148,142,-1,139,149,152,-1,139,140,149,-1,146,230,148,-1,146,269,230,-1,142,137,144,-1,142,135,137,-1,267,133,139,-1,267,74,133,-1,140,131,270,-1,140,129,131,-1,134,129,133,-1,134,132,129,-1,317,268,292,-1,268,317,231,-1,75,51,50,-1,51,75,73,-1,49,233,47,-1,49,234,233,-1,164,162,161,-1,164,265,162,-1,304,324,307,-1,325,324,304,-1,264,296,260,-1,296,264,78,-1,181,312,20,-1,181,182,312,-1,315,180,19,-1,179,180,315,-1,176,316,314,-1,176,178,316,-1,172,19,18,-1,172,315,19,-1,314,175,216,-1,175,314,316,-1,170,313,26,-1,170,312,313,-1,212,116,113,-1,212,117,116,-1,113,184,212,-1,184,113,110,-1,309,241,308,-1,224,241,309,-1,310,309,114,-1,310,243,309,-1,302,308,303,-1,302,115,308,-1,246,274,109,-1,246,192,274,-1,217,221,167,-1,217,219,221,-1,307,305,304,-1,307,169,305,-1,220,301,219,-1,303,301,220,-1,311,300,306,-1,311,245,300,-1,299,306,298,-1,306,299,311,-1,256,210,209,-1,257,210,256,-1,31,93,27,-1,30,93,31,-1,261,297,296,-1,295,297,261,-1,291,277,295,-1,291,22,277,-1,203,281,204,-1,288,281,203,-1,205,264,252,-1,264,205,83,-1,77,82,81,-1,77,76,82,-1,151,229,153,-1,154,229,151,-1,49,73,234,-1,49,51,73,-1,50,134,75,-1,50,57,134,-1,159,146,145,-1,146,159,228,-1,40,46,60,-1,43,46,40,-1,34,52,35,-1,34,53,52,-1,48,35,52,-1,35,48,271,-1,293,48,44,-1,271,48,293,-1,43,44,46,-1,293,44,43,-1,43,37,293,-1,43,42,37,-1,274,33,32,-1,192,33,274,-1,198,24,92,-1,198,25,24,-1,23,215,21,-1,23,294,215,-1,20,215,18,-1,20,276,215,-1,85,291,262,-1,85,87,291,-1,81,282,290,-1,81,79,282,-1,257,101,210,-1,257,4,101,-1,88,14,13,-1,288,14,88,-1,90,258,259,-1,90,7,258,-1,195,286,194,-1,195,284,286,-1};
			return value;
		}

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

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

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getrrib8_Geo_6_167_coordIndex_3()
		{
			int[] value = {116,258,276,-1,258,116,115,-1,0,111,113,-1,2,111,0,-1,233,1,234,-1,1,233,254,-1,166,273,167,-1,273,166,276,-1,118,272,274,-1,120,272,118,-1,193,53,182,-1,193,246,53,-1,93,4,67,-1,4,93,5,-1,100,198,107,-1,71,198,100,-1,278,52,106,-1,52,278,267,-1,171,196,3,-1,196,171,12,-1,269,253,270,-1,178,253,269,-1,199,98,105,-1,98,199,96,-1,279,149,151,-1,25,149,279,-1,257,281,256,-1,122,281,257,-1,134,73,80,-1,73,134,221,-1,238,66,69,-1,238,105,66,-1,65,173,172,-1,64,173,65,-1,260,228,265,-1,227,228,260,-1,225,36,63,-1,37,36,225,-1,83,236,219,-1,83,268,236,-1,72,47,46,-1,47,72,183,-1,271,267,278,-1,271,266,267,-1,12,24,196,-1,12,60,24,-1,62,42,39,-1,62,215,42,-1,265,11,237,-1,265,228,11,-1,23,44,43,-1,23,22,44,-1,33,261,175,-1,33,32,261,-1,172,67,65,-1,67,172,93,-1,20,249,248,-1,20,19,249,-1,259,226,18,-1,259,15,226,-1,14,37,225,-1,14,58,37,-1,117,277,258,-1,117,119,277,-1};
			return value;
		}

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

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

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getrrib9_Geo_6_172_coordIndex_3()
		{
			int[] value = {202,264,203,-1,202,321,264,-1,198,202,204,-1,198,201,202,-1,154,300,155,-1,154,299,300,-1,253,265,290,-1,253,200,265,-1,301,155,300,-1,301,150,155,-1,176,197,252,-1,319,197,176,-1,303,150,301,-1,151,150,303,-1,153,315,320,-1,148,315,153,-1,175,184,317,-1,175,174,184,-1,316,304,319,-1,32,304,316,-1,315,191,317,-1,193,191,315,-1,316,172,258,-1,316,177,172,-1,297,146,318,-1,147,146,297,-1,149,192,193,-1,192,149,160,-1,171,191,190,-1,171,170,191,-1,190,262,171,-1,262,190,314,-1,259,20,292,-1,259,21,20,-1,254,312,314,-1,312,254,313,-1,188,292,20,-1,17,292,188,-1,313,187,312,-1,187,313,311,-1,169,116,168,-1,115,116,169,-1,189,17,188,-1,18,17,189,-1,311,126,187,-1,126,311,123,-1,177,170,172,-1,175,170,177,-1,169,186,257,-1,167,186,169,-1,163,157,164,-1,163,159,157,-1,153,146,148,-1,153,151,146,-1,161,144,160,-1,144,161,28,-1,145,309,143,-1,309,145,118,-1,89,142,228,-1,89,88,142,-1,121,135,134,-1,121,273,135,-1,136,124,133,-1,124,136,128,-1,126,275,186,-1,126,125,275,-1,132,122,277,-1,122,132,120,-1,1,308,112,-1,308,1,0,-1,26,109,248,-1,26,25,109,-1,224,13,294,-1,224,15,13,-1,79,220,82,-1,79,245,220,-1,223,307,222,-1,281,307,223,-1,77,15,224,-1,77,16,15,-1,285,81,91,-1,284,81,285,-1,6,234,5,-1,6,232,234,-1,293,84,227,-1,12,84,293,-1,81,306,79,-1,306,81,284,-1,278,102,107,-1,278,101,102,-1,104,99,105,-1,104,227,99,-1,71,75,73,-1,71,97,75,-1,95,72,263,-1,95,97,72,-1,261,281,223,-1,282,281,261,-1,305,158,180,-1,156,158,305,-1,180,269,305,-1,269,180,270,-1,85,237,86,-1,237,85,48,-1,235,180,181,-1,180,235,270,-1,236,55,66,-1,55,236,56,-1,48,87,57,-1,48,85,87,-1,51,287,49,-1,287,51,233,-1,295,50,288,-1,50,295,52,-1,182,54,181,-1,60,54,182,-1,183,194,195,-1,194,183,253,-1,72,207,249,-1,70,207,72,-1,298,154,267,-1,154,298,299,-1,32,302,304,-1,32,34,302,-1,35,259,30,-1,33,259,35,-1,34,303,302,-1,34,318,303,-1,300,291,301,-1,39,291,300,-1,298,38,299,-1,298,280,38,-1,318,35,297,-1,34,35,318,-1,23,258,172,-1,21,258,23,-1,241,310,243,-1,310,241,228,-1,6,86,233,-1,4,86,6,-1};
			return value;
		}

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

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

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getrrib10_Geo_6_177_coordIndex_3()
		{
			int[] value = {273,2,240,-1,273,161,2,-1,4,272,274,-1,272,4,204,-1,108,271,107,-1,108,270,271,-1,269,242,241,-1,269,268,242,-1,166,172,160,-1,170,172,166,-1,159,108,106,-1,267,108,159,-1,179,265,266,-1,179,178,265,-1,264,140,186,-1,264,206,140,-1,291,240,168,-1,291,273,240,-1,260,262,261,-1,259,262,260,-1,263,177,257,-1,176,177,263,-1,205,256,258,-1,205,254,256,-1,168,255,291,-1,255,168,167,-1,144,281,218,-1,142,281,144,-1,87,98,88,-1,87,97,98,-1,224,75,74,-1,224,223,75,-1,194,104,250,-1,104,194,213,-1,220,80,221,-1,81,80,220,-1,249,71,193,-1,71,249,73,-1,192,70,72,-1,192,131,70,-1,60,30,58,-1,31,30,60,-1,231,118,120,-1,231,234,118,-1,196,38,195,-1,38,196,33,-1,50,114,247,-1,52,114,50,-1,115,244,236,-1,115,42,244,-1,46,200,35,-1,46,48,200,-1,201,109,34,-1,201,246,109,-1,198,234,252,-1,118,234,198,-1,244,43,53,-1,42,43,244,-1,230,251,237,-1,251,230,228,-1,123,229,124,-1,229,123,199,-1,78,119,117,-1,250,119,78,-1,36,33,32,-1,38,33,36,-1,189,127,213,-1,189,134,127,-1,28,126,132,-1,28,31,126,-1,249,24,27,-1,248,24,249,-1,30,25,58,-1,25,30,26,-1,200,245,201,-1,200,247,245,-1,235,232,246,-1,232,235,236,-1,244,243,233,-1,243,244,53,-1,90,152,239,-1,89,152,90,-1};
			return value;
		}

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

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

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getrrib11_Geo_6_182_coordIndex_3()
		{
			int[] value = {216,212,213,-1,216,214,212,-1,225,4,249,-1,5,4,225,-1,224,0,5,-1,224,220,0,-1,223,201,203,-1,141,201,223,-1,217,140,221,-1,217,219,140,-1,4,218,222,-1,4,2,218,-1,220,3,0,-1,220,215,3,-1,209,219,217,-1,209,211,219,-1,2,210,218,-1,2,1,210,-1,216,3,215,-1,216,207,3,-1,214,204,212,-1,204,214,202,-1,213,209,205,-1,209,213,211,-1,210,206,208,-1,1,206,210,-1,213,207,216,-1,213,205,207,-1};
			return value;
		}

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

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

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

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getrcartend_Geo_6_192_coordIndex_2()
		{
			int[] value = {395,396,393,-1,397,398,399,-1,399,400,397,-1,401,402,403,-1,401,404,402,-1,405,406,407,-1,405,408,406,-1,409,390,372,-1,410,388,378,-1,378,376,410,-1,411,378,389,-1,412,413,414,-1,412,415,413,-1,416,417,418,-1,419,420,421,-1,421,422,419,-1,423,424,425,-1,426,427,428,-1,426,429,427,-1,430,431,432,-1,430,433,431,-1,430,434,428,-1,430,435,434,-1,436,437,416,-1,437,438,416,-1,439,414,440,-1,439,412,414,-1,422,435,441,-1,441,442,422,-1,443,425,424,-1,444,440,445,-1,440,417,445,-1,446,447,448,-1,446,449,447,-1,450,448,451,-1,448,447,451,-1,452,453,454,-1,454,455,452,-1,456,457,458,-1,456,459,457,-1,460,461,462,-1,460,463,461,-1,457,446,448,-1,448,461,457,-1,464,452,465,-1,464,466,452,-1,467,468,469,-1,467,470,468,-1,471,472,473,-1,471,474,472,-1,475,476,477,-1,475,478,476,-1,479,480,481,-1,479,482,480,-1,483,484,485,-1,486,487,488,-1,489,490,478,-1,490,476,478,-1,491,492,493,-1,491,494,492,-1,495,496,497,-1,495,491,496,-1,498,490,499,-1,498,476,490,-1,500,472,474,-1,474,501,500,-1,470,502,468,-1,470,503,502,-1,482,504,480,-1,482,505,504,-1,506,507,508,-1,505,509,506,-1,505,510,509,-1,511,512,513,-1,499,492,494,-1,496,514,515,-1,496,516,514,-1,499,490,492,-1,502,517,501,-1,502,518,517,-1,518,519,520,-1,516,521,520,-1,520,514,516,-1,516,493,513,-1,513,521,516,-1,522,523,524,-1,525,526,527,-1,528,488,487,-1,487,529,528,-1,530,531,532,-1,532,533,530,-1,534,535,536,-1,534,537,535,-1,538,539,540,-1,540,541,538,-1,542,543,544,-1,544,545,542,-1,546,547,530,-1,530,533,546,-1,548,549,550,-1,550,540,548,-1,546,551,552,-1,488,553,554,-1,554,486,488,-1,555,523,522,-1,556,534,557,-1,552,544,547,-1,558,550,549,-1,549,545,558,-1,559,560,561,-1,552,547,546,-1,552,551,562,-1,540,550,541,-1,550,563,541,-1,563,538,541,-1,563,529,538,-1,549,542,545,-1,549,537,542,-1,564,538,565,-1,564,539,538,-1,526,534,527,-1,534,556,527,-1,555,522,532,-1,513,492,511,-1,492,513,493,-1,506,509,507,-1,505,506,504,-1,468,501,474,-1,468,502,501,-1,472,489,478,-1,472,500,489,-1,497,515,566,-1,497,496,515,-1,567,568,569,-1,569,570,567,-1,571,510,572,-1,571,573,510,-1,564,574,575,-1,536,557,534,-1,576,482,479,-1,479,577,576,-1,469,474,471,-1,469,468,474,-1,477,498,578,-1,477,476,498,-1,579,566,580,-1,579,497,566,-1,581,570,582,-1,581,567,570,-1,583,572,584,-1,583,571,572,-1,585,576,577,-1,585,586,576,-1,587,446,457,-1,457,459,587,-1,588,589,590,-1,590,591,588,-1,592,593,589,-1,589,588,592,-1,453,466,594,-1,453,452,466,-1,595,592,588,-1,588,596,595,-1,454,453,456,-1,453,459,456,-1,465,452,455,-1,455,597,465,-1,593,598,589,-1,593,599,598,-1,587,449,446,-1,587,600,449,-1,463,596,601,-1,463,460,596,-1,413,418,417,-1,440,414,417,-1,424,426,443,-1,602,373,603,-1,373,374,603,-1,375,433,376,-1,375,431,433,-1,444,439,440,-1,444,604,439,-1,434,421,443,-1,421,425,443,-1,410,429,605,-1,410,427,429,-1,415,606,413,-1,606,418,413,-1,428,433,430,-1,428,427,433,-1,429,426,424,-1,421,420,425,-1,420,423,425,-1,413,417,414,-1,390,392,372,-1,409,411,390,-1,411,389,390,-1,401,403,607,-1,607,608,401,-1,609,404,610,-1,609,402,404,-1,406,408,611,-1,611,612,406,-1,613,612,614,-1,613,406,612,-1,408,401,611,-1,408,404,401,-1,615,616,388,-1,388,617,615,-1,388,616,389,-1,392,374,372,-1,392,437,374,-1,618,602,603,-1,619,598,620,-1,619,621,598,-1,622,621,619,-1,622,623,621,-1,378,411,624,-1,624,377,378,-1,625,409,372,-1,372,371,625,-1,367,370,365,-1,354,368,369,-1,354,357,368,-1,362,364,365,-1,361,360,349,-1,349,350,361,-1,357,358,359,-1,626,343,627,-1,626,344,343,-1,363,351,628,-1,363,352,351,-1,363,347,349,-1,363,628,347,-1,333,332,629,-1,339,304,630,-1,630,341,339,-1,631,632,319,-1,632,633,319,-1,634,338,635,-1,338,335,635,-1,322,321,318,-1,318,316,322,-1,314,313,636,-1,313,629,636,-1,332,636,629,-1,637,341,630,-1,638,304,301,-1,638,630,304,-1,303,302,300,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getrcartend_Geo_6_192_coordIndex_3()
		{
			int[] value = {300,297,303,-1,299,298,296,-1,296,293,299,-1,295,632,639,-1,295,294,632,-1,640,641,626,-1,626,642,640,-1,278,282,643,-1,279,278,290,-1,288,285,284,-1,281,643,282,-1,281,268,643,-1,287,286,284,-1,274,272,285,-1,272,283,285,-1,277,282,278,-1,292,277,279,-1,292,280,277,-1,268,644,269,-1,268,281,644,-1,289,264,274,-1,264,645,267,-1,258,261,254,-1,254,256,257,-1,254,263,255,-1,254,261,260,-1,247,246,251,-1,251,245,247,-1,238,246,236,-1,238,249,246,-1,259,241,240,-1,646,645,647,-1,236,648,237,-1,242,649,650,-1,242,241,649,-1,651,238,235,-1,651,248,238,-1,652,653,224,-1,653,654,224,-1,655,656,216,-1,656,218,216,-1,230,221,227,-1,230,219,221,-1,228,224,223,-1,228,652,224,-1,657,233,656,-1,233,658,656,-1,217,218,659,-1,218,660,659,-1,226,661,662,-1,661,663,662,-1,185,183,182,-1,210,198,664,-1,198,192,664,-1,664,208,186,-1,151,665,152,-1,201,152,170,-1,163,209,666,-1,184,196,197,-1,184,182,196,-1,198,210,199,-1,208,169,149,-1,149,148,208,-1,667,153,152,-1,665,203,152,-1,203,179,202,-1,179,176,202,-1,668,669,206,-1,206,670,668,-1,199,197,195,-1,206,201,670,-1,201,200,670,-1,152,206,669,-1,195,193,192,-1,192,198,195,-1,671,193,196,-1,671,191,193,-1,664,187,210,-1,184,162,185,-1,162,160,185,-1,664,186,187,-1,176,150,672,-1,176,178,150,-1,673,149,168,-1,673,672,149,-1,672,150,149,-1,674,675,676,-1,190,189,668,-1,668,670,190,-1,155,154,677,-1,666,205,163,-1,678,679,675,-1,680,681,153,-1,681,151,153,-1,682,676,680,-1,676,675,680,-1,152,669,667,-1,173,175,177,-1,143,141,683,-1,138,134,140,-1,140,142,138,-1,141,144,128,-1,141,145,683,-1,142,141,129,-1,142,129,138,-1,129,125,138,-1,133,130,136,-1,136,137,133,-1,131,684,132,-1,684,685,132,-1,135,134,138,-1,138,139,135,-1,128,144,685,-1,685,126,128,-1,113,111,123,-1,111,116,123,-1,111,114,116,-1,121,120,119,-1,123,686,113,-1,110,122,687,-1,108,107,686,-1,686,123,108,-1,105,688,104,-1,99,100,104,-1,94,104,688,-1,98,104,96,-1,101,104,100,-1,103,86,105,-1,103,85,86,-1,92,78,100,-1,100,99,92,-1,88,87,689,-1,689,95,88,-1,80,83,82,-1,80,79,83,-1,70,690,66,-1,68,66,77,-1,66,690,77,-1,63,691,74,-1,74,71,63,-1,64,67,62,-1,64,65,67,-1,67,68,691,-1,68,76,691,-1,692,60,693,-1,60,61,693,-1,58,694,48,-1,58,60,694,-1,58,57,59,-1,57,695,59,-1,57,56,695,-1,56,54,695,-1,55,696,53,-1,696,697,53,-1,698,699,700,-1,699,701,700,-1,692,693,701,-1,701,699,692,-1,694,702,49,-1,48,694,49,-1,51,46,45,-1,14,37,1,-1,37,2,1,-1,10,703,42,-1,704,705,35,-1,35,33,704,-1,11,23,25,-1,23,27,25,-1,8,10,42,-1,706,40,42,-1,42,43,706,-1,30,22,28,-1,22,12,28,-1,15,18,705,-1,705,704,15,-1,9,41,24,-1,9,8,41,-1,42,703,36,-1,36,43,42,-1,0,6,5,-1,5,1,0,-1,2,38,3,-1,707,708,654,-1,708,707,213,-1,678,173,679,-1,174,173,678,-1,24,709,25,-1,24,41,709,-1,36,16,15,-1,36,703,16,-1,32,19,33,-1,32,710,19,-1,38,711,712,-1,38,39,711,-1,0,31,28,-1,0,3,31,-1,36,704,21,-1,36,15,704,-1,706,37,14,-1,706,713,37,-1,40,14,13,-1,14,40,706,-1,714,712,711,-1,712,714,715,-1,9,716,7,-1,9,717,716,-1,43,713,706,-1,713,43,20,-1,47,702,718,-1,702,47,49,-1,699,702,692,-1,718,702,699,-1,698,718,699,-1,52,718,698,-1,51,698,696,-1,51,52,698,-1,696,46,51,-1,46,696,55,-1,692,694,60,-1,702,694,692,-1,73,719,71,-1,720,719,73,-1,721,722,723,-1,722,721,724,-1,725,726,727,-1,72,726,725,-1,64,69,65,-1,719,69,64,-1,691,62,67,-1,62,691,63,-1,728,725,722,-1,729,725,728,-1,69,720,724,-1,720,69,719,-1,97,689,730,-1,95,689,97,-1,88,105,86,-1,105,88,688,-1,731,121,732,-1,121,731,122,-1,687,731,733,-1,687,122,731,-1,119,686,107,-1,686,119,120,-1,111,687,114,-1,111,110,687,-1,145,130,683,-1,145,136,130,-1,144,132,685,-1,144,143,132,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getrcartend_Geo_6_192_coordIndex_4()
		{
			int[] value = {669,682,667,-1,682,669,668,-1,674,189,188,-1,674,676,189,-1,679,680,675,-1,679,681,680,-1,157,734,164,-1,165,734,157,-1,180,679,173,-1,180,681,679,-1,158,735,183,-1,736,735,158,-1,181,196,182,-1,181,671,196,-1,670,191,671,-1,670,200,191,-1,680,667,682,-1,667,680,153,-1,203,180,179,-1,665,180,203,-1,207,176,672,-1,202,176,207,-1,152,737,204,-1,152,207,737,-1,199,209,163,-1,209,199,210,-1,192,208,664,-1,192,194,208,-1,188,183,735,-1,188,181,183,-1,205,159,161,-1,205,738,159,-1,739,214,213,-1,740,214,739,-1,740,741,214,-1,226,742,661,-1,225,742,226,-1,708,212,743,-1,213,212,708,-1,744,659,660,-1,659,744,745,-1,658,218,656,-1,658,660,218,-1,233,746,231,-1,746,233,657,-1,657,655,747,-1,657,656,655,-1,663,746,748,-1,663,661,746,-1,228,749,229,-1,228,223,749,-1,222,750,220,-1,222,751,750,-1,752,660,658,-1,752,744,660,-1,654,225,224,-1,654,708,225,-1,214,234,211,-1,214,232,234,-1,753,750,754,-1,753,653,750,-1,739,751,745,-1,739,755,751,-1,741,232,214,-1,741,752,232,-1,247,244,756,-1,247,245,244,-1,649,651,650,-1,649,248,651,-1,757,240,239,-1,757,253,240,-1,259,649,241,-1,259,262,649,-1,255,252,251,-1,255,263,252,-1,256,251,246,-1,251,256,255,-1,758,272,273,-1,272,758,291,-1,280,644,281,-1,644,280,759,-1,287,268,271,-1,287,643,268,-1,284,290,278,-1,284,283,290,-1,278,287,284,-1,278,643,287,-1,639,631,760,-1,639,632,631,-1,761,630,638,-1,761,637,630,-1,762,763,764,-1,762,765,763,-1,766,767,768,-1,767,766,769,-1,770,771,772,-1,770,773,771,-1,774,313,775,-1,774,629,313,-1,776,775,777,-1,774,775,776,-1,327,298,300,-1,298,327,635,-1,634,329,328,-1,634,326,329,-1,770,318,773,-1,770,317,318,-1,315,629,774,-1,315,333,629,-1,633,336,342,-1,336,633,337,-1,776,322,316,-1,776,330,322,-1,320,636,778,-1,314,636,320,-1,324,304,339,-1,324,302,304,-1,331,307,306,-1,307,331,334,-1,337,296,335,-1,337,294,296,-1,323,637,765,-1,637,323,341,-1,779,325,340,-1,325,779,780,-1,634,777,338,-1,328,777,634,-1,311,322,330,-1,311,310,322,-1,348,369,350,-1,348,781,369,-1,627,358,353,-1,627,366,358,-1,352,370,345,-1,352,362,370,-1,624,409,625,-1,624,411,409,-1,622,379,623,-1,380,379,622,-1,782,600,783,-1,782,449,600,-1,381,784,379,-1,785,784,381,-1,786,451,787,-1,786,788,451,-1,789,449,782,-1,447,449,789,-1,617,790,400,-1,617,605,790,-1,444,396,607,-1,444,445,396,-1,392,438,437,-1,392,393,438,-1,394,616,615,-1,391,616,394,-1,608,399,398,-1,608,395,399,-1,608,611,401,-1,608,398,611,-1,393,391,394,-1,393,392,391,-1,407,613,791,-1,406,613,407,-1,402,604,403,-1,402,383,604,-1,611,397,612,-1,611,398,397,-1,606,603,436,-1,618,603,606,-1,614,419,613,-1,419,614,420,-1,374,436,603,-1,374,437,436,-1,415,618,606,-1,385,618,415,-1,443,428,434,-1,428,443,426,-1,614,423,420,-1,614,792,423,-1,791,419,793,-1,791,613,419,-1,438,417,416,-1,445,417,438,-1,424,605,429,-1,424,790,605,-1,460,595,596,-1,460,794,595,-1,463,597,458,-1,601,597,463,-1,600,594,784,-1,594,600,587,-1,466,623,379,-1,464,623,466,-1,590,598,621,-1,589,598,590,-1,593,788,599,-1,593,795,788,-1,794,592,595,-1,794,796,592,-1,591,596,588,-1,601,596,591,-1,594,459,453,-1,594,587,459,-1,462,795,796,-1,450,795,462,-1,465,590,464,-1,590,465,591,-1,796,593,592,-1,795,593,796,-1,584,586,585,-1,584,572,586,-1,571,582,570,-1,582,571,583,-1,566,581,580,-1,566,567,581,-1,495,579,797,-1,495,497,579,-1,498,798,578,-1,498,799,798,-1,800,483,801,-1,484,483,800,-1,482,586,505,-1,576,586,482,-1,569,571,570,-1,569,573,571,-1,515,567,566,-1,515,568,567,-1,802,801,483,-1,802,803,801,-1,506,802,504,-1,802,506,508,-1,804,805,806,-1,804,807,805,-1,569,808,573,-1,569,809,808,-1,519,809,810,-1,519,804,809,-1,807,502,503,-1,502,807,518,-1,573,509,510,-1,573,808,509,-1,508,806,805,-1,508,507,806,-1,532,560,559,-1,532,811,560,-1,522,811,532,-1,524,811,522,-1,553,812,559,-1,813,812,553,-1,536,539,564,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=5 */
		private int[] getrcartend_Geo_6_192_coordIndex_5()
		{
			int[] value = {535,539,536,-1,814,542,526,-1,543,542,814,-1,551,533,812,-1,551,546,533,-1,813,815,562,-1,813,528,815,-1,535,540,539,-1,540,535,548,-1,563,558,815,-1,563,550,558,-1,814,525,816,-1,814,526,525,-1,558,562,815,-1,558,552,562,-1,531,816,817,-1,814,816,531,-1,554,559,561,-1,559,554,553,-1,548,537,549,-1,535,537,548,-1,547,543,530,-1,544,543,547,-1,815,529,563,-1,815,528,529,-1,562,812,813,-1,551,812,562,-1,544,558,545,-1,544,552,558,-1,565,529,487,-1,565,538,529,-1,530,814,531,-1,530,543,814,-1,537,526,542,-1,537,534,526,-1,528,553,488,-1,528,813,553,-1,812,532,559,-1,812,533,532,-1,531,555,532,-1,531,817,555,-1,521,512,517,-1,512,521,513,-1,806,509,808,-1,509,806,507,-1,520,810,514,-1,810,520,519,-1,803,508,805,-1,803,802,508,-1,501,512,500,-1,501,517,512,-1,493,496,491,-1,493,516,496,-1,514,568,515,-1,514,810,568,-1,511,500,512,-1,511,489,500,-1,517,520,521,-1,517,518,520,-1,518,804,519,-1,518,807,804,-1,568,809,569,-1,810,809,568,-1,804,808,809,-1,808,804,806,-1,503,805,807,-1,805,503,803,-1,572,505,586,-1,572,510,505,-1,483,504,802,-1,480,504,483,-1,470,803,503,-1,801,803,470,-1,499,799,498,-1,494,799,499,-1,495,494,491,-1,495,799,494,-1,489,492,490,-1,511,492,489,-1,485,480,483,-1,481,480,485,-1,472,475,473,-1,472,478,475,-1,801,467,800,-1,801,470,467,-1,799,797,798,-1,799,495,797,-1,462,448,450,-1,462,461,448,-1,597,591,465,-1,601,591,597,-1,794,462,796,-1,460,462,794,-1,461,458,457,-1,463,458,461,-1,795,451,788,-1,451,795,450,-1,464,621,623,-1,590,621,464,-1,466,784,594,-1,466,379,784,-1,455,458,597,-1,454,458,455,-1,454,456,458,-1,792,424,423,-1,790,424,792,-1,432,435,430,-1,435,432,441,-1,412,382,818,-1,382,412,439,-1,383,439,604,-1,383,382,439,-1,422,434,435,-1,422,421,434,-1,427,376,433,-1,410,376,427,-1,793,422,442,-1,793,419,422,-1,436,418,606,-1,436,416,418,-1,818,415,412,-1,818,385,415,-1,402,384,383,-1,402,609,384,-1,792,612,397,-1,612,792,614,-1,608,396,395,-1,608,607,396,-1,400,615,617,-1,399,615,400,-1,444,403,604,-1,607,403,444,-1,395,615,399,-1,394,615,395,-1,391,389,616,-1,391,390,389,-1,445,393,396,-1,438,393,445,-1,397,790,792,-1,397,400,790,-1,605,388,410,-1,388,605,617,-1,610,408,405,-1,610,404,408,-1,451,789,787,-1,451,447,789,-1,620,599,819,-1,620,598,599,-1,783,784,785,-1,783,600,784,-1,788,819,599,-1,819,788,786,-1,366,359,358,-1,359,366,365,-1,360,365,364,-1,360,359,365,-1,360,363,349,-1,360,364,363,-1,370,343,345,-1,370,367,343,-1,367,627,343,-1,367,366,627,-1,369,356,354,-1,781,356,369,-1,627,355,626,-1,353,355,627,-1,316,774,776,-1,315,774,316,-1,775,338,777,-1,775,336,338,-1,778,306,766,-1,778,331,306,-1,298,335,296,-1,635,335,298,-1,766,320,778,-1,320,766,768,-1,321,773,318,-1,321,762,773,-1,309,323,310,-1,323,309,341,-1,633,312,319,-1,342,312,633,-1,778,332,331,-1,778,636,332,-1,632,337,633,-1,337,632,294,-1,313,336,775,-1,313,342,336,-1,317,333,315,-1,317,334,333,-1,779,309,311,-1,779,340,309,-1,780,326,325,-1,326,780,329,-1,300,324,327,-1,300,302,324,-1,765,321,323,-1,765,762,321,-1,326,635,327,-1,635,326,634,-1,307,317,770,-1,334,317,307,-1,768,319,320,-1,768,631,319,-1,780,311,329,-1,780,779,311,-1,777,330,776,-1,777,328,330,-1,307,772,308,-1,307,770,772,-1,306,769,766,-1,769,306,305,-1,764,773,762,-1,771,773,764,-1,763,637,761,-1,763,765,637,-1,760,768,767,-1,760,631,768,-1,291,283,272,-1,291,290,283,-1,288,275,289,-1,275,288,286,-1,289,276,647,-1,289,275,276,-1,292,758,820,-1,758,292,291,-1,647,264,289,-1,647,645,264,-1,280,820,759,-1,292,820,280,-1,252,260,259,-1,252,263,260,-1,261,250,262,-1,261,258,250,-1,249,256,246,-1,249,257,256,-1,253,259,240,-1,253,252,259,-1,262,248,649,-1,262,250,248,-1,757,245,253,-1,243,245,757,-1,236,756,648,-1,236,247,756,-1,743,211,234,-1,212,211,743,-1,744,741,740,-1,744,752,741,-1,751,754,750,-1,755,754,751,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=6 */
		private int[] getrcartend_Geo_6_192_coordIndex_6()
		{
			int[] value = {753,654,653,-1,654,753,707,-1,742,234,231,-1,742,743,234,-1,752,233,232,-1,233,752,658,-1,745,222,659,-1,745,751,222,-1,652,750,653,-1,220,750,652,-1,223,662,749,-1,223,226,662,-1,748,657,747,-1,748,746,657,-1,231,661,742,-1,661,231,746,-1,659,219,217,-1,659,222,219,-1,221,652,228,-1,221,220,652,-1,740,745,744,-1,745,740,739,-1,225,743,742,-1,708,743,225,-1,213,755,739,-1,707,755,213,-1,707,754,755,-1,707,753,754,-1,666,167,166,-1,666,209,167,-1,163,184,199,-1,184,163,162,-1,672,737,207,-1,204,672,673,-1,204,737,672,-1,171,673,168,-1,673,171,204,-1,665,681,180,-1,151,681,665,-1,194,200,172,-1,194,191,200,-1,190,671,181,-1,190,670,671,-1,186,734,165,-1,821,734,186,-1,821,208,148,-1,821,186,208,-1,157,738,166,-1,157,156,738,-1,166,205,666,-1,738,205,166,-1,160,161,159,-1,160,162,161,-1,736,155,677,-1,736,158,155,-1,738,155,159,-1,155,738,156,-1,676,668,189,-1,676,682,668,-1,132,683,130,-1,143,683,132,-1,145,134,136,-1,145,140,134,-1,126,684,147,-1,126,685,684,-1,120,113,686,-1,120,112,113,-1,732,119,118,-1,119,732,121,-1,108,115,109,-1,108,116,115,-1,117,687,733,-1,687,117,114,-1,102,80,82,-1,101,80,102,-1,98,97,90,-1,96,97,98,-1,95,688,88,-1,688,95,94,-1,81,92,91,-1,92,81,78,-1,90,730,93,-1,90,97,730,-1,86,84,89,-1,86,85,84,-1,724,728,722,-1,728,724,720,-1,729,72,725,-1,73,72,729,-1,822,691,76,-1,822,74,691,-1,72,822,726,-1,74,822,72,-1,723,725,727,-1,725,723,722,-1,70,724,721,-1,724,70,69,-1,729,720,73,-1,729,728,720,-1,71,64,63,-1,71,719,64,-1,718,45,47,-1,718,52,45,-1,56,46,55,-1,56,44,46,-1,696,700,697,-1,696,698,700,-1,47,44,50,-1,45,44,47,-1,709,5,4,-1,709,13,5,-1,20,710,713,-1,20,19,710,-1,31,715,29,-1,715,31,712,-1,16,716,17,-1,7,716,16,-1,717,24,26,-1,717,9,24,-1,711,34,714,-1,34,711,32,-1,40,709,41,-1,40,13,709,-1,713,39,37,-1,710,39,713,-1,25,4,11,-1,25,709,4,-1,12,0,28,-1,12,6,0,-1,712,3,38,-1,31,3,712,-1,711,710,32,-1,711,39,710,-1,33,21,704,-1,33,19,21,-1,703,7,16,-1,703,10,7,-1};
			return value;
		}

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

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getrscapula_Geo_6_197_coordIndex_2()
		{
			int[] value = {449,450,451,-1,451,452,449,-1,453,454,455,-1,455,456,453,-1,185,457,458,-1,457,459,458,-1,460,461,462,-1,463,464,28,-1,465,14,466,-1,465,467,14,-1,467,468,14,-1,10,9,299,-1,14,300,11,-1,14,468,300,-1,255,249,253,-1,249,469,253,-1,88,107,121,-1,88,87,107,-1,470,471,472,-1,470,473,471,-1,474,475,476,-1,477,151,153,-1,478,479,480,-1,479,391,480,-1,481,455,482,-1,388,390,348,-1,347,483,348,-1,483,388,348,-1,484,485,486,-1,485,487,486,-1,488,453,489,-1,489,490,488,-1,491,38,492,-1,491,36,38,-1,493,494,495,-1,496,495,31,-1,496,497,495,-1,498,499,363,-1,499,361,363,-1,500,497,496,-1,500,372,497,-1,501,502,393,-1,393,395,501,-1,373,370,188,-1,187,503,190,-1,187,381,503,-1,504,505,506,-1,507,508,509,-1,509,510,507,-1,45,46,509,-1,46,511,509,-1,7,6,437,-1,6,237,437,-1,512,513,429,-1,514,515,516,-1,514,517,515,-1,518,178,519,-1,178,520,519,-1,521,335,522,-1,523,518,519,-1,524,525,526,-1,524,336,525,-1,527,335,521,-1,527,351,335,-1,528,351,529,-1,528,352,351,-1,530,191,531,-1,531,532,530,-1,341,533,340,-1,534,160,535,-1,534,536,160,-1,404,537,405,-1,404,538,537,-1,162,182,539,-1,539,404,162,-1,540,541,542,-1,540,538,541,-1,543,544,542,-1,50,52,545,-1,540,195,194,-1,540,546,195,-1,547,548,549,-1,548,360,549,-1,402,360,359,-1,402,550,360,-1,402,401,551,-1,365,552,553,-1,403,508,401,-1,554,553,551,-1,364,499,555,-1,556,557,558,-1,559,560,561,-1,560,562,561,-1,563,564,565,-1,564,352,565,-1,114,566,112,-1,114,567,566,-1,568,569,570,-1,319,108,571,-1,319,106,108,-1,119,320,572,-1,573,574,575,-1,576,577,573,-1,573,578,576,-1,579,329,580,-1,580,581,579,-1,380,582,583,-1,321,69,322,-1,321,71,69,-1,584,64,585,-1,584,70,64,-1,586,487,587,-1,376,378,399,-1,349,588,589,-1,589,347,349,-1,415,414,590,-1,590,591,415,-1,67,417,61,-1,417,416,61,-1,397,417,66,-1,467,592,593,-1,467,594,592,-1,465,466,595,-1,466,596,595,-1,597,8,598,-1,597,12,8,-1,599,16,15,-1,599,600,16,-1,601,602,15,-1,602,599,15,-1,603,239,238,-1,603,604,239,-1,600,605,16,-1,606,238,607,-1,238,608,607,-1,608,609,610,-1,610,607,608,-1,611,610,609,-1,611,612,610,-1,613,614,615,-1,615,614,616,-1,616,617,615,-1,615,618,619,-1,618,620,619,-1,621,204,203,-1,203,622,621,-1,204,201,202,-1,204,623,201,-1,624,625,626,-1,627,628,629,-1,627,206,628,-1,210,214,211,-1,210,630,214,-1,631,632,633,-1,116,118,634,-1,118,635,634,-1,636,428,637,-1,636,427,428,-1,638,635,126,-1,635,118,126,-1,126,639,638,-1,640,641,234,-1,216,218,642,-1,643,644,645,-1,643,646,644,-1,647,648,1,-1,1,643,647,-1,649,650,196,-1,196,198,649,-1,651,652,218,-1,651,653,652,-1,1,648,2,-1,654,436,438,-1,438,260,654,-1,655,431,258,-1,656,657,658,-1,658,659,656,-1,660,661,662,-1,659,663,664,-1,659,658,663,-1,660,175,172,-1,660,409,175,-1,661,150,665,-1,661,148,150,-1,666,667,281,-1,667,668,281,-1,669,296,298,-1,669,670,296,-1,671,672,673,-1,674,675,676,-1,674,677,675,-1,239,678,679,-1,239,604,678,-1,680,676,681,-1,681,682,680,-1,682,278,683,-1,682,684,278,-1,685,686,687,-1,239,686,688,-1,688,240,239,-1,689,690,618,-1,618,691,689,-1,203,692,622,-1,692,693,622,-1,694,695,671,-1,671,678,694,-1,696,244,243,-1,243,697,696,-1,247,696,698,-1,247,244,696,-1,699,700,701,-1,702,156,158,-1,702,248,156,-1,703,704,705,-1,704,706,705,-1,22,707,708,-1,709,710,711,-1,709,712,710,-1,713,710,708,-1,713,714,710,-1,266,265,715,-1,715,716,266,-1,713,265,267,-1,713,717,265,-1,718,719,267,-1,267,720,718,-1,721,722,723,-1,721,27,722,-1,718,720,722,-1,722,724,718,-1,725,302,726,-1,726,727,725,-1,669,672,308,-1,672,307,308,-1,314,316,728,-1,728,303,314,-1,310,729,311,-1,310,245,729,-1,318,730,728,-1,318,731,730,-1,729,732,311,-1,732,733,734,-1,34,735,35,-1,736,33,737,-1,736,34,33,-1,296,670,738,-1,738,295,296,-1,593,739,740,-1,741,742,739,-1,739,743,741,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getrscapula_Geo_6_197_coordIndex_3()
		{
			int[] value = {743,744,741,-1,745,746,747,-1,747,748,745,-1,285,749,750,-1,750,283,285,-1,592,751,593,-1,751,743,593,-1,752,753,751,-1,753,754,751,-1,755,747,756,-1,755,748,747,-1,138,283,750,-1,757,750,758,-1,758,759,757,-1,94,93,760,-1,760,761,94,-1,762,270,763,-1,763,764,762,-1,131,765,129,-1,131,766,765,-1,767,768,769,-1,767,770,768,-1,136,771,769,-1,769,772,136,-1,773,134,774,-1,773,135,134,-1,775,776,774,-1,775,624,776,-1,777,778,133,-1,133,779,777,-1,777,32,780,-1,777,33,32,-1,781,782,224,-1,224,226,781,-1,783,784,91,-1,59,784,783,-1,783,292,59,-1,775,774,134,-1,134,785,775,-1,135,786,787,-1,135,773,786,-1,763,788,764,-1,763,789,788,-1,790,791,792,-1,790,793,791,-1,759,794,795,-1,795,757,759,-1,752,796,797,-1,759,758,755,-1,755,798,759,-1,139,750,757,-1,758,750,749,-1,285,745,749,-1,745,748,749,-1,741,744,747,-1,747,746,741,-1,739,593,743,-1,741,746,742,-1,746,799,742,-1,285,284,745,-1,593,740,800,-1,800,468,593,-1,300,468,800,-1,32,35,223,-1,737,801,736,-1,801,802,736,-1,736,735,34,-1,736,803,735,-1,803,736,804,-1,736,802,804,-1,768,805,806,-1,768,770,805,-1,309,305,312,-1,309,807,305,-1,308,727,669,-1,727,670,669,-1,720,723,722,-1,720,267,266,-1,808,809,448,-1,808,716,809,-1,723,810,721,-1,21,23,457,-1,23,459,457,-1,712,811,812,-1,712,709,811,-1,23,706,704,-1,704,459,23,-1,177,247,813,-1,177,156,247,-1,156,248,247,-1,814,700,454,-1,700,451,701,-1,700,814,451,-1,247,698,452,-1,452,813,247,-1,242,241,696,-1,696,697,242,-1,245,694,246,-1,245,310,694,-1,694,604,246,-1,694,678,604,-1,693,776,624,-1,624,622,693,-1,692,690,693,-1,690,815,693,-1,618,690,692,-1,692,620,618,-1,689,816,817,-1,689,691,816,-1,686,816,688,-1,686,685,816,-1,679,686,239,-1,679,687,686,-1,687,674,676,-1,676,680,687,-1,672,669,677,-1,669,298,677,-1,666,282,818,-1,666,281,282,-1,241,174,63,-1,241,149,174,-1,661,660,148,-1,660,172,148,-1,658,665,150,-1,150,663,658,-1,819,820,821,-1,819,662,820,-1,258,431,430,-1,430,259,258,-1,260,438,258,-1,438,655,258,-1,654,434,436,-1,654,822,434,-1,653,261,263,-1,653,823,261,-1,440,439,651,-1,651,824,440,-1,825,198,197,-1,648,647,650,-1,650,649,648,-1,826,196,650,-1,650,827,826,-1,828,641,829,-1,830,638,639,-1,831,73,832,-1,231,229,640,-1,833,834,633,-1,833,835,834,-1,638,830,836,-1,836,635,638,-1,635,836,79,-1,79,634,635,-1,230,837,838,-1,230,231,837,-1,839,206,840,-1,839,628,206,-1,75,116,634,-1,75,77,116,-1,626,625,841,-1,841,228,626,-1,621,622,624,-1,624,626,621,-1,842,843,200,-1,629,844,627,-1,629,845,844,-1,846,847,848,-1,846,849,847,-1,850,844,851,-1,850,842,844,-1,852,202,843,-1,852,203,202,-1,852,620,692,-1,692,203,852,-1,853,854,855,-1,853,856,854,-1,613,619,857,-1,613,615,619,-1,618,617,691,-1,618,615,617,-1,420,601,15,-1,15,421,420,-1,238,606,603,-1,606,858,603,-1,599,858,600,-1,12,859,13,-1,12,597,859,-1,417,67,66,-1,860,861,397,-1,397,398,860,-1,154,862,863,-1,863,864,154,-1,865,866,867,-1,866,475,867,-1,154,152,476,-1,476,862,154,-1,868,588,349,-1,67,419,585,-1,585,64,67,-1,321,375,65,-1,65,71,321,-1,70,584,68,-1,869,558,870,-1,871,330,872,-1,873,576,578,-1,873,874,576,-1,573,875,578,-1,573,582,875,-1,354,320,319,-1,319,571,876,-1,876,353,319,-1,110,877,878,-1,110,879,877,-1,880,879,566,-1,881,882,883,-1,881,884,882,-1,567,885,566,-1,567,886,885,-1,887,333,350,-1,887,888,333,-1,560,889,562,-1,889,570,562,-1,890,881,568,-1,890,891,881,-1,557,882,884,-1,557,556,882,-1,892,893,557,-1,355,365,894,-1,400,895,403,-1,400,896,895,-1,897,898,891,-1,891,890,897,-1,898,546,544,-1,545,195,897,-1,897,899,545,-1,545,52,195,-1,537,540,194,-1,537,538,540,-1,50,405,53,-1,50,900,405,-1,536,901,902,-1,536,534,901,-1,903,528,338,-1,528,529,338,-1,527,521,525,-1,567,904,886,-1,904,905,886,-1,342,334,906,-1,907,433,435,-1,435,908,907,-1,7,907,909,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getrscapula_Geo_6_197_coordIndex_4()
		{
			int[] value = {910,911,912,-1,911,512,429,-1,45,509,508,-1,508,913,45,-1,914,373,915,-1,916,371,373,-1,188,387,189,-1,370,372,385,-1,372,500,385,-1,501,500,496,-1,496,917,501,-1,362,361,918,-1,495,494,31,-1,494,29,31,-1,494,919,29,-1,919,920,29,-1,491,492,165,-1,492,166,165,-1,486,456,484,-1,346,348,921,-1,348,390,921,-1,474,922,923,-1,923,924,474,-1,450,925,926,-1,450,418,925,-1,927,928,929,-1,929,930,927,-1,927,473,470,-1,927,931,473,-1,932,299,300,-1,299,304,301,-1,593,468,467,-1,169,933,934,-1,934,170,169,-1,459,704,458,-1,704,935,458,-1,454,453,488,-1,926,699,701,-1,449,452,62,-1,808,448,167,-1,448,164,167,-1,446,447,936,-1,936,937,446,-1,937,383,183,-1,937,936,383,-1,938,91,939,-1,91,784,939,-1,434,437,436,-1,434,433,437,-1,823,940,180,-1,180,261,823,-1,430,513,74,-1,430,429,513,-1,72,425,427,-1,72,941,425,-1,85,428,426,-1,426,942,85,-1,81,257,82,-1,408,943,944,-1,944,945,408,-1,925,418,397,-1,397,861,925,-1,432,655,236,-1,432,431,655,-1,659,410,656,-1,659,411,410,-1,946,493,947,-1,545,948,949,-1,949,50,545,-1,950,371,916,-1,190,503,915,-1,189,951,187,-1,456,486,489,-1,489,453,456,-1,589,860,398,-1,398,378,589,-1,492,38,96,-1,952,704,703,-1,952,935,704,-1,155,157,462,-1,325,327,953,-1,953,954,325,-1,387,384,955,-1,917,502,501,-1,917,186,502,-1,366,956,957,-1,957,377,366,-1,378,958,589,-1,396,374,399,-1,396,375,374,-1,499,498,555,-1,579,876,872,-1,579,353,876,-1,959,331,960,-1,582,573,575,-1,510,961,505,-1,506,962,918,-1,918,361,506,-1,356,355,963,-1,47,42,964,-1,47,43,42,-1,965,966,967,-1,965,543,966,-1,554,551,504,-1,551,507,504,-1,894,963,355,-1,539,966,541,-1,871,968,874,-1,871,969,968,-1,970,969,971,-1,970,968,969,-1,873,875,972,-1,873,578,875,-1,870,557,893,-1,870,558,557,-1,327,349,346,-1,973,909,974,-1,906,345,342,-1,906,905,345,-1,975,257,81,-1,975,251,257,-1,337,193,976,-1,337,523,193,-1,977,523,337,-1,386,501,395,-1,958,377,587,-1,958,378,377,-1,978,328,325,-1,19,406,20,-1,19,407,406,-1,805,979,806,-1,980,981,982,-1,728,316,318,-1,304,289,302,-1,289,726,302,-1,793,595,596,-1,596,791,793,-1,297,675,298,-1,675,677,298,-1,936,24,383,-1,280,983,273,-1,280,295,983,-1,984,290,287,-1,297,279,668,-1,279,281,668,-1,985,275,786,-1,275,277,786,-1,282,273,272,-1,282,280,273,-1,271,274,272,-1,788,789,766,-1,179,435,262,-1,634,79,75,-1,85,84,637,-1,637,428,85,-1,105,986,987,-1,423,256,988,-1,243,246,604,-1,604,603,243,-1,602,147,599,-1,147,242,599,-1,251,975,76,-1,975,77,76,-1,989,990,991,-1,213,838,210,-1,213,992,838,-1,161,993,159,-1,161,444,993,-1,226,994,841,-1,994,995,996,-1,995,997,996,-1,228,992,213,-1,228,841,992,-1,998,222,999,-1,998,220,222,-1,216,215,219,-1,216,208,215,-1,1000,211,214,-1,214,207,1000,-1,1001,1002,209,-1,1003,1002,631,-1,631,840,1003,-1,1004,1000,205,-1,205,199,1004,-1,537,53,405,-1,528,565,352,-1,933,394,952,-1,1005,460,1006,-1,1006,1007,1005,-1,1005,461,460,-1,165,164,446,-1,531,520,940,-1,705,1008,155,-1,1008,158,155,-1,1009,1010,1011,-1,591,868,326,-1,585,419,944,-1,419,945,944,-1,168,394,933,-1,933,169,168,-1,186,458,502,-1,186,185,458,-1,171,1005,1007,-1,171,170,1005,-1,167,95,1012,-1,167,166,95,-1,161,536,443,-1,161,160,536,-1,940,520,180,-1,520,178,180,-1,173,945,419,-1,173,175,945,-1,172,174,149,-1,149,148,172,-1,601,663,602,-1,601,664,663,-1,445,1013,1014,-1,1014,1015,445,-1,1016,997,995,-1,787,136,135,-1,787,771,136,-1,636,830,1017,-1,84,252,78,-1,84,83,252,-1,1018,1019,1020,-1,1020,77,1018,-1,1021,987,469,-1,77,117,116,-1,77,1020,117,-1,104,97,100,-1,104,103,97,-1,141,140,1022,-1,143,142,229,-1,139,138,750,-1,1023,1018,77,-1,975,1023,77,-1,78,79,836,-1,72,427,636,-1,1024,646,0,-1,61,449,62,-1,61,416,449,-1,1025,1026,1027,-1,1026,1028,1027,-1,1027,1029,1025,-1,59,939,784,-1,59,58,939,-1,162,405,900,-1,52,51,195,-1,49,43,47,-1,44,39,1030,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=5 */
		private int[] getrscapula_Geo_6_197_coordIndex_5()
		{
			int[] value = {1030,42,44,-1,39,44,40,-1,39,163,1030,-1,46,36,946,-1,163,56,55,-1,783,222,292,-1,222,221,292,-1,917,30,186,-1,28,721,463,-1,28,27,721,-1,715,809,716,-1,466,14,13,-1,9,12,11,-1,9,8,12,-1,792,598,268,-1,235,6,5,-1,249,250,469,-1,197,1031,825,-1,197,652,1031,-1,825,1032,1033,-1,825,1031,1032,-1,198,1033,649,-1,1033,198,825,-1,792,597,598,-1,792,791,597,-1,466,859,596,-1,466,13,859,-1,1034,819,1035,-1,18,819,1034,-1,20,819,18,-1,1036,715,1037,-1,809,715,1036,-1,222,1016,999,-1,1016,222,783,-1,895,1038,1039,-1,895,896,1038,-1,37,913,1040,-1,913,37,45,-1,49,41,40,-1,49,48,41,-1,819,406,662,-1,819,20,406,-1,1018,80,1041,-1,80,1018,1023,-1,253,87,86,-1,253,986,87,-1,125,122,123,-1,111,122,125,-1,1021,250,878,-1,250,1021,469,-1,1042,125,124,-1,125,1042,988,-1,856,423,854,-1,423,856,424,-1,1019,1041,1043,-1,1041,1019,1018,-1,637,78,836,-1,84,78,637,-1,639,128,1044,-1,126,128,639,-1,126,115,127,-1,115,126,118,-1,1017,72,636,-1,73,72,1017,-1,1045,137,139,-1,1045,1046,137,-1,1047,1048,760,-1,1047,1049,1048,-1,90,997,1016,-1,997,90,143,-1,225,998,999,-1,225,224,998,-1,778,782,785,-1,1050,782,778,-1,787,1051,771,-1,787,1052,1051,-1,445,828,444,-1,828,445,1015,-1,1053,142,89,-1,1053,1054,142,-1,1055,601,420,-1,1055,664,601,-1,929,1056,68,-1,928,1056,929,-1,1057,585,944,-1,1057,584,585,-1,1058,420,422,-1,1058,1055,420,-1,328,591,326,-1,328,415,591,-1,864,978,1059,-1,864,413,978,-1,934,952,703,-1,934,933,952,-1,441,531,940,-1,441,532,531,-1,442,536,902,-1,443,536,442,-1,1060,1061,938,-1,1060,1062,1061,-1,57,464,463,-1,57,56,464,-1,937,29,920,-1,183,29,937,-1,502,935,393,-1,935,502,458,-1,393,952,394,-1,952,393,935,-1,463,95,57,-1,463,1012,95,-1,1063,976,339,-1,976,1063,903,-1,53,194,51,-1,194,53,537,-1,232,641,1064,-1,232,234,641,-1,824,1013,440,-1,824,1014,1013,-1,652,642,218,-1,652,197,642,-1,653,1031,652,-1,1031,653,263,-1,840,633,839,-1,840,631,633,-1,996,143,230,-1,143,996,997,-1,223,293,221,-1,223,35,293,-1,781,841,625,-1,841,781,226,-1,841,996,992,-1,841,994,996,-1,837,210,838,-1,837,630,210,-1,629,1065,848,-1,629,628,1065,-1,846,1020,1019,-1,846,1066,1020,-1,1053,1061,181,-1,89,1061,1053,-1,796,594,595,-1,796,592,594,-1,790,1067,1068,-1,1067,790,1069,-1,1070,1071,1022,-1,684,1071,1070,-1,290,286,291,-1,290,284,286,-1,284,984,799,-1,290,984,284,-1,1072,1008,1073,-1,158,1072,702,-1,1072,158,1008,-1,303,269,301,-1,303,1074,269,-1,1075,982,1076,-1,1075,980,982,-1,734,1077,1078,-1,734,733,1077,-1,1079,805,1080,-1,805,1079,979,-1,1081,1082,930,-1,1081,1083,1082,-1,19,1084,407,-1,18,1084,19,-1,580,69,1085,-1,580,322,69,-1,1086,893,892,-1,914,893,1086,-1,384,395,392,-1,384,386,395,-1,350,335,351,-1,333,335,350,-1,1087,526,522,-1,1087,1088,526,-1,519,531,191,-1,520,531,519,-1,977,518,523,-1,1089,518,977,-1,886,906,888,-1,886,905,906,-1,1090,909,1091,-1,974,909,1090,-1,873,331,330,-1,331,873,972,-1,970,1092,1093,-1,1094,1092,970,-1,1095,1093,1092,-1,1095,1096,1093,-1,1093,968,970,-1,968,1093,1097,-1,971,1094,970,-1,885,1094,971,-1,556,869,380,-1,869,556,558,-1,522,344,1087,-1,344,522,342,-1,966,182,1062,-1,539,182,966,-1,554,963,894,-1,554,504,963,-1,359,47,964,-1,359,358,47,-1,892,498,1086,-1,892,555,498,-1,967,47,965,-1,47,967,48,-1,965,358,1098,-1,965,47,358,-1,505,962,506,-1,505,961,962,-1,960,368,959,-1,368,960,369,-1,329,872,330,-1,329,579,872,-1,387,1007,1006,-1,387,955,1007,-1,953,923,922,-1,921,923,953,-1,954,978,325,-1,1059,978,954,-1,586,486,487,-1,586,489,486,-1,170,155,1005,-1,170,934,155,-1,1099,414,863,-1,1099,590,414,-1,588,860,589,-1,860,588,1100,-1,374,368,367,-1,374,324,368,-1,488,157,1011,-1,462,157,488,-1,503,870,915,-1,503,869,870,-1,360,1101,549,-1,1101,360,550,-1,498,916,1086,-1,498,363,916,-1,949,534,535,-1,1102,534,949,-1,533,530,901,-1,341,530,533,-1,946,511,46,-1,511,946,947,-1,473,1028,471,-1,1028,473,1027,-1,1082,1103,931,-1,1103,1082,1104,-1,1026,656,410,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=6 */
		private int[] getrscapula_Geo_6_197_coordIndex_6()
		{
			int[] value = {1025,656,1026,-1,146,472,144,-1,146,470,472,-1,65,396,66,-1,375,396,65,-1,248,729,245,-1,702,729,248,-1,854,1105,855,-1,1105,854,1042,-1,74,941,72,-1,74,513,941,-1,938,89,91,-1,89,938,1061,-1,457,184,383,-1,457,185,184,-1,808,1012,810,-1,808,167,1012,-1,926,451,450,-1,451,926,701,-1,700,455,454,-1,700,482,455,-1,951,460,462,-1,951,189,460,-1,477,1059,954,-1,477,153,1059,-1,930,931,927,-1,930,1082,931,-1,928,470,146,-1,927,470,928,-1,1057,930,929,-1,1081,930,1057,-1,418,449,416,-1,418,450,449,-1,479,699,926,-1,479,478,699,-1,925,924,1106,-1,925,867,924,-1,476,176,474,-1,476,152,176,-1,923,1106,924,-1,1106,923,389,-1,485,481,480,-1,485,484,481,-1,327,921,953,-1,327,346,921,-1,166,96,95,-1,492,96,166,-1,920,491,165,-1,919,491,920,-1,493,962,947,-1,962,493,918,-1,950,918,493,-1,918,950,362,-1,387,370,385,-1,387,188,370,-1,1006,189,387,-1,1006,460,189,-1,373,1086,916,-1,914,1086,373,-1,951,957,956,-1,951,490,957,-1,506,963,504,-1,506,356,963,-1,38,1040,96,-1,38,37,1040,-1,1038,163,55,-1,1030,163,1038,-1,55,1039,1038,-1,55,54,1039,-1,432,911,429,-1,432,912,911,-1,512,516,991,-1,512,911,516,-1,990,941,991,-1,990,425,941,-1,974,910,973,-1,974,514,910,-1,907,437,433,-1,907,7,437,-1,908,909,907,-1,908,1091,909,-1,343,425,990,-1,425,343,426,-1,1088,1090,1107,-1,1088,517,1090,-1,1091,518,1089,-1,518,1091,908,-1,526,1107,524,-1,1088,1107,526,-1,905,942,345,-1,905,904,942,-1,114,904,567,-1,114,83,904,-1,337,903,338,-1,976,903,337,-1,340,1063,339,-1,1063,340,1108,-1,1108,559,563,-1,1109,559,1108,-1,533,1110,340,-1,1102,1110,533,-1,1111,1110,948,-1,1109,1110,1111,-1,1111,889,560,-1,899,889,1111,-1,535,50,949,-1,50,535,900,-1,899,890,889,-1,899,897,890,-1,195,898,897,-1,195,546,898,-1,547,898,548,-1,547,891,898,-1,1062,967,966,-1,1060,967,1062,-1,543,1098,544,-1,965,1098,543,-1,553,894,365,-1,553,554,894,-1,552,364,555,-1,552,365,364,-1,914,870,893,-1,870,914,915,-1,1101,555,892,-1,1101,552,555,-1,884,891,547,-1,891,884,881,-1,568,889,890,-1,889,568,570,-1,888,885,886,-1,888,1094,885,-1,577,562,570,-1,562,577,1112,-1,1096,564,561,-1,564,1096,1095,-1,880,885,971,-1,566,885,880,-1,566,110,112,-1,566,879,110,-1,1097,874,968,-1,874,1097,576,-1,879,1113,877,-1,879,880,1113,-1,877,1114,1115,-1,877,1113,1114,-1,1115,876,571,-1,1115,1114,876,-1,1114,969,871,-1,1113,969,1114,-1,581,353,579,-1,353,581,354,-1,572,1056,145,-1,1056,572,1085,-1,104,575,574,-1,100,575,104,-1,582,101,583,-1,101,582,99,-1,569,574,573,-1,569,883,574,-1,379,582,380,-1,379,875,582,-1,874,330,871,-1,874,873,330,-1,583,556,380,-1,583,882,556,-1,972,960,331,-1,972,1116,960,-1,68,1085,69,-1,1056,1085,68,-1,379,1117,1116,-1,382,1117,379,-1,366,1117,956,-1,369,1117,366,-1,374,376,399,-1,376,374,367,-1,862,475,866,-1,862,476,475,-1,866,863,862,-1,863,866,1099,-1,1100,861,860,-1,1100,865,861,-1,17,421,15,-1,17,254,421,-1,1118,605,1119,-1,1118,16,605,-1,1120,1042,124,-1,1042,1120,1105,-1,1121,613,857,-1,611,613,1121,-1,612,855,1105,-1,612,1122,855,-1,1123,855,1122,-1,1123,853,855,-1,1124,857,851,-1,1124,1121,857,-1,850,620,852,-1,850,619,620,-1,852,842,850,-1,852,843,842,-1,1124,844,845,-1,851,844,1124,-1,853,847,849,-1,853,1123,847,-1,1019,849,846,-1,1019,1043,849,-1,629,847,845,-1,848,847,629,-1,842,627,844,-1,627,842,200,-1,227,626,228,-1,626,227,621,-1,212,623,227,-1,623,212,1004,-1,1066,117,1020,-1,1066,1125,117,-1,628,1126,1065,-1,628,839,1126,-1,205,840,206,-1,1003,840,205,-1,212,1000,1004,-1,212,211,1000,-1,1126,1127,1125,-1,1126,834,1127,-1,834,1128,1127,-1,835,1128,834,-1,833,632,1129,-1,833,633,632,-1,1130,209,208,-1,1130,1001,209,-1,229,1054,640,-1,1054,229,142,-1,837,640,234,-1,231,640,837,-1,1017,832,73,-1,1044,832,1017,-1,1128,644,127,-1,645,644,1128,-1,833,1131,835,-1,827,1131,833,-1,826,1130,642,-1,826,1129,1130,-1,215,232,219,-1,215,233,232,-1,827,647,1131,-1,827,650,647,-1,74,831,1132,-1,73,831,74,-1,653,439,823,-1,653,651,439,-1,1132,430,74,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=7 */
		private int[] getrscapula_Geo_6_197_coordIndex_7()
		{
			int[] value = {1132,259,430,-1,822,1032,264,-1,822,4,1032,-1,264,434,822,-1,264,262,434,-1,3,260,259,-1,3,654,260,-1,657,665,658,-1,657,820,665,-1,412,1055,1058,-1,412,411,1055,-1,242,858,599,-1,697,858,242,-1,668,1133,1134,-1,667,1133,668,-1,681,1133,1071,-1,681,1134,1133,-1,680,685,687,-1,680,1135,685,-1,1136,1135,683,-1,1136,817,1135,-1,617,816,691,-1,617,688,816,-1,689,1136,1137,-1,689,817,1136,-1,985,815,1137,-1,985,1138,815,-1,693,1138,776,-1,815,1138,693,-1,697,603,858,-1,697,243,603,-1,63,696,241,-1,696,63,698,-1,451,813,452,-1,814,813,451,-1,813,1009,177,-1,813,814,1009,-1,812,706,23,-1,706,812,1073,-1,712,23,22,-1,712,812,23,-1,21,383,24,-1,457,383,21,-1,25,717,707,-1,1037,717,25,-1,808,723,716,-1,810,723,808,-1,447,809,1036,-1,447,448,809,-1,714,1139,1140,-1,714,719,1139,-1,292,724,26,-1,292,294,724,-1,725,303,302,-1,725,314,303,-1,312,694,310,-1,312,695,694,-1,315,305,807,-1,315,306,305,-1,805,1141,1080,-1,770,1141,805,-1,1077,1079,317,-1,1076,1079,1077,-1,1142,1072,811,-1,1142,732,1072,-1,980,1142,1143,-1,1075,1142,980,-1,979,981,806,-1,981,979,982,-1,709,1144,1143,-1,711,1144,709,-1,1144,804,981,-1,1144,1145,804,-1,806,801,768,-1,806,802,801,-1,1145,803,804,-1,1146,803,1145,-1,1147,1139,1148,-1,1147,1146,1139,-1,1146,735,803,-1,1146,1147,735,-1,738,289,288,-1,738,726,289,-1,932,800,1149,-1,932,300,800,-1,818,272,274,-1,818,282,272,-1,740,1149,800,-1,740,1150,1149,-1,1150,799,984,-1,1150,742,799,-1,138,286,283,-1,286,138,983,-1,799,745,284,-1,745,799,746,-1,756,744,754,-1,756,747,744,-1,756,798,755,-1,1151,798,756,-1,797,595,793,-1,797,796,595,-1,1151,1068,1067,-1,1151,753,1068,-1,794,798,1152,-1,759,798,794,-1,757,1045,139,-1,757,795,1045,-1,666,1046,1049,-1,666,818,1046,-1,794,1153,795,-1,1154,1153,794,-1,1067,1155,1152,-1,1069,1155,1067,-1,1069,792,268,-1,790,792,1069,-1,1154,761,1153,-1,1154,762,761,-1,1049,667,666,-1,667,1049,1047,-1,730,766,789,-1,731,766,730,-1,764,92,94,-1,764,788,92,-1,131,788,766,-1,131,92,788,-1,773,985,786,-1,773,1138,985,-1,765,1051,129,-1,767,1051,765,-1,786,1052,787,-1,786,277,1052,-1,779,801,737,-1,772,801,779,-1,775,782,781,-1,775,785,782,-1,32,220,780,-1,223,220,32,-1,90,783,91,-1,783,90,1016,-1,780,998,1050,-1,220,998,780,-1,625,775,781,-1,624,775,625,-1,1050,777,780,-1,778,777,1050,-1,737,777,779,-1,33,777,737,-1,774,1138,773,-1,1138,774,776,-1,772,133,136,-1,772,779,133,-1,772,768,801,-1,772,769,768,-1,767,771,1051,-1,767,769,771,-1,767,1141,770,-1,767,765,1141,-1,277,132,1052,-1,277,276,132,-1,1070,132,276,-1,130,132,1070,-1,731,765,766,-1,731,1141,765,-1,1070,140,130,-1,1070,1022,140,-1,269,763,270,-1,269,1074,763,-1,94,762,764,-1,94,761,762,-1,1133,1047,141,-1,1133,667,1047,-1,1153,760,1048,-1,1153,761,760,-1,762,1155,270,-1,762,1154,1155,-1,1154,1152,1155,-1,1154,794,1152,-1,795,1048,1045,-1,1153,1048,795,-1,1046,274,137,-1,274,1046,818,-1,1152,1151,1067,-1,798,1151,1152,-1,752,1068,753,-1,752,797,1068,-1,748,758,749,-1,758,748,755,-1,592,752,751,-1,796,752,592,-1,756,753,1151,-1,753,756,754,-1,743,754,744,-1,751,754,743,-1,291,983,295,-1,983,291,286,-1,740,742,1150,-1,740,739,742,-1,1149,984,287,-1,1149,1150,984,-1,932,287,289,-1,1149,287,932,-1,670,726,738,-1,670,727,726,-1,1148,293,1147,-1,294,293,1148,-1,1146,1140,1139,-1,1146,1145,1140,-1,804,806,981,-1,806,804,802,-1,711,1145,1144,-1,711,1140,1145,-1,1143,981,980,-1,1144,981,1143,-1,1076,979,1079,-1,1076,982,979,-1,811,1143,1142,-1,811,709,1143,-1,1075,732,1142,-1,1075,733,732,-1,1078,317,313,-1,1078,1077,317,-1,702,732,729,-1,1072,732,702,-1,313,807,1078,-1,313,315,807,-1,731,1080,1141,-1,731,318,1080,-1,306,314,725,-1,314,306,315,-1,1074,728,730,-1,728,1074,303,-1,695,305,307,-1,695,312,305,-1,299,289,304,-1,299,932,289,-1,722,26,724,-1,26,722,27,-1,294,718,724,-1,1148,718,294,-1,719,1148,1139,-1,718,1148,719,-1,719,713,267,-1,714,713,719,-1,1037,265,717,-1,1037,715,265,-1,1036,936,447,-1,1036,24,936,-1,713,707,717,-1,713,708,707,-1,1140,710,714,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=8 */
		private int[] getrscapula_Geo_6_197_coordIndex_8()
		{
			int[] value = {1140,711,710,-1,22,710,712,-1,22,708,710,-1,707,21,25,-1,707,22,21,-1,1073,705,706,-1,1073,1008,705,-1,454,1009,814,-1,454,1010,1009,-1,62,698,63,-1,62,452,698,-1,1137,690,689,-1,1137,815,690,-1,985,1136,275,-1,985,1137,1136,-1,275,683,278,-1,275,1136,683,-1,816,1135,817,-1,816,685,1135,-1,683,680,682,-1,680,683,1135,-1,682,1071,684,-1,682,681,1071,-1,687,673,674,-1,673,687,679,-1,675,681,676,-1,681,675,1134,-1,672,674,673,-1,674,672,677,-1,671,307,672,-1,695,307,671,-1,1134,297,668,-1,297,1134,675,-1,409,945,175,-1,409,408,945,-1,664,411,659,-1,411,664,1055,-1,1029,820,657,-1,821,820,1029,-1,1025,657,656,-1,1029,657,1025,-1,654,4,822,-1,654,3,4,-1,259,0,3,-1,1132,0,259,-1,2,649,1033,-1,648,649,2,-1,1132,1024,0,-1,1132,831,1024,-1,831,1156,1024,-1,831,832,1156,-1,643,1131,647,-1,645,1131,643,-1,219,1064,217,-1,219,232,1064,-1,1130,216,642,-1,216,1130,208,-1,1129,827,833,-1,826,827,1129,-1,645,835,1131,-1,645,1128,835,-1,832,128,1156,-1,832,1044,128,-1,630,215,214,-1,630,233,215,-1,632,1002,1001,-1,631,1002,632,-1,127,1127,1128,-1,127,115,1127,-1,115,1125,1127,-1,117,1125,115,-1,839,834,1126,-1,839,633,834,-1,209,1003,207,-1,209,1002,1003,-1,1003,1000,207,-1,1003,205,1000,-1,1065,1125,1066,-1,1065,1126,1125,-1,206,200,199,-1,206,627,200,-1,623,621,227,-1,623,204,621,-1,853,1043,856,-1,853,849,1043,-1,1123,845,847,-1,1123,1124,845,-1,619,851,857,-1,850,851,619,-1,1122,1124,1123,-1,1122,1121,1124,-1,612,1121,1122,-1,612,611,1121,-1,616,609,608,-1,609,616,614,-1,609,613,611,-1,609,614,613,-1,610,1105,1120,-1,612,1105,610,-1,1120,607,610,-1,1120,1119,607,-1,124,1119,1120,-1,1119,124,1118,-1,1119,606,607,-1,605,606,1119,-1,616,688,617,-1,616,240,688,-1,858,605,600,-1,606,605,858,-1,268,8,10,-1,598,8,268,-1,465,594,467,-1,595,594,465,-1,1099,865,1100,-1,1099,866,865,-1,868,590,588,-1,868,591,590,-1,958,347,589,-1,347,958,483,-1,377,586,587,-1,377,957,586,-1,377,367,366,-1,367,377,376,-1,956,382,951,-1,1117,382,956,-1,1116,369,960,-1,1117,369,1116,-1,959,329,331,-1,959,323,329,-1,875,1116,972,-1,875,379,1116,-1,583,883,882,-1,583,574,883,-1,100,582,575,-1,99,582,100,-1,583,104,574,-1,104,583,101,-1,581,1085,572,-1,580,1085,581,-1,145,119,572,-1,145,120,119,-1,872,1114,871,-1,876,1114,872,-1,571,1021,1115,-1,1021,571,108,-1,878,1115,1021,-1,878,877,1115,-1,1113,971,969,-1,880,971,1113,-1,576,1112,577,-1,576,1097,1112,-1,1095,887,564,-1,1095,1092,887,-1,1112,561,562,-1,561,1112,1096,-1,569,577,570,-1,573,577,569,-1,563,561,564,-1,563,559,561,-1,547,557,884,-1,547,549,557,-1,869,381,380,-1,869,503,381,-1,508,551,401,-1,551,508,507,-1,913,403,895,-1,913,508,403,-1,551,550,402,-1,553,550,551,-1,550,552,1101,-1,550,553,552,-1,360,1098,358,-1,1098,360,548,-1,1060,48,967,-1,48,1060,41,-1,544,548,898,-1,1098,548,544,-1,546,542,544,-1,540,542,546,-1,543,541,966,-1,541,543,542,-1,900,160,162,-1,900,535,160,-1,948,899,1111,-1,545,899,948,-1,1109,560,559,-1,1109,1111,560,-1,1102,948,1110,-1,1102,949,948,-1,1109,340,1110,-1,1109,1108,340,-1,565,1108,563,-1,565,1063,1108,-1,530,192,191,-1,530,341,192,-1,532,901,530,-1,532,902,901,-1,193,519,191,-1,523,519,193,-1,334,888,906,-1,334,333,888,-1,351,525,529,-1,527,525,351,-1,336,977,337,-1,977,336,524,-1,85,904,83,-1,942,904,85,-1,1088,515,517,-1,1088,1087,515,-1,524,1089,977,-1,1107,1089,524,-1,908,178,518,-1,908,179,178,-1,908,435,179,-1,1107,1091,1089,-1,1107,1090,1091,-1,426,345,942,-1,345,426,343,-1,990,344,343,-1,990,989,344,-1,514,1090,517,-1,514,974,1090,-1,973,7,909,-1,973,5,7,-1,989,516,515,-1,989,991,516,-1,513,991,941,-1,513,512,991,-1,973,235,5,-1,910,235,973,-1,912,235,910,-1,432,235,912,-1,235,432,236,-1,896,964,42,-1,896,400,964,-1,1039,96,1040,-1,96,1039,54,-1,511,510,509,-1,511,961,510,-1,507,505,504,-1,510,505,507,-1,364,361,499,-1,361,364,357,-1,381,951,382,-1,381,187,951,-1,394,332,392,-1,394,168,332,-1,371,497,372,-1,371,950,497,-1,495,950,493,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=9 */
		private int[] getrscapula_Geo_6_197_coordIndex_9()
		{
			int[] value = {495,497,950,-1,494,946,919,-1,946,494,493,-1,36,919,946,-1,36,491,919,-1,957,489,586,-1,489,957,490,-1,388,487,485,-1,388,483,487,-1,954,922,477,-1,953,922,954,-1,388,480,391,-1,388,485,480,-1,455,484,456,-1,484,455,481,-1,480,482,478,-1,482,480,481,-1,479,389,391,-1,479,1106,389,-1,474,477,922,-1,176,477,474,-1,477,176,151,-1,867,474,924,-1,475,474,867,-1,926,1106,479,-1,1106,926,925,-1,943,1057,944,-1,943,1081,1057,-1,1083,1104,1082,-1,1104,1083,1034,-1,410,1028,1026,-1,471,1028,410,-1,986,107,87,-1,986,105,107,-1,679,671,673,-1,679,678,671,-1,26,464,60,-1,28,464,26,-1,1011,454,488,-1,1011,1010,454,-1,478,700,699,-1,700,478,482,-1,587,483,958,-1,587,487,483,-1,721,1012,463,-1,721,810,1012,-1,1053,159,993,-1,1053,181,159,-1,1013,442,440,-1,1013,443,442,-1,1013,445,443,-1,439,940,823,-1,439,441,940,-1,1157,254,17,-1,1157,255,254,-1,255,123,249,-1,255,1157,123,-1,120,88,121,-1,120,422,88,-1,925,865,867,-1,925,861,865,-1,412,144,472,-1,1058,144,412,-1,472,410,412,-1,471,410,472,-1,931,1027,473,-1,1027,931,1103,-1,943,1083,1081,-1,943,1084,1083,-1,407,943,408,-1,943,407,1084,-1,820,661,665,-1,820,662,661,-1,901,1102,533,-1,901,534,1102,-1,549,892,557,-1,892,549,1101,-1,961,947,962,-1,511,947,961,-1,959,324,323,-1,368,324,959,-1,590,1100,588,-1,1100,590,1099,-1,413,863,414,-1,413,864,863,-1,462,1005,155,-1,462,461,1005,-1,490,462,488,-1,462,490,951,-1,389,921,390,-1,389,923,921,-1,955,171,1007,-1,332,171,955,-1,500,386,385,-1,386,500,501,-1,359,400,402,-1,400,359,964,-1,539,538,404,-1,541,538,539,-1,363,950,916,-1,363,362,950,-1,357,506,361,-1,357,356,506,-1,989,1087,344,-1,989,515,1087,-1,1097,1096,1112,-1,1097,1093,1096,-1,887,352,564,-1,352,887,350,-1,569,881,883,-1,569,568,881,-1,887,1094,888,-1,1092,1094,887,-1,327,868,349,-1,327,326,868,-1,514,911,910,-1,514,516,911,-1,521,526,525,-1,521,522,526,-1,336,529,525,-1,529,336,338,-1,335,342,522,-1,335,334,342,-1,955,392,332,-1,955,384,392,-1,188,915,373,-1,190,915,188,-1,917,31,30,-1,31,917,496,-1,329,322,580,-1,323,322,329,-1,572,354,581,-1,572,320,354,-1,1084,1034,1083,-1,1034,1084,18,-1,317,1080,318,-1,1080,317,1079,-1,1078,309,734,-1,309,1078,807,-1,733,1076,1077,-1,733,1075,1076,-1,734,311,732,-1,734,309,311,-1,725,308,306,-1,725,727,308,-1,789,1074,730,-1,789,763,1074,-1,1073,811,1072,-1,811,1073,812,-1,720,716,723,-1,266,716,720,-1,295,288,291,-1,288,295,738,-1,271,983,138,-1,271,273,983,-1,684,276,278,-1,684,1070,276,-1,141,1071,1133,-1,1071,141,1022,-1,1068,793,790,-1,1068,797,793,-1,301,10,299,-1,301,269,10,-1,1155,268,270,-1,1069,268,1155,-1,261,179,262,-1,261,180,179,-1,1129,1001,1130,-1,1129,632,1001,-1,257,109,82,-1,113,109,257,-1,988,111,125,-1,988,256,111,-1,240,608,238,-1,608,240,616,-1,848,1066,846,-1,848,1065,1066,-1,438,236,655,-1,438,237,236,-1,234,630,837,-1,233,630,234,-1,994,225,995,-1,225,994,226,-1,35,1147,293,-1,35,735,1147,-1,992,230,838,-1,230,992,996,-1,843,201,200,-1,843,202,201,-1,201,1004,199,-1,1004,201,623,-1,1031,264,1032,-1,1031,263,264,-1,218,824,651,-1,218,217,824,-1,197,826,642,-1,196,826,197,-1,1064,828,1015,-1,828,1064,641,-1,217,1014,824,-1,1064,1014,217,-1,1064,1015,1014,-1,640,829,641,-1,640,1054,829,-1,339,193,192,-1,193,339,976,-1,565,903,1063,-1,903,565,528,-1,939,39,41,-1,39,939,58,-1,446,920,165,-1,937,920,446,-1,60,56,163,-1,464,56,60,-1,41,938,939,-1,41,1060,938,-1,181,1062,182,-1,1061,1062,181,-1,441,902,532,-1,442,902,441,-1,705,934,703,-1,934,705,155,-1,1011,177,1009,-1,157,177,1011,-1,1059,154,864,-1,153,154,1059,-1,415,978,413,-1,978,415,328,-1,150,602,663,-1,602,150,147,-1,1057,68,584,-1,929,68,1057,-1,928,145,1056,-1,146,145,928,-1,144,422,120,-1,1058,422,144,-1,993,1054,1053,-1,1054,993,829,-1,444,829,993,-1,444,828,829,-1,785,133,778,-1,134,133,785,-1,129,1052,132,-1,129,1051,1052,-1,130,92,131,-1,140,92,130,-1,224,1050,998,-1,782,1050,224,-1,995,999,1016,-1,225,999,995,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=10 */
		private int[] getrscapula_Geo_6_197_coordIndex_10()
		{
			int[] value = {141,760,93,-1,1047,760,141,-1,1046,1048,1049,-1,1046,1045,1048,-1,1024,644,646,-1,1024,1156,644,-1,1157,16,1118,-1,16,1157,17,-1,1017,639,1044,-1,1017,830,639,-1,836,636,637,-1,836,830,636,-1,1156,127,644,-1,128,127,1156,-1,424,1043,1041,-1,424,856,1043,-1,854,988,1042,-1,988,854,423,-1,123,1118,124,-1,1157,1118,123,-1,114,252,83,-1,252,114,113,-1,878,122,110,-1,122,878,250,-1,108,987,1021,-1,987,108,105,-1,107,119,121,-1,119,107,106,-1,987,253,469,-1,986,253,987,-1,97,102,98,-1,97,103,102,-1,99,102,101,-1,99,98,102,-1,1041,82,424,-1,82,1041,80,-1,1023,81,80,-1,81,1023,975,-1,71,64,70,-1,71,65,64,-1,1027,1035,1029,-1,1027,1103,1035,-1,662,409,660,-1,662,406,409,-1,44,49,40,-1,44,43,49,-1,1040,895,1039,-1,1040,913,895,-1,896,1030,1038,-1,896,42,1030,-1,1037,24,1036,-1,25,24,1037,-1,1104,1035,1103,-1,1035,1104,1034,-1,821,1035,819,-1,1035,821,1029,-1,859,791,596,-1,859,597,791,-1,4,1033,1032,-1,1033,4,2,-1,0,643,1,-1,0,646,643,-1};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=1 */
		private double[] getrscapula_Coord_7_197_point_1()
		{
			double[] value = {-4.196,47.7233,-3.3878,-4.1095,47.7628,-3.3524,-3.9274,47.7394,-3.4428,-4.0345,47.5583,-3.5276,-3.8245,47.6712,-3.562,-3.896,47.1492,-3.5194,-3.9025,47.078,-3.5703,-3.7236,47.2052,-3.6297,-5.8394,49.9684,-1.2393,-5.8237,49.9464,-1.2689,-5.7292,49.9775,-1.4158,-5.8393,49.929,-1.0811,-5.8325,49.9523,-1.0762,-5.8932,49.9043,-0.8513,-5.9331,49.8763,-0.8384,-5.9146,48.9186,-1.8794,-5.7767,48.8661,-1.9455,-5.7849,48.8482,-1.9396,-5.6216,49.1426,-1.4027,-5.622,49.1534,-1.4084,-5.6286,49.1609,-1.4239,-4.1396,50.0393,-1.7086,-4.1481,49.8813,-1.8115,-4.3555,49.8235,-1.6846,-3.8609,50.279,-1.6724,-3.8637,50.26,-1.6875,-2.841,50.4457,-2.7316,-2.8377,50.5203,-2.587,-2.8042,50.5333,-2.6286,-3.9413,50.3163,-1.444,-4.0551,50.1923,-1.4249,-4.0471,50.1196,-1.4067,-3.5029,50.3087,-3.0488,-3.7381,50.2954,-3.0086,-3.7094,50.2505,-2.9628,-3.4495,50.3034,-2.9877,-3.5425,50.4063,-1.8374,-3.2678,50.4917,-2.0176,-3.2382,50.5693,-2.0444,-2.7468,50.1985,-2.7674,-2.735,50.1794,-2.7388,-2.7508,50.1738,-2.7933,-2.7837,50.301,-2.5878,-2.8041,50.1882,-2.6967,-2.7383,50.1824,-2.7364,-3.2858,50.4662,-2.016,-3.5505,50.387,-1.8505,-2.9427,50.1651,-2.6262,-2.8086,50.1632,-2.7209,-2.8046,50.1735,-2.6981,-2.9133,49.4236,-2.9656,-3.1111,49.4652,-2.7734,-3.1551,49.4482,-2.7909,-2.8758,49.4327,-2.9379,-2.8437,50.5083,-2.4199,-2.7721,50.4307,-2.5756,-2.7618,50.4854,-2.6168,-2.8827,50.5947,-2.4468,-2.7466,50.2077,-2.7755,-2.8631,50.3229,-2.8577,-2.7441,50.3639,-2.6897,-5.74,49.4532,-1.0666,-5.4757,49.5648,-1.2334,-5.5765,49.5404,-1.4398,-5.5306,49.1888,-1.1465,-5.4553,49.2026,-1.1777,-5.5053,49.2983,-1.0438,-5.6054,49.3176,-1.0668,-5.6129,48.8775,-1.181,-5.4957,48.8976,-1.2212,-5.5259,49.0325,-1.1586,-5.4322,49.0609,-1.2089,-4.8716,47.6477,-2.9329,-4.8591,47.6526,-2.9548,-4.7814,47.4405,-2.9461,-5.2864,48.1587,-2.6612,-5.305,48.1742,-2.6438,-5.2414,48.2466,-2.6947,-5.2604,48.006,-2.634,-5.2473,48.0213,-2.6473,-5.3858,48.3714,-2.459,-5.3829,48.3636,-2.4371,-5.4267,48.448,-2.3063,-5.3849,48.2169,-2.3925,-5.2669,47.9967,-2.6225,-5.2499,47.9851,-2.5834,-5.7553,48.7565,-1.8475,-5.7472,48.7472,-1.8278,-5.8635,48.7778,-1.7689,-2.8184,49.8904,-3.124,-2.9365,50.0296,-3.0509,-2.8588,50.0615,-3.0236,-5.4199,50.0376,-2.4836,-5.6212,49.9706,-2.3876,-5.6067,50.0125,-2.3614,-3.0189,50.6678,-2.2794,-3.0542,50.6031,-2.223,-4.6152,49.3242,-2.1395,-4.6841,49.3285,-2.1282,-4.6748,49.3083,-2.1112,-4.6195,49.3087,-2.1852,-4.6123,49.381,-2.1482,-4.6381,49.3826,-2.1559,-4.6027,49.3583,-2.1533,-4.5929,49.3532,-2.1897,-5.6463,48.6545,-1.8434,-5.7095,48.7182,-1.7158,-5.7254,48.7177,-1.7329,-5.6291,48.6568,-1.8314,-5.4371,48.4109,-2.2221,-5.4313,48.5031,-2.1118,-5.4456,48.503,-2.1273,-5.4258,48.4094,-2.2062,-5.4012,48.3113,-2.3255,-5.3927,48.3078,-2.3092,-4.9114,48.126,-2.8933,-5.103,48.171,-2.7868,-5.0817,48.1846,-2.7937,-4.9344,48.1128,-2.889,-5.7916,48.751,-1.6443,-5.9196,48.749,-1.5841,-5.8108,48.7527,-1.661,-5.465,48.5159,-2.103,-5.5989,48.686,-2.0959,-5.5818,48.6957,-2.1041,-5.5731,48.6681,-2.1215,-4.8407,48.0019,-2.9871,-4.8152,48.0116,-2.9964,-4.824,47.9903,-3.0015,-5.0799,50.0853,-2.7304,-5.2191,50.069,-2.6273,-5.2159,50.0848,-2.6262,-5.0871,50.0674,-2.7252,-4.3308,49.9996,-3.1294,-4.3296,49.9879,-3.1178,-4.552,50.0046,-3.0249,-4.549,50.02,-3.036,-6.4589,49.6878,-2.0152,-6.5327,49.6564,-1.8664,-6.4737,49.7031,-2.0215,-5.4203,50.0222,-2.4879,-5.6247,49.9501,-2.3815,-2.8398,49.8819,-3.128,-2.9565,50.0128,-3.0479,-5.9226,48.7573,-1.5758,-5.8629,48.7301,-1.4249,-5.8697,48.7368,-1.4235,-5.8219,49.2826,-1.7147,-5.7705,49.4008,-1.4914,-5.7638,49.4175,-1.5005,-5.8316,49.2733,-1.6972,-6.127,49.3557,-0.3053,-6.1267,49.3599,-0.3268,-6.1396,49.2663,-0.2797,-6.1372,49.2585,-0.2964,-4.7091,49.6156,-1.5908,-4.7854,49.5486,-1.4951,-4.7724,49.5448,-1.4797,-4.7169,49.6185,-1.607,-2.7493,49.5024,-3.2664,-2.7628,49.3522,-3.3264,-2.7691,49.3559,-3.3465,-2.7315,49.5013,-3.2378,-2.7415,50.3507,-2.6737,-3.4688,50.6364,-1.794,-3.4715,50.626,-1.7702,-3.2195,50.6989,-2.0878,-3.2283,50.7101,-2.0984,-4.6711,49.6634,-1.2691,-4.6814,49.6684,-1.2696,-4.6591,49.6162,-1.395,-4.6477,49.6092,-1.3902,-5.7676,49.4546,-1.3945,-5.7294,49.4251,-1.1103,-5.7587,49.4695,-1.4004,-5.7255,49.4098,-1.1256,-6.1236,49.3613,-0.3163,-4.7919,49.5518,-1.4828,-3.2914,47.9635,-3.6589,-3.2877,47.9484,-3.6684,-3.2891,47.9557,-3.6801,-2.7218,49.6762,-3.1902,-2.7196,49.6678,-3.1717,-3.9469,50.3264,-1.4529,-4.052,50.2086,-1.4402,-4.1888,50.0684,-1.4589,-4.1839,50.058,-1.4458,-4.6603,49.4826,-1.4928,-4.4947,49.5605,-1.5156,-4.65,49.5071,-1.4664,-4.5704,49.521,-1.6103,-3.0662,48.4349,-3.4983,-3.1549,48.4967,-3.3686,-3.1783,48.4793,-3.3672,-3.092,49.4925,-2.7821,-3.2104,49.478,-2.7434,-3.7367,48.3026,-3.3348,-3.5232,48.4278,-3.4285,-3.6218,48.1818,-3.4929,-4.1284,49.0946,-2.7748,-4.2925,49.0765,-2.6938,-4.0812,49.2813,-2.7161,-4.0671,49.4693,-2.6574,-4.1577,49.5829,-2.5632,-3.9929,49.5428,-2.6714,-4.0624,49.0358,-2.8115,-4.3548,48.8467,-2.7497,-3.566,49.1122,-2.9556,-3.3837,48.9972,-3.0907,-3.6196,49.0247,-2.947,-3.3503,49.4346,-2.8629,-3.5331,49.315,-2.8835,-3.6709,49.4494,-2.7496,-3.4602,49.661,-2.7606,-3.3937,49.2153,-2.9865,-3.2504,49.1422,-3.1311,-3.2581,48.8987,-3.2098,-3.0393,48.9165,-3.4605,-3.1506,48.757,-3.477,-3.1294,49.0525,-3.2978,-3.3906,50.2509,-3.0949,-3.1969,50.3298,-2.9751,-3.1629,50.2607,-3.0042,-3.3701,50.3243,-3.021,-3.4541,50.189,-3.0827,-3.2678,50.1952,-3.0257,-3.4123,50.15,-2.9693,-3.687,49.6411,-2.6819,-3.5158,49.8597,-2.7248,-2.8742,49.8301,-3.1293,-3.0625,49.863,-2.9594,-2.9996,49.6546,-3.0653,-3.0629,49.1968,-3.2319,-3.1505,49.2316,-3.1252,-3.0706,49.3317,-3.1458,-4.0495,47.1514,-3.4308,-4.125,47.0296,-3.4868,-3.9399,47.0356,-3.6604,-5.304,49.0644,-1.9316,-5.173,49.2375,-2.0393,-5.0334,49.1668,-2.0921,-5.6718,49.4693,-1.5687,-5.7632,49.2855,-1.737,-5.3294,49.3238,-1.7756,-5.1863,49.425,-1.6773,-5.0607,49.4503,-1.7696,-5.2752,49.3475,-1.8624,-5.0742,49.5105,-1.5688,-4.9123,49.514,-1.6654,-5.5744,48.6558,-2.0486,-5.5183,48.5621,-2.0224,-5.3401,48.286,-2.4942,-5.3916,48.223,-2.4073,-5.6668,48.6894,-1.9407,-5.7653,48.787,-1.879,-5.652,48.7204,-1.9541,-5.4521,48.5269,-2.2055,-5.3733,48.3597,-2.4168,-4.2383,47.1773,-3.5064,-4.3164,47.3587,-3.4009,-4.1619,47.2139,-3.5589,-3.3298,47.9265,-3.765,-3.3846,47.7377,-3.7747,-3.3821,47.9646,-3.7277,-3.4556,47.7724,-3.7445,-3.5136,50.2972,-2.0606,-3.4128,50.2538,-2.115,-3.5558,50.1393,-2.1344,-5.8377,50.0058,-1.4171,-5.6361,50.0091,-1.594,-5.7209,50.0436,-1.7585,-6.4279,49.6377,-1.9265,-6.3498,49.6532,-1.9359,-6.3451,49.6481,-1.8861,-6.3909,49.6686,-1.9809,-4.8768,49.9007,-2.6316,-5.0739,50.0,-2.6645,-4.8722,49.9885,-2.7887,-5.0575,49.9246,-2.5953,-5.9766,49.659,-2.0301,-6.2195,49.659,-1.9064,-6.0061,49.6936,-2.0621,-6.2262,49.676,-1.9521,-6.5814,49.6668,-1.8387,-6.5214,49.7227,-1.5777,-6.6815,49.6851,-1.7396,-6.462,49.678,-1.7203,-6.1273,49.7643,-1.5185,-6.1023,49.7424,-1.5638,-5.9035,49.836,-1.6158,-6.3684,49.7379,-1.5092,-6.3026,49.7084,-1.6144,-2.9911,50.3456,-2.8659,-3.3596,50.274,-2.8941,-3.1746,50.2198,-2.7155,-6.1845,49.6616,-1.7788,-5.9113,49.6293,-1.9615,-5.75,49.6483,-2.1402,-5.7285,49.5994,-2.0575,-5.8161,49.9251,-1.3326,-5.9157,49.8721,-1.089,-5.6951,49.9443,-1.596,-5.677,49.8397,-1.7534,-5.5704,49.9983,-1.7879,-5.774,49.8811,-1.625,-5.3334,49.6242,-2.0273,-5.4368,49.7317,-2.0097,-5.52,49.511,-2.0091,-5.6263,49.5901,-1.9576,-5.0778,49.5945,-2.0096,-5.0745,49.4279,-1.8765,-4.9721,49.5026,-1.8939,-5.1622,49.5371,-1.9822,-5.2388,49.8792,-2.1683,-5.4456,49.914,-2.0099,-5.3262,49.818,-2.0853,-5.2973,49.9967,-2.1172,-5.0534,49.9294,-2.333,-5.0935,50.0201,-2.3772,-5.5639,48.747,-1.6762,-5.6277,48.7684,-1.5796,-5.3128,49.0902,-1.259,-5.3627,48.9449,-1.289,-5.2292,48.991,-1.3746,-5.1824,49.1201,-1.3213,-5.9363,49.2147,-0.1882,-5.691,49.2236,-0.3457,-5.6483,49.2865,-0.2633,-5.9373,49.1886,-0.2637,-5.1915,48.8615,-1.5983,-5.0525,48.8478,-1.7497,-5.0358,48.9134,-1.6971,-4.593,49.6363,-1.3809,-4.9459,48.368,-2.4978,-5.0365,48.2893,-2.5221,-4.8545,48.3139,-2.6445,-3.8712,48.5594,-2.9849,-3.4711,48.6399,-3.1214,-3.8276,48.6533,-2.8881,-3.4106,48.7184,-3.0218,-3.4208,48.8136,-3.0375,-3.1111,48.6534,-3.3534,-4.9416,48.0933,-2.6175,-4.9613,47.952,-2.638,-4.778,47.9863,-2.7529,-5.0482,48.0622,-2.5778,-5.4943,49.3329,-0.3895,-5.3305,49.3555,-0.5399,-5.3155,49.3782,-0.5166,-5.5168,49.262,-0.4526,-4.7477,48.5335,-2.5259,-4.6298,48.5042,-2.6443,-4.5794,48.6044,-2.5916,-5.3901,48.7902,-1.6125,-5.4477,48.7866,-1.5771,-3.799,50.0114,-1.9823,-3.7826,50.0551,-1.9324,-3.8701,49.9924,-1.9339,-3.0414,50.1404,-2.5801,-3.049,50.2502,-2.5178,-3.4999,50.0619,-2.4639,-3.968,49.962,-1.8479,-4.0758,49.9285,-1.7291,-4.1401,49.8664,-1.8132,-3.8916,49.9629,-1.9664,-3.8102,49.9834,-2.047,-4.9299,49.3071,-1.2605,-5.0449,49.2655,-1.2255,-5.0749,49.1642,-1.3769,-4.9733,49.21,-1.4325,-4.42,49.6255,-1.4896,-4.2501,49.8073,-1.6781,-4.2784,49.7914,-1.4686,-4.3865,49.6958,-1.7007,-5.1709,49.2281,-1.1893,-5.3276,49.2175,-1.1754,-5.0636,49.3297,-1.0445,-4.9644,49.3567,-1.063,-5.2409,49.3216,-0.8549,-4.7991,49.2593,-1.738,-4.7012,49.373,-1.8695,-4.6874,49.4237,-1.6334,-4.795,49.3301,-1.5513,-3.9743,50.2525,-1.5028,-4.5625,49.6283,-1.4111,-4.4553,49.687,-1.4168,-4.4664,49.7114,-1.3981,-4.5416,49.6083,-1.4382,-5.1614,49.4733,-0.5843,-5.4339,49.5293,-0.5334,-5.3504,49.4232,-0.5216,-5.2582,49.5934,-0.6509,-4.5832,49.6439,-1.3782,-4.493,49.7671,-1.3375,-4.6631,49.6731,-1.2577,-4.4741,49.7272,-1.3788,-5.3475,49.295,-1.0449,-5.5092,49.3861,-0.9358,-5.3927,49.3548,-0.8873,-5.1966,49.2851,-1.0397,-2.9077,50.3431,-2.4969,-3.0911,50.3505,-2.3683,-3.1249,50.3042,-2.3919,-2.9153,50.4077,-2.4017,-2.7758,49.5133,-3.092,-2.7591,49.4604,-3.1305,-5.6176,49.206,-1.3802,-5.6117,49.17,-1.3535,-5.603,49.1967,-1.2644,-5.6471,49.2688,-1.288,-5.7086,49.0192,-1.5647,-5.8509,48.9354,-1.6686,-5.8191,48.889,-1.6138,-6.0468,49.1946,-0.2664,-5.9376,49.1678,-0.328,-5.9375,49.1813,-0.2858,-5.6873,49.4714,-0.993,-5.566,49.371,-1.0081,-5.628,49.4797,-0.9022,-5.6294,49.2993,-1.0628,-5.9873,48.8552,-1.7587,-5.8921,48.824,-1.824,-5.9722,48.7854,-1.6929,-5.4744,48.5449,-2.284,-5.4414,48.4753,-2.3917,-4.9604,47.783,-2.6719,-5.0363,47.8788,-2.6079,-5.0104,47.8036,-2.7997,-5.1433,47.8885,-2.6903,-4.6519,47.32,-3.0111,-4.6436,47.3166,-3.0725,-4.3886,47.1771,-3.3335,-4.3625,47.1846,-3.2845,-3.4633,47.5219,-3.6847,-3.4936,47.5517,-3.7862,-3.3627,47.7357,-3.663,-3.75,47.186,-3.7777,-3.7045,47.1774,-3.7423,-3.9683,47.0536,-3.6781,-2.9876,48.6323,-3.7004,-2.9221,48.7963,-3.6644,-2.9486,48.6336,-3.6432,-2.8766,48.8754,-3.5765,-2.8177,49.097,-3.4426,-2.8123,49.3523,-3.366,-2.8508,49.0965,-3.4759,-3.4832,50.6265,-1.7707,-3.5948,50.5127,-1.7521,-3.4495,50.6042,-1.9098,-5.4878,49.5767,-1.1227,-5.4407,49.5707,-0.9893,-5.2396,49.6177,-1.1432,-5.3242,49.5892,-1.2911,-4.7203,49.592,-1.2128,-4.7999,49.6882,-1.2615,-4.8227,49.6995,-1.088,-4.7616,49.588,-1.0117,-4.1786,50.0635,-1.5107,-4.3751,49.845,-1.3837,-4.4016,49.8928,-1.5062,-4.667,49.5273,-1.4871,-4.6809,49.5295,-1.484,-4.724,49.5065,-1.4322,-2.8908,50.6133,-2.4599,-2.7652,50.501,-2.6323,-5.9639,49.8863,-0.7752,-5.9295,49.8932,-0.8273,-6.1328,49.8213,-0.6594,-6.0849,49.8185,-0.7747,-5.5856,48.6059,-1.942,-5.7493,48.8689,-1.4824,-5.6821,49.007,-1.5169,-5.7853,48.883,-1.559,-5.6587,49.0212,-1.4688,-5.8669,49.4779,-0.3785,-5.8871,49.4287,-0.4699,-6.1032,49.37,-0.3649,-6.0549,49.3476,-0.2251,-5.1592,49.7119,-0.8848,-5.3439,49.6246,-0.7759,-5.0788,49.6418,-0.7621,-4.9173,49.6696,-0.9234,-4.9555,49.7417,-1.0234,-5.1482,49.388,-0.6291,-4.8601,49.5738,-0.8738,-4.9817,49.5295,-0.715,-4.7921,49.5161,-0.9403,-4.9782,49.443,-0.7407,-4.7474,49.5377,-1.262,-4.7011,49.5087,-1.166,-4.7044,49.4818,-1.2364,-3.4832,50.5282,-1.7505,-3.2126,50.6078,-2.0505,-3.9502,50.1034,-1.6515,-3.8864,50.2658,-1.4213,-4.0135,50.0767,-1.4479,-4.1674,49.9826,-1.414,-4.1442,49.9372,-1.4664,-4.1395,49.8653,-1.9382,-4.0083,49.9026,-1.946,-4.3254,49.8462,-1.4205,-4.344,49.8513,-1.4079,-4.3689,49.8357,-1.3778,-4.631,49.4811,-1.6881,-3.5679,50.1669,-2.0523,-3.5738,50.2458,-1.9661,-3.7659,50.0999,-1.883,-3.3489,50.3395,-2.1292,-3.1472,50.4515,-2.1777,-3.3448,50.4421,-2.0181,-3.4101,50.3591,-2.0276,-3.5713,50.3328,-1.8842,-4.6465,47.4431,-2.9241,-4.8008,47.4268,-2.8488,-4.3146,47.6043,-3.1349,-4.4374,47.8154,-3.0351,-4.5346,47.5622,-2.9746,-4.3476,47.8092,-3.0811,-3.3507,47.9928,-3.5782,-3.1889,48.2647,-3.5433,-3.1427,48.2897,-3.6716,-4.6926,48.3615,-2.7187,-4.6072,48.1795,-2.8426,-3.2617,48.3361,-3.4385,-3.9477,48.3048,-3.1376,-4.3536,48.456,-2.8419,-4.3877,48.2233,-2.9442,-4.6467,48.4771,-2.66,-4.2637,48.659,-2.6795,-4.3001,48.598,-2.7304,-2.9945,48.6069,-3.5166,-3.1328,48.3039,-3.6684,-2.9462,48.6282,-3.6202,-3.0915,48.8472,-3.2686,-2.8805,49.0687,-3.3462,-2.8031,49.3126,-3.2255,-2.8144,49.0935,-3.4217,-2.8636,49.4651,-2.9448,-2.8738,49.5401,-2.9747,-2.815,49.659,-3.0674,-3.0657,49.5705,-2.8095,-2.8916,49.654,-2.9737,-3.033,49.694,-2.8225,-3.0235,49.8097,-2.8253,-3.1526,49.7621,-2.7195,-3.2254,49.4049,-2.7944,-3.1674,49.6095,-2.7353,-3.8894,49.8257,-2.4164,-3.5332,49.949,-2.5531,-3.8698,49.8937,-2.3961,-3.5314,50.0754,-2.3771,-3.3101,50.2568,-2.2597,-3.853,49.9477,-2.2038,-3.5462,50.1059,-2.2736,-3.5593,50.1316,-2.1333,-4.0711,49.8722,-2.0686,-4.519,49.5057,-2.0892,-4.2002,49.7493,-2.2763,-4.5061,49.5408,-2.0088,-4.2224,48.9271,-2.6648,-4.1693,49.1138,-2.6063,-4.3252,48.9129,-2.5801,-4.2441,49.0901,-2.5255,-4.2785,48.7509,-2.7107,-4.5497,48.6797,-2.5717,-4.2552,48.6771,-2.6716,-5.2593,48.4567,-2.1507,-5.2673,48.332,-2.2535,-4.2273,49.384,-2.3917,-4.4335,49.3072,-2.2982,-4.2394,49.2198,-2.4654,-5.4631,48.7277,-1.8188,-5.6752,48.7417,-1.4474,-4.5955,49.2282,-2.1847,-4.5536,49.3592,-2.1955,-4.6048,49.292,-2.1877,-4.6739,49.0352,-2.1892,-4.4833,49.1142,-2.3202,-4.7143,49.1255,-2.078,-5.3183,48.801,-1.5987,-5.4266,48.7941,-1.4419,-5.4255,48.784,-1.5478,-4.6844,49.2931,-2.0817,-4.6035,49.3894,-2.141,-5.5662,49.0216,-1.139,-5.5772,49.1826,-1.1363,-4.8316,49.4093,-1.0538,-5.0134,49.3486,-0.9356,-5.559,49.2445,-0.498,-5.3964,49.2616,-0.6404,-5.721,49.2127,-0.3976,-5.7008,49.2164,-0.3634,-6.3462,49.9395,-0.6604,-6.4378,49.874,-0.6578,-6.1159,49.8891,-0.6751,-5.9897,49.9693,-0.7677,-5.9563,49.9524,-0.8041,-5.8898,50.0239,-1.0501,-5.8596,49.9795,-1.2382,-5.9098,49.0316,-1.864,-5.6888,48.9487,-1.9287,-5.9812,48.9418,-1.8016,-5.9709,49.0339,-1.8181,-5.3818,49.1153,-1.86,-5.2654,49.2424,-1.93,-5.6293,48.9256,-1.9401,-5.508,48.9784,-1.9309,-5.3349,48.9117,-1.9769,-5.0555,49.0126,-2.029,-4.9677,48.9913,-2.1209,-5.1756,48.8561,-2.0435,-4.933,48.9507,-2.1512,-5.1286,48.7937,-2.1252,-4.8015,49.09,-2.223,-4.8186,49.1085,-2.2077,-4.6609,49.2961,-2.3498,-4.9082,49.1317,-2.1248,-4.7725,49.3411,-2.2978,-4.5948,49.4335,-2.396,-4.5659,49.2486,-2.4266,-4.4361,49.4155,-2.4532,-3.8834,49.7294,-2.6755,-4.0592,49.7666,-2.6224,-3.9079,49.4318,-2.6952,-3.9797,49.9509,-2.7209,-3.7339,49.9999,-2.7659,-3.7564,49.9419,-2.7139,-4.4448,48.9101,-2.6745,-4.641,48.6037,-2.6854,-4.7071,48.6769,-2.5911,-3.2485,49.3308,-2.9872,-4.1263,48.7468,-2.8765,-4.0546,48.7046,-2.9369,-4.3912,48.4358,-2.8996,-5.17,48.1047,-2.7054,-5.0422,48.0081,-2.8171,-5.0132,47.8532,-2.8746,-5.1537,47.9168,-2.7509,-4.9206,47.9161,-2.9069,-4.8935,47.8895,-2.9633,-2.9073,49.5632,-3.2178,-2.9159,49.3771,-3.2654,-3.4914,48.6362,-3.2902,-4.3208,47.8644,-3.2154,-4.6248,47.9036,-3.103,-4.4803,47.9722,-3.0789,-4.382,47.8347,-3.2506,-4.2103,47.9184,-3.217,-4.0236,47.8023,-3.3171,-3.8277,47.96,-3.3824,-3.9926,48.0648,-3.2538,-3.0682,48.6759,-3.6395,-3.3079,48.4597,-3.5653,-3.2112,48.3372,-3.6669,-3.8927,47.34,-3.7277,-4.1407,47.0324,-3.5161,-5.7399,49.0645,-1.5871,-5.7189,49.1156,-1.5769,-5.8317,49.0705,-1.6721,-5.838,49.0008,-1.6843,-5.7062,49.3101,-1.4016,-5.7372,49.2894,-1.4674,-5.6475,49.217,-1.459,-5.9739,49.0307,-1.7992,-5.9797,48.9433,-1.7829,-5.7892,49.209,-1.5862,-6.0352,49.7292,-2.0943,-5.8474,49.8059,-2.1981,-5.793,49.7155,-2.1651,-5.7117,49.5583,-1.9777,-5.8456,49.6013,-1.8936,-5.3281,49.3819,-2.0447,-5.5707,49.5128,-2.0627,-5.3539,49.3959,-2.093,-5.365,49.5225,-2.2149,-5.5728,49.6406,-2.2181,-5.3455,49.6038,-2.2825,-5.5713,49.5757,-2.1402,-5.2471,49.3215,-1.9775,-5.2365,49.3206,-2.0731,-5.192,49.6004,-2.3065,-5.3787,49.767,-2.3602,-5.2207,49.7834,-2.432,-5.0504,49.7728,-2.4751,-5.2193,49.9551,-2.528,-5.0261,49.4558,-2.2709,-5.0661,49.3821,-2.2078,-5.2255,49.4553,-2.23,-4.8998,49.3508,-2.2443,-4.6889,49.5878,-2.4196,-4.5387,49.599,-2.4478,-4.729,49.4392,-2.3482,-4.3184,49.6069,-2.4934,-4.2758,49.755,-2.5583,-5.2677,49.3701,-1.9128,-5.315,49.4207,-1.9778,-5.4643,49.4945,-1.6361,-5.5116,49.3078,-1.7732,-5.3824,49.565,-1.4965,-5.1953,49.6924,-0.9379,-4.9244,49.7228,-1.1361,-5.1949,49.6688,-1.0093,-4.8073,49.5273,-1.7495,-4.654,49.6906,-1.4251,-4.4902,49.8189,-1.5078,-4.7021,49.63,-1.6028,-4.5168,49.7557,-1.6587,-3.8757,50.0967,-1.7784,-3.9234,49.9886,-1.9259,-4.3269,49.7387,-2.2116,-3.9968,49.877,-2.1624,-4.0741,49.8165,-2.3227,-4.2269,49.7765,-2.0384,-3.785,50.0708,-2.0272,-3.8244,49.9311,-2.2258,-3.5213,50.4467,-1.9825,-3.3139,50.4986,-2.1251,-3.7199,50.2153,-1.8741,-3.311,50.0678,-2.3644,-3.6294,49.997,-2.3003,-3.304,50.2246,-2.2062,-2.952,50.5979,-2.4203,-2.9939,50.4172,-2.4264,-3.0895,50.5123,-2.3346,-3.0082,50.3186,-2.5918,-5.5699,49.8002,-1.9036,-5.8213,49.7466,-1.7596,-5.7152,49.667,-1.8826,-5.3274,50.0331,-2.1173,-4.9445,49.477,-1.8616,-5.2804,50.1036,-2.1022,-5.0566,50.1479,-2.3399,-4.8075,49.5553,-2.021,-4.9206,49.6826,-2.1839,-4.973,49.6528,-2.1091,-3.6765,50.219,-2.9066,-3.9665,50.2033,-2.9381,-3.9834,50.2806,-2.9781,-6.0018,49.6612,-1.7535,-6.5265,49.8632,-0.8557,-6.4007,49.8408,-0.9119,-6.6353,49.8488,-1.0615,-6.533,49.8357,-1.1063,-6.6055,49.9045,-0.8761,-6.6914,49.9061,-1.0975,-6.7061,49.7746,-1.592,-6.6571,49.8433,-1.3329,-6.6883,49.9085,-1.3609,-6.7071,49.8679,-1.6281,-6.7234,49.8142,-1.8087,-6.6335,49.7218,-1.9277,-6.4858,49.9569,-0.8947,-6.388,50.0215,-0.9315,-6.4276,50.008,-1.1109,-6.5433,49.9816,-1.0909,-6.6026,49.9554,-1.6478,-6.5761,49.9684,-1.3767,-6.4715,49.8495,-2.0035,-6.6072,49.8725,-1.8419,-6.4714,49.9129,-1.8758,-5.8549,49.8897,-2.2614,-5.8435,49.9773,-2.2378,-5.8099,50.0418,-2.0375,-5.5114,50.0903,-2.0578,-5.529,50.0708,-2.2089,-4.9623,50.1864,-2.6777,-5.1386,50.1493,-2.51,-4.7442,50.2023,-2.8264,-4.4313,50.2602,-2.8045,-4.5653,50.2101,-2.9125,-4.6517,50.2246,-2.6744,-4.6583,50.0612,-2.9858,-4.3678,50.2334,-3.0156,-4.5177,49.9437,-2.8613,-4.2812,49.96,-2.9081,-4.02,50.0578,-2.9481,-4.2599,49.8978,-2.6728,-3.9286,50.2519,-3.1906,-4.0471,50.0488,-3.1699,-4.1896,50.2351,-3.1112,-3.6313,50.2374,-3.1468,-3.7095,50.1266,-2.9905,-3.7642,50.0927,-3.1486,-3.0275,50.2638,-2.9536,-2.8617,50.2458,-2.8919,-4.0477,50.0392,-3.1581,-4.6879,49.973,-2.8566,-4.6655,50.044,-2.9762,-5.3674,50.0993,-2.3408,-5.3373,50.1005,-2.261,-5.9454,49.9832,-1.2189,-5.9196,50.0281,-1.0499,-5.8961,49.984,-1.2321,-5.9654,49.9744,-1.014,-6.2309,49.9366,-1.9057,-6.2708,49.896,-2.053,-6.2692,49.9834,-0.7064,-6.1936,50.0098,-0.9732,-6.4685,49.9837,-1.6479,-6.5365,49.8043,-1.3479,-6.1238,49.838,-1.018,-4.2079,50.2749,-2.8893,-4.1802,50.1881,-2.871,-3.9552,50.1012,-2.8394,-4.1529,50.0258,-2.7802,-4.6714,50.0974,-2.6919,-4.4064,50.149,-2.7837,-5.2121,49.697,-2.0911,-3.2295,50.6699,-2.1166,-3.5164,50.4685,-1.9717,-3.027,50.6292,-2.3241,-4.5411,49.6553,-2.064,-4.4336,49.7251,-1.918,-5.0138,49.578,-1.4195,-4.9721,49.6215,-1.2626,-4.5002,49.7742,-2.5593,-4.8614,49.4579,-2.3005,-4.8537,49.5959,-2.3912,-6.2352,49.692,-2.0113,-5.6379,49.1596,-1.4458,-5.6903,49.1744,-1.535,-5.6459,49.1502,-1.4651,-3.6614,47.5514,-3.7262,-3.1755,48.2707,-3.7228,-2.983,48.86,-3.5559,-3.5751,48.13,-3.5628,-3.8118,48.4421,-3.183,-4.1413,48.1838,-3.1085,-2.8326,49.3469,-3.3655,-2.824,49.4781,-3.3138,-5.0045,47.8669,-2.8879,-4.636,47.6988,-3.1323,-4.7647,47.7903,-3.0518,-4.2764,48.3047,-2.9805,-4.6469,48.2489,-2.8574,-4.532,48.1718,-2.9558,-5.1441,47.9298,-2.7673,-3.1319,49.473,-3.01,-3.1893,49.6105,-2.8868,-4.5321,48.5265,-2.801,-4.1892,48.7852,-2.838,-3.4155,50.0387,-2.8136,-4.3809,49.1495,-2.6074,-4.235,49.3267,-2.6479,-4.5551,48.964,-2.5778,-4.7519,48.7478,-2.4628,-5.1408,48.4018,-2.5408,-5.0332,48.5467,-2.431,-4.9819,48.4785,-2.5423,-5.1959,48.4735,-2.4619,-4.4755,49.194,-2.5072,-4.6028,49.03,-2.4399,-4.3133,49.4072,-2.5471,-5.2019,48.5521,-2.3363,-5.464,48.5526,-2.2934,-5.2466,48.6336,-2.2559,-5.4302,48.4829,-2.3996,-4.7074,49.0772,-2.3322,-5.5559,49.0759,-1.8674,-5.9164,49.9567,-0.8296,-5.4704,49.3196,-0.7096,-5.5509,49.3787,-0.7788,-6.0567,49.2595,-0.3678,-5.9965,49.2101,-0.3533,-6.0903,49.2277,-0.2797,-5.6789,49.35,-0.6045,-5.8161,49.3152,-0.4899,-5.7057,49.4701,-0.5635,-5.6833,49.2201,-0.3606,-4.6059,49.4595,-1.8652,-4.5081,49.5626,-1.9271,-5.0927,48.7364,-1.8377,-5.1924,48.7898,-1.7145,-4.8855,48.9744,-1.9314,-4.8752,48.9092,-2.0242,-4.7574,49.1851,-1.9926,-5.2639,48.7622,-1.7174,-5.3463,48.6029,-2.0062,-5.5042,48.5629,-2.0077,-5.3023,48.5399,-2.078,-5.2409,48.5511,-2.059,-4.2401,49.4986,-2.3466,-4.517,49.4661,-2.1746,-4.5026,49.3913,-2.2283,-4.222,49.6752,-2.3039,-5.167,48.4821,-2.1143,-5.2141,48.3438,-2.2488,-4.7719,48.5398,-2.5043,-4.9876,48.4037,-2.4144,-4.1125,49.258,-2.5608,-4.0297,49.4329,-2.5081,-3.9354,49.5984,-2.4306,-4.1454,49.8136,-2.186,-4.3944,49.6703,-2.0193,-3.7024,50.0624,-2.0467,-2.8678,50.4563,-2.3996,-2.8084,50.3541,-2.5163,-3.6536,49.4684,-2.5972,-3.5844,49.7166,-2.563,-3.6803,49.3312,-2.6487,-2.7692,49.4251,-3.1491,-2.9211,48.8548,-3.4486,-2.8723,48.8708,-3.5541,-3.7935,48.7053,-2.8148,-5.2659,48.2235,-2.3414,-5.1715,48.251,-2.4122,-5.0878,48.2822,-2.489,-3.4968,47.5084,-3.6299,-3.4189,47.7617,-3.5951,-3.6757,47.5949,-3.5435,-4.2961,47.3678,-3.2224,-4.488,47.4283,-3.058,-4.2966,47.3065,-3.2377,-3.1068,50.4934,-2.1768,-4.4422,49.6678,-1.8333,-4.5161,49.5958,-1.7796,-4.2481,49.809,-1.7738,-4.1793,50.0239,-1.4302,-3.9521,50.0446,-1.7258,-3.687,50.4396,-1.5667,-3.6821,50.5315,-1.5884,-5.5291,49.4093,-0.3964,-5.7933,49.445,-0.263,-5.5821,49.4898,-0.4175,-5.6852,49.5216,-0.4651,-5.5817,49.4904,-0.7677,-5.4017,49.6016,-0.829,-5.6979,48.8883,-1.4122,-5.7726,48.7795,-1.2804,-5.6277,48.8807,-1.1853,-5.6149,48.9889,-1.3278,-5.6384,49.044,-1.4292,-5.924,49.8788,-1.3254,-4.6684,49.6674,-1.2634,-4.6623,49.6737,-1.4162,-4.4968,49.7761,-1.3426,-3.7745,50.3907,-1.6033,-3.6901,50.5364,-1.5952,-2.7611,50.0568,-2.9683,-2.7503,50.1792,-2.8059,-3.1435,48.2944,-3.6951,-4.8832,47.6152,-2.772,-5.162,48.0174,-2.5203,-5.5992,49.1421,-1.2491,-5.5938,49.1826,-1.1448,-5.6413,49.297,-1.0782,-3.7552,50.2757,-1.7379,-3.7613,50.235,-1.7692,-3.2729,49.2448,-2.8669,-2.9682,49.29,-3.0483,-4.1156,49.9339,-1.6537,-4.6935,49.4658,-1.4097,-4.66,49.6829,-1.2645,-5.7321,49.3613,-0.2529,-5.9945,49.285,-0.1992,-4.5671,49.6246,-1.4124,-4.8008,49.3885,-1.3174,-4.7884,49.4104,-1.162,-5.1824,49.2856,-0.7911,-5.1107,49.0363,-1.4569,-4.9874,49.0932,-1.5556,-3.5749,50.2817,-1.9284,-3.7663,50.1809,-1.8127,-3.6865,50.0869,-2.0163,-2.9087,50.2945,-2.5513,-2.9957,50.009,-2.7675,-2.8438,49.8526,-2.9799,-2.8473,50.0373,-2.8619,-4.8833,48.8066,-2.0961,-5.0994,48.6696,-1.9205,-4.9276,48.6923,-2.1601,-5.128,48.5819,-2.0404,-4.8889,49.0416,-1.8533,-3.9109,47.3654,-3.4356,-3.9299,47.613,-3.3665,-5.3459,48.3013,-2.5317,-3.4349,48.7001,-3.0251,-3.5527,48.3568,-3.3108,-6.0415,49.1978,-0.248,-4.6561,50.0404,-2.6646,-4.5859,49.8334,-2.5435,-4.3606,49.952,-2.6997,-4.6176,49.8937,-2.5935,-6.4064,49.6555,-1.7997,-6.3776,49.7768,-1.3918,-4.6522,49.8933,-2.6559,-5.6656,48.6831,-1.9156,-5.601,48.6184,-1.9166,-5.503,48.5924,-2.2201,-4.7266,47.8244,-2.8141,-4.8529,47.8226,-2.7316,-4.721,47.6259,-2.8325,-3.2944,49.8726,-2.8181,-2.8038,49.4836,-3.3137,-3.2455,50.117,-2.8973,-3.0994,50.1991,-2.979,-3.1824,50.0517,-2.8973,-3.0925,50.195,-2.9814,-3.45,50.204,-3.0977,-3.2606,50.2127,-3.0376};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=2 */
		private double[] getrscapula_Coord_7_197_point_2()
		{
			double[] value = {-3.6989,49.2197,-2.8951,-3.7897,48.903,-2.9432,-3.8913,48.9333,-2.8833,-3.9735,48.9613,-2.8641,-3.8486,49.3099,-2.7645,-4.6759,49.5415,-1.503,-4.6647,49.5384,-1.4907,-4.6594,49.5449,-1.4841,-4.7045,49.6268,-1.6096,-4.8236,49.6055,-1.3222,-4.8097,49.6112,-1.3219,-4.8042,49.5976,-1.3211,-3.0221,50.6841,-2.2929,-2.8618,49.0864,-3.4908,-2.8653,49.0854,-3.488,-2.8688,49.1015,-3.4732,-3.0753,50.217,-2.9826,-4.9939,47.8535,-2.8989,-5.3465,48.3314,-2.5934,-5.3334,48.3409,-2.6003,-5.2213,48.261,-2.6965,-5.5708,48.6088,-1.9265,-5.4079,49.9855,-2.4679,-5.3473,48.3114,-2.5538,-4.4059,47.8224,-3.2495,-5.6599,49.1207,-1.4833,-5.6539,49.1017,-1.4829,-5.6422,49.0843,-1.4553,-5.6493,49.089,-1.4718,-5.6533,49.1355,-1.4781,-2.7608,50.3157,-2.6052,-3.4758,48.0285,-3.6616,-3.6199,47.86,-3.6022,-3.7403,47.9207,-3.5003,-5.6217,49.127,-1.4052,-5.6351,49.1252,-1.4408,-3.684,50.3741,-1.8134,-3.6931,50.3518,-1.8226,-2.7852,50.3705,-2.5314,-2.8471,50.4761,-2.4103,-3.0905,50.5145,-2.1811,-5.3862,48.3952,-2.5157,-5.4934,48.6023,-2.2267,-5.3751,48.4042,-2.5229,-4.881,47.8798,-2.9758,-6.2641,49.7495,-2.1025,-6.2601,49.7334,-2.0939,-5.8495,49.8704,-2.2567,-6.0365,49.8128,-2.1684,-6.0302,49.7943,-2.1618,-3.7641,50.1036,-3.1625,-4.847,50.0731,-2.8909,-4.8515,50.0552,-2.8852,-2.8048,49.6671,-3.246,-2.8245,49.6611,-3.2483,-5.9851,48.8595,-1.7414,-5.7636,48.774,-1.279,-5.5825,49.0213,-1.1448,-5.972,48.7931,-1.6806,-6.0936,49.2356,-0.265,-2.7628,50.0469,-2.9539,-2.7628,49.9003,-3.0797,-2.7647,49.8908,-3.0651,-3.7745,48.7238,-2.8079,-2.9273,49.1324,-3.401,-4.8975,48.4007,-2.6568,-5.0407,48.33,-2.6579,-6.1769,49.9861,-1.3682,-6.1863,49.9876,-1.1567,-5.9359,50.0074,-1.4037,-5.221,50.0168,-2.5813,-5.3873,49.943,-2.432,-4.6895,49.5873,-1.9003,-4.5812,49.6862,-1.7588,-5.529,50.0561,-1.7789,-4.7967,49.7381,-2.3486,-4.843,49.8412,-2.4206,-4.9941,49.806,-2.2698,-5.1187,49.7528,-2.1627,-4.8914,49.9751,-2.4975,-4.9149,50.0429,-2.5357,-5.6039,49.0763,-1.2826,-5.6172,49.073,-1.3894,-5.6126,49.1095,-1.3626,-5.6099,49.1424,-1.3458,-5.6232,48.7705,-1.3351,-4.2818,49.7816,-1.8994,-4.4312,47.9748,-2.9903,-4.3767,47.9873,-3.0179,-3.5776,48.0681,-3.4527,-3.9542,47.8272,-3.2883,-3.5964,47.8218,-3.521,-4.818,48.6354,-2.368,-4.7013,48.8192,-2.3072,-5.0047,48.5387,-2.2522,-4.6505,48.7634,-2.4124,-4.5752,48.8864,-2.3866,-4.669,48.9348,-2.2585,-3.1045,49.9788,-2.7035,-5.7671,49.2634,-0.4437,-5.6171,49.2967,-0.5512,-3.859,49.9211,-2.2991,-3.0392,49.0579,-3.1777,-5.6335,49.0911,-1.4357,-5.625,49.1079,-1.4166,-5.3046,48.6947,-2.1593,-5.5224,49.5713,-0.5784,-3.9653,48.0395,-3.2307,-3.7859,48.8027,-2.8505,-3.7656,48.9894,-2.7872,-3.3521,49.0264,-2.9559,-3.7319,49.1527,-2.7108,-4.4914,49.0355,-2.3621,-5.2324,48.6237,-1.9443,-5.232,48.6934,-1.8409,-5.3936,48.6682,-1.9065,-4.8685,49.1799,-1.6737,-4.8596,49.2747,-1.5024,-5.6496,48.7801,-2.0243,-5.4859,48.8552,-1.9966,-5.3638,48.7718,-2.0481,-4.8753,48.8798,-2.2392,-5.0811,48.7236,-2.2158,-5.0444,48.6274,-2.3031,-4.7958,48.8152,-2.3477,-4.9128,48.262,-2.7755,-4.7874,48.3267,-2.7721,-4.737,48.1995,-2.8538,-4.6169,48.1171,-2.9558,-3.9106,48.5961,-3.0454,-3.5975,48.7874,-3.109,-4.3837,48.0291,-3.0746,-4.4459,47.5427,-3.276,-5.6266,49.8794,-2.3119,-5.5727,49.7295,-2.2589,-5.0234,49.5964,-2.3486,-4.8653,49.7706,-2.5218,-4.6662,49.784,-2.5584,-4.4891,49.8842,-2.6618,-3.6957,49.9828,-2.4976,-3.8871,49.8985,-2.412,-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,-3.615,50.174,-2.8178,-3.3836,50.0768,-2.5806,-6.1416,49.8264,-1.2393,-6.3902,49.8259,-1.1266,-6.4261,50.0084,-1.3739,-6.2105,49.9808,-1.6595,-6.0338,49.9396,-2.1383,-5.995,50.0004,-1.9722,-5.9649,50.0179,-1.7132,-4.6457,47.8895,-3.1027,-5.6669,48.7677,-2.0159};
			return value;
		}

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

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getrcoscart_Geo_6_202_coordIndex_2()
		{
			int[] value = {431,30,364,-1,432,433,32,-1,434,128,435,-1,434,436,128,-1,7,437,8,-1,7,1,437,-1,4,438,439,-1,75,53,440,-1,223,75,440,-1,441,240,239,-1,239,380,441,-1,50,442,36,-1,252,443,228,-1,443,230,228,-1,444,445,446,-1,445,447,446,-1,448,449,450,-1,450,451,448,-1,452,453,454,-1,452,455,453,-1,337,456,336,-1,337,457,456,-1,84,262,88,-1,262,264,88,-1,381,249,86,-1,458,459,460,-1,461,462,463,-1,464,465,466,-1,467,468,469,-1,467,470,468,-1,104,127,222,-1,222,103,104,-1,471,329,328,-1,471,472,329,-1,98,200,202,-1,473,147,144,-1,473,474,147,-1,475,476,477,-1,477,478,475,-1,479,480,481,-1,481,482,479,-1,276,161,483,-1,276,152,154,-1,484,485,486,-1,486,487,484,-1,324,303,302,-1,302,265,324,-1,307,266,488,-1,307,306,266,-1,133,489,490,-1,133,132,489,-1,491,492,493,-1,493,494,491,-1,40,39,232,-1,40,83,41,-1,241,495,81,-1,241,496,495,-1,497,255,243,-1,243,498,497,-1,247,498,242,-1,497,498,499,-1,1,0,437,-1,258,500,256,-1,258,501,500,-1,502,447,445,-1,332,500,503,-1,332,504,500,-1,505,2,506,-1,507,508,0,-1,0,509,507,-1,510,511,286,-1,512,513,514,-1,514,515,512,-1,516,517,518,-1,519,520,208,-1,521,522,523,-1,523,339,521,-1,524,525,526,-1,526,527,524,-1,528,529,530,-1,530,531,528,-1,532,525,361,-1,361,360,532,-1,530,533,403,-1,403,402,530,-1,534,535,531,-1,531,536,534,-1,537,538,391,-1,537,539,538,-1,181,180,540,-1,540,541,181,-1,542,543,544,-1,542,545,543,-1,546,547,544,-1,546,541,547,-1,548,541,546,-1,548,181,541,-1,549,550,551,-1,549,552,550,-1,531,530,402,-1,402,536,531,-1,403,532,360,-1,403,533,532,-1,525,524,553,-1,553,361,525,-1,535,554,528,-1,528,531,535,-1,555,521,339,-1,339,338,555,-1,522,556,557,-1,557,523,522,-1,558,557,559,-1,559,560,558,-1,519,208,207,-1,209,561,562,-1,561,516,562,-1,555,318,521,-1,555,317,318,-1,519,563,564,-1,286,319,285,-1,286,511,319,-1,295,505,110,-1,493,508,507,-1,493,492,508,-1,565,504,332,-1,332,331,565,-1,566,567,568,-1,568,569,566,-1,256,504,570,-1,256,500,504,-1,571,93,572,-1,257,573,258,-1,574,506,571,-1,0,508,437,-1,508,575,437,-1,242,498,243,-1,241,91,576,-1,241,96,91,-1,577,93,571,-1,578,579,63,-1,364,57,54,-1,378,580,581,-1,581,582,378,-1,576,496,241,-1,576,583,496,-1,305,584,585,-1,585,306,305,-1,586,587,588,-1,586,589,587,-1,590,591,592,-1,593,594,595,-1,593,596,594,-1,485,597,598,-1,598,486,485,-1,599,475,478,-1,599,600,475,-1,601,602,102,-1,601,200,602,-1,98,202,99,-1,202,603,99,-1,604,197,279,-1,604,605,197,-1,284,606,607,-1,284,608,606,-1,471,609,472,-1,610,611,612,-1,103,613,102,-1,102,101,103,-1,614,615,616,-1,616,617,614,-1,618,120,119,-1,468,290,469,-1,619,620,323,-1,273,275,621,-1,622,623,624,-1,622,625,623,-1,262,84,87,-1,90,626,627,-1,90,251,626,-1,456,455,452,-1,452,336,456,-1,628,334,333,-1,628,335,334,-1,629,229,230,-1,73,53,75,-1,73,51,53,-1,4,3,438,-1,630,571,1,-1,1,7,630,-1,306,585,267,-1,267,266,306,-1,630,577,571,-1,576,577,583,-1,631,305,135,-1,436,631,135,-1,436,434,631,-1,211,632,633,-1,211,46,632,-1,634,635,52,-1,269,427,428,-1,427,426,428,-1,424,636,425,-1,636,637,425,-1,638,420,422,-1,639,640,641,-1,155,429,419,-1,155,157,429,-1,642,643,644,-1,645,395,646,-1,395,415,646,-1,647,648,649,-1,650,192,651,-1,192,652,651,-1,417,653,654,-1,654,418,417,-1,655,416,411,-1,416,410,411,-1,590,655,656,-1,398,395,645,-1,657,658,540,-1,658,659,540,-1,660,661,166,-1,403,174,400,-1,662,164,163,-1,414,663,664,-1,664,665,414,-1,415,397,666,-1,415,395,397,-1,392,394,396,-1,396,398,392,-1,627,89,90,-1,16,667,17,-1,443,18,629,-1,379,431,364,-1,668,431,669,-1,670,671,433,-1,433,432,670,-1,672,673,9,-1,673,10,9,-1,674,675,676,-1,676,677,674,-1,27,24,23,-1,678,679,680,-1,681,675,60,-1,682,683,371,-1,684,69,441,-1,10,66,11,-1,685,485,686,-1,687,688,177,-1,148,150,365,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getrcoscart_Geo_6_202_coordIndex_3()
		{
			int[] value = {443,689,690,-1,59,364,29,-1,59,57,364,-1,213,691,692,-1,693,694,44,-1,44,695,693,-1,361,553,177,-1,177,176,361,-1,696,697,350,-1,350,169,696,-1,698,699,351,-1,351,353,698,-1,348,356,349,-1,348,359,356,-1,688,367,177,-1,341,340,347,-1,700,343,701,-1,702,338,341,-1,702,703,338,-1,704,334,452,-1,334,336,452,-1,705,628,503,-1,330,706,331,-1,612,564,610,-1,471,117,116,-1,116,609,471,-1,707,404,708,-1,404,304,708,-1,709,710,460,-1,405,426,711,-1,405,428,426,-1,712,428,404,-1,404,707,712,-1,592,591,713,-1,319,511,320,-1,511,714,320,-1,267,585,512,-1,585,513,512,-1,324,715,325,-1,310,716,312,-1,717,718,719,-1,718,720,719,-1,721,308,722,-1,308,309,722,-1,135,307,136,-1,300,711,298,-1,300,723,711,-1,110,109,295,-1,724,725,726,-1,726,134,724,-1,493,293,118,-1,118,494,493,-1,727,470,467,-1,727,728,470,-1,288,289,291,-1,288,287,289,-1,108,285,111,-1,119,139,618,-1,609,729,607,-1,609,116,729,-1,113,138,278,-1,278,283,113,-1,343,700,347,-1,347,344,343,-1,268,216,215,-1,269,308,427,-1,269,268,308,-1,730,731,638,-1,730,732,731,-1,6,270,439,-1,111,322,292,-1,257,94,733,-1,733,573,257,-1,254,734,94,-1,86,260,381,-1,570,259,256,-1,381,261,382,-1,381,260,261,-1,228,227,253,-1,227,388,253,-1,90,86,249,-1,249,251,90,-1,242,241,81,-1,74,239,72,-1,735,29,31,-1,735,233,29,-1,582,581,63,-1,635,736,737,-1,635,634,736,-1,238,240,68,-1,738,380,739,-1,380,235,739,-1,578,234,740,-1,578,63,234,-1,231,83,40,-1,629,230,443,-1,229,741,225,-1,221,742,103,-1,742,613,103,-1,455,743,453,-1,455,744,743,-1,745,214,216,-1,214,745,710,-1,46,211,47,-1,560,419,558,-1,560,194,419,-1,205,204,612,-1,476,199,196,-1,476,746,199,-1,563,610,564,-1,747,748,589,-1,748,587,589,-1,749,750,751,-1,185,752,183,-1,753,412,184,-1,183,753,184,-1,655,665,656,-1,754,703,702,-1,367,354,366,-1,367,355,354,-1,173,755,174,-1,175,177,178,-1,175,172,176,-1,172,171,176,-1,168,170,685,-1,168,661,169,-1,168,685,686,-1,686,167,168,-1,756,358,699,-1,483,430,757,-1,758,759,760,-1,661,660,761,-1,148,154,151,-1,145,147,762,-1,536,143,534,-1,536,141,143,-1,409,646,415,-1,164,662,484,-1,400,174,755,-1,436,135,123,-1,123,281,436,-1,726,725,614,-1,725,615,614,-1,470,728,120,-1,120,618,470,-1,131,136,132,-1,131,137,136,-1,280,604,279,-1,138,140,130,-1,126,137,131,-1,131,763,126,-1,764,127,763,-1,127,126,763,-1,123,137,126,-1,125,281,123,-1,139,119,111,-1,115,117,288,-1,288,765,115,-1,288,291,765,-1,112,766,113,-1,282,106,111,-1,107,110,105,-1,602,200,98,-1,100,102,602,-1,104,97,99,-1,767,95,94,-1,92,96,95,-1,92,91,96,-1,93,92,768,-1,89,87,86,-1,88,260,85,-1,260,86,85,-1,740,82,81,-1,769,83,82,-1,769,41,83,-1,82,234,769,-1,82,740,234,-1,76,741,229,-1,229,770,76,-1,741,76,75,-1,76,770,73,-1,770,74,73,-1,770,77,78,-1,78,74,770,-1,70,64,771,-1,64,684,771,-1,66,68,67,-1,64,70,71,-1,63,581,58,-1,55,581,580,-1,55,58,581,-1,61,373,62,-1,62,681,60,-1,62,56,681,-1,55,580,681,-1,681,56,55,-1,238,52,51,-1,238,634,52,-1,689,443,772,-1,47,695,49,-1,47,212,695,-1,693,695,212,-1,694,42,44,-1,773,738,774,-1,738,739,774,-1,431,668,775,-1,771,35,33,-1,679,678,776,-1,11,65,375,-1,16,15,777,-1,18,443,690,-1,53,496,440,-1,53,495,496,-1,673,672,376,-1,672,377,376,-1,635,737,579,-1,737,778,579,-1,438,3,577,-1,3,583,577,-1,71,61,374,-1,439,7,6,-1,439,630,7,-1,630,439,438,-1,438,577,630,-1,4,439,779,-1,423,780,491,-1,780,492,491,-1,637,298,425,-1,299,298,637,-1,781,782,783,-1,784,782,781,-1,785,423,491,-1,422,423,785,-1,492,575,508,-1,780,575,492,-1,374,64,71,-1,64,374,65,-1,52,495,53,-1,52,578,495,-1,376,737,673,-1,737,376,778,-1,3,496,583,-1,440,496,3,-1,579,52,635,-1,578,52,579,-1,18,735,13,-1,735,18,15,-1,374,786,375,-1,374,787,786,-1,11,369,9,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getrcoscart_Geo_6_202_coordIndex_4()
		{
			int[] value = {11,788,369,-1,774,37,773,-1,37,774,38,-1,250,381,383,-1,250,249,381,-1,789,384,790,-1,789,791,384,-1,46,792,499,-1,46,48,792,-1,793,794,795,-1,794,793,796,-1,54,62,373,-1,56,62,54,-1,69,64,67,-1,64,69,684,-1,77,229,629,-1,770,229,77,-1,80,41,769,-1,41,80,39,-1,80,234,233,-1,769,234,80,-1,95,768,92,-1,768,95,767,-1,104,100,97,-1,104,101,100,-1,766,765,291,-1,112,765,766,-1,765,116,115,-1,729,116,765,-1,797,99,603,-1,124,99,797,-1,127,798,222,-1,764,798,127,-1,799,121,724,-1,121,799,122,-1,129,436,281,-1,129,128,436,-1,725,800,615,-1,725,801,800,-1,763,614,764,-1,614,763,726,-1,801,728,800,-1,801,120,728,-1,755,401,400,-1,401,755,802,-1,165,803,654,-1,165,162,803,-1,803,804,805,-1,804,803,806,-1,389,802,755,-1,389,806,802,-1,408,646,409,-1,408,807,646,-1,399,164,808,-1,399,401,164,-1,802,164,401,-1,802,162,164,-1,809,146,810,-1,809,144,146,-1,811,516,561,-1,516,811,517,-1,357,699,358,-1,357,351,699,-1,812,813,814,-1,815,813,812,-1,193,816,817,-1,195,816,193,-1,430,161,160,-1,430,483,161,-1,357,352,351,-1,357,818,352,-1,819,192,650,-1,190,192,819,-1,167,661,168,-1,166,661,167,-1,820,175,179,-1,820,172,175,-1,755,390,389,-1,173,390,755,-1,367,701,355,-1,688,701,367,-1,754,700,687,-1,754,702,700,-1,398,180,182,-1,398,645,180,-1,753,752,548,-1,753,183,752,-1,753,546,821,-1,548,546,753,-1,750,822,823,-1,749,822,750,-1,824,588,825,-1,586,588,824,-1,596,826,594,-1,480,826,596,-1,827,828,829,-1,827,481,828,-1,830,831,832,-1,830,833,831,-1,834,821,543,-1,821,834,835,-1,545,836,837,-1,545,549,836,-1,479,551,838,-1,551,479,482,-1,839,747,589,-1,840,747,839,-1,841,587,748,-1,841,842,587,-1,605,843,844,-1,605,797,843,-1,845,419,429,-1,558,419,845,-1,846,194,560,-1,846,847,194,-1,476,608,746,-1,476,475,608,-1,600,848,606,-1,600,849,848,-1,850,329,472,-1,851,329,850,-1,849,850,848,-1,849,852,850,-1,516,853,562,-1,516,641,853,-1,854,855,856,-1,857,855,854,-1,710,215,214,-1,215,710,709,-1,858,309,859,-1,722,309,858,-1,623,720,860,-1,719,720,623,-1,861,862,863,-1,861,625,862,-1,463,864,865,-1,864,463,462,-1,466,312,866,-1,312,466,465,-1,311,465,867,-1,312,465,311,-1,779,272,868,-1,272,779,314,-1,5,89,627,-1,89,5,4,-1,798,622,624,-1,617,622,798,-1,616,461,869,-1,616,870,461,-1,619,743,274,-1,619,453,743,-1,455,871,744,-1,456,871,455,-1,457,872,873,-1,874,872,457,-1,742,875,613,-1,875,742,460,-1,727,876,464,-1,727,467,876,-1,273,469,620,-1,273,621,469,-1,224,229,225,-1,224,227,229,-1,236,431,775,-1,30,431,236,-1,736,238,68,-1,634,238,736,-1,63,778,582,-1,63,579,778,-1,777,18,690,-1,777,15,18,-1,627,877,5,-1,877,627,626,-1,626,226,877,-1,226,626,878,-1,387,227,224,-1,227,387,388,-1,497,261,734,-1,382,261,497,-1,734,88,94,-1,734,261,88,-1,8,310,271,-1,879,310,8,-1,880,881,716,-1,421,881,880,-1,731,420,638,-1,731,882,420,-1,732,883,884,-1,883,732,730,-1,717,636,718,-1,636,717,885,-1,427,721,424,-1,427,308,721,-1,114,607,729,-1,607,114,284,-1,113,468,470,-1,766,468,113,-1,724,801,725,-1,724,121,801,-1,720,721,722,-1,718,721,720,-1,861,717,719,-1,884,717,861,-1,731,863,865,-1,731,732,863,-1,864,881,882,-1,881,864,866,-1,439,314,779,-1,270,314,439,-1,265,715,324,-1,265,886,715,-1,585,887,513,-1,585,584,887,-1,888,889,890,-1,888,891,889,-1,510,714,511,-1,510,892,714,-1,267,886,265,-1,267,512,886,-1,473,809,893,-1,473,144,809,-1,708,303,325,-1,303,708,304,-1,710,458,460,-1,710,745,458,-1,425,711,426,-1,711,425,298,-1,269,712,216,-1,269,428,712,-1,611,471,612,-1,611,117,471,-1,204,564,612,-1,204,894,564,-1,895,705,896,-1,895,628,705,-1,897,452,454,-1,897,704,452,-1,446,451,444,-1,448,451,446,-1,895,335,628,-1,898,335,895,-1,754,524,703,-1,553,524,754,-1,347,702,341,-1,347,700,702,-1,353,697,698,-1,350,697,353,-1,661,696,169,-1,661,761,696,-1,212,692,693,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=5 */
		private int[] getrcoscart_Geo_6_202_coordIndex_5()
		{
			int[] value = {213,692,212,-1,899,691,244,-1,899,692,691,-1,777,900,16,-1,777,901,900,-1,902,170,169,-1,597,170,902,-1,902,149,151,-1,149,902,169,-1,786,23,788,-1,23,786,903,-1,680,21,678,-1,904,21,680,-1,60,674,905,-1,675,674,60,-1,28,679,776,-1,679,28,903,-1,906,907,22,-1,907,906,908,-1,788,25,369,-1,25,788,23,-1,677,909,908,-1,677,910,909,-1,911,24,912,-1,911,913,24,-1,776,26,28,-1,776,914,26,-1,787,680,679,-1,787,915,680,-1,913,25,24,-1,913,909,25,-1,916,22,907,-1,916,20,22,-1,374,915,787,-1,915,374,61,-1,910,676,377,-1,910,677,676,-1,917,918,919,-1,918,917,920,-1,379,921,922,-1,372,921,379,-1,433,33,32,-1,433,923,33,-1,794,922,921,-1,919,922,794,-1,39,667,232,-1,39,17,667,-1,668,918,50,-1,668,669,918,-1,924,380,738,-1,441,380,924,-1,773,925,926,-1,773,37,925,-1,244,667,16,-1,244,246,667,-1,877,223,440,-1,877,226,223,-1,248,387,878,-1,387,248,386,-1,363,927,252,-1,927,363,928,-1,502,567,447,-1,502,568,567,-1,929,930,931,-1,184,930,929,-1,414,666,663,-1,414,415,666,-1,664,656,665,-1,656,664,932,-1,354,933,366,-1,354,934,933,-1,935,936,356,-1,935,937,936,-1,685,597,485,-1,685,170,597,-1,365,161,276,-1,365,159,161,-1,804,657,807,-1,804,658,657,-1,657,180,645,-1,657,540,180,-1,591,656,930,-1,590,656,591,-1,359,935,356,-1,359,651,935,-1,938,939,940,-1,939,938,941,-1,593,942,943,-1,942,593,595,-1,660,653,944,-1,653,660,654,-1,761,943,696,-1,945,943,761,-1,651,643,935,-1,651,652,643,-1,841,946,187,-1,947,946,841,-1,649,946,647,-1,649,948,946,-1,949,643,652,-1,643,949,644,-1,191,950,951,-1,191,190,950,-1,749,952,953,-1,952,749,751,-1,655,414,665,-1,411,414,655,-1,184,591,930,-1,184,413,591,-1,815,847,853,-1,812,847,815,-1,853,760,815,-1,760,853,641,-1,637,885,784,-1,636,885,637,-1,954,638,422,-1,730,638,954,-1,780,879,575,-1,780,880,879,-1,673,736,10,-1,673,737,736,-1,68,10,736,-1,10,68,66,-1,327,205,328,-1,205,327,203,-1,412,955,413,-1,835,955,412,-1,297,132,136,-1,489,132,297,-1,956,140,292,-1,956,130,140,-1,88,733,94,-1,264,733,88,-1,957,958,959,-1,958,957,960,-1,870,728,727,-1,728,870,800,-1,570,565,572,-1,570,504,565,-1,842,750,823,-1,750,842,186,-1,771,441,924,-1,771,684,441,-1,925,961,34,-1,925,962,961,-1,739,668,774,-1,739,775,668,-1,704,333,334,-1,333,704,330,-1,335,963,337,-1,898,963,335,-1,218,963,450,-1,218,874,963,-1,959,217,219,-1,958,217,959,-1,873,263,262,-1,873,872,263,-1,871,262,87,-1,871,873,262,-1,868,744,89,-1,868,743,744,-1,858,742,221,-1,858,859,742,-1,860,624,623,-1,624,860,220,-1,869,625,622,-1,869,862,625,-1,867,621,275,-1,621,867,876,-1,131,726,763,-1,131,134,726,-1,323,453,619,-1,323,454,453,-1,469,289,620,-1,469,290,289,-1,870,615,800,-1,616,615,870,-1,613,964,102,-1,875,964,613,-1,897,611,706,-1,611,897,117,-1,609,606,848,-1,607,606,609,-1,746,284,283,-1,746,608,284,-1,283,199,746,-1,278,199,283,-1,605,124,797,-1,605,604,124,-1,102,474,601,-1,964,474,102,-1,601,486,200,-1,486,601,487,-1,201,965,966,-1,965,201,598,-1,843,152,844,-1,152,843,153,-1,967,198,277,-1,967,196,198,-1,855,968,851,-1,855,857,968,-1,852,851,850,-1,852,855,851,-1,969,852,849,-1,969,970,852,-1,816,969,599,-1,969,816,814,-1,817,599,478,-1,816,599,817,-1,156,477,967,-1,156,158,477,-1,598,902,965,-1,598,597,902,-1,893,142,808,-1,809,142,893,-1,950,971,953,-1,972,971,950,-1,756,940,939,-1,699,940,756,-1,699,698,940,-1,943,697,696,-1,943,942,697,-1,945,973,974,-1,944,973,945,-1,975,417,976,-1,417,975,653,-1,592,655,590,-1,592,416,655,-1,971,825,822,-1,941,825,971,-1,594,938,595,-1,594,824,938,-1,593,828,596,-1,974,828,593,-1,831,973,975,-1,831,829,973,-1,713,976,592,-1,713,832,976,-1,823,587,842,-1,588,587,823,-1,826,589,586,-1,826,839,589,-1,481,836,482,-1,827,836,481,-1,834,833,830,-1,834,837,833,-1,785,977,978,-1,785,979,977,-1,490,978,977,-1,490,783,978,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=6 */
		private int[] getrcoscart_Geo_6_202_coordIndex_6()
		{
			int[] value = {299,489,297,-1,299,781,489,-1,723,307,488,-1,723,300,307,-1,305,888,584,-1,305,631,888,-1,799,979,122,-1,799,977,979,-1,376,582,778,-1,376,378,582,-1,793,671,670,-1,795,671,793,-1,796,919,794,-1,796,917,919,-1,669,919,918,-1,922,919,669,-1,576,93,577,-1,576,91,93,-1,245,632,980,-1,245,633,632,-1,691,211,633,-1,691,213,211,-1,506,1,571,-1,506,2,1,-1,569,573,733,-1,573,569,568,-1,257,767,94,-1,257,259,767,-1,572,768,570,-1,572,93,768,-1,574,572,565,-1,572,574,571,-1,502,573,568,-1,502,981,573,-1,896,501,981,-1,705,501,896,-1,565,706,574,-1,706,565,331,-1,294,493,507,-1,493,294,293,-1,295,509,505,-1,295,296,509,-1,706,110,505,-1,611,110,706,-1,315,956,316,-1,956,315,435,-1,322,285,319,-1,285,322,111,-1,519,894,520,-1,519,564,894,-1,563,207,892,-1,207,563,519,-1,714,556,320,-1,556,714,982,-1,318,522,521,-1,318,321,522,-1,555,889,317,-1,983,889,555,-1,527,887,890,-1,526,887,527,-1,886,528,715,-1,529,528,886,-1,520,984,985,-1,520,894,984,-1,846,209,562,-1,846,210,209,-1,207,559,982,-1,559,207,210,-1,982,557,556,-1,557,982,559,-1,338,983,555,-1,703,983,338,-1,532,515,514,-1,533,515,532,-1,558,523,557,-1,845,523,558,-1,553,687,177,-1,754,687,553,-1,647,937,642,-1,986,937,647,-1,934,987,988,-1,934,936,987,-1,933,989,406,-1,989,933,990,-1,407,539,537,-1,539,407,991,-1,550,989,992,-1,989,550,991,-1,988,993,990,-1,988,994,993,-1,947,987,986,-1,947,995,987,-1,748,947,841,-1,748,995,947,-1,840,994,747,-1,840,993,994,-1,550,838,551,-1,838,550,992,-1,549,542,552,-1,542,549,545,-1,659,389,391,-1,658,389,659,-1,540,547,541,-1,540,659,547,-1,544,821,546,-1,821,544,543,-1,547,542,544,-1,547,538,542,-1,399,536,402,-1,141,536,399,-1,391,547,659,-1,547,391,538,-1,171,403,360,-1,174,403,171,-1,552,538,539,-1,538,552,542,-1,838,993,840,-1,838,992,993,-1,995,747,994,-1,747,995,748,-1,946,986,647,-1,946,947,986,-1,995,988,987,-1,995,994,988,-1,990,992,989,-1,990,993,992,-1,550,539,991,-1,550,552,539,-1,406,991,407,-1,991,406,989,-1,934,990,933,-1,990,934,988,-1,986,936,937,-1,987,936,986,-1,643,937,935,-1,937,643,642,-1,340,429,346,-1,340,845,429,-1,530,515,533,-1,530,529,515,-1,514,525,532,-1,514,526,525,-1,703,527,983,-1,524,527,703,-1,210,560,559,-1,210,846,560,-1,985,561,520,-1,811,561,985,-1,715,554,325,-1,715,528,554,-1,512,529,886,-1,529,512,515,-1,526,513,887,-1,514,513,526,-1,890,983,527,-1,890,889,983,-1,522,320,556,-1,522,321,320,-1,982,892,207,-1,982,714,892,-1,611,510,110,-1,611,610,510,-1,316,292,322,-1,292,316,956,-1,891,435,315,-1,434,435,891,-1,507,296,294,-1,296,507,509,-1,2,509,0,-1,509,2,505,-1,505,574,706,-1,505,506,574,-1,501,503,500,-1,501,705,503,-1,981,445,896,-1,981,502,445,-1,573,501,258,-1,573,981,501,-1,767,570,768,-1,570,767,259,-1,957,569,960,-1,566,569,957,-1,632,499,498,-1,499,632,46,-1,244,633,245,-1,691,633,244,-1,498,980,632,-1,980,498,247,-1,578,81,495,-1,81,578,740,-1,50,920,442,-1,50,918,920,-1,682,70,923,-1,371,70,682,-1,122,494,118,-1,494,122,979,-1,490,799,133,-1,799,490,977,-1,888,434,891,-1,888,631,434,-1,488,265,302,-1,488,266,265,-1,301,711,723,-1,301,405,711,-1,300,136,307,-1,300,297,136,-1,781,490,489,-1,781,783,490,-1,979,491,494,-1,979,785,491,-1,830,835,834,-1,955,835,830,-1,827,837,836,-1,833,837,827,-1,826,479,839,-1,480,479,826,-1,975,832,831,-1,976,832,975,-1,974,829,828,-1,973,829,974,-1,938,825,941,-1,938,824,825,-1,822,953,971,-1,822,749,953,-1,416,976,417,-1,416,592,976,-1,975,944,653,-1,975,973,944,-1,943,974,593,-1,945,974,943,-1,942,698,697,-1,942,940,698,-1,939,819,756,-1,939,972,819,-1,660,165,654,-1,166,165,660,-1,808,484,893,-1,808,164,484,-1,965,151,153,-1,965,902,151,-1,276,757,277,-1,276,483,757,-1,160,346,430,-1,160,342,346,-1,156,277,757,-1,156,967,277,-1,158,478,477,-1,158,817,478,-1,599,849,600,-1,599,969,849,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=7 */
		private int[] getrcoscart_Geo_6_202_coordIndex_7()
		{
			int[] value = {814,970,969,-1,814,813,970,-1,813,856,970,-1,813,759,856,-1,759,854,856,-1,854,759,758,-1,967,476,196,-1,477,476,967,-1,277,844,152,-1,277,198,844,-1,966,153,843,-1,153,966,965,-1,486,201,200,-1,201,486,598,-1,473,601,474,-1,487,601,473,-1,147,964,762,-1,147,474,964,-1,199,279,197,-1,199,278,279,-1,875,762,964,-1,996,762,875,-1,620,287,323,-1,620,289,287,-1,465,876,867,-1,876,465,464,-1,466,461,464,-1,466,462,461,-1,463,869,461,-1,463,862,869,-1,221,860,858,-1,220,860,221,-1,742,709,460,-1,742,859,709,-1,743,272,274,-1,743,868,272,-1,87,744,871,-1,89,744,87,-1,382,789,383,-1,789,382,792,-1,958,872,217,-1,263,872,958,-1,450,219,218,-1,219,450,449,-1,337,874,457,-1,963,874,337,-1,704,706,330,-1,706,704,897,-1,898,450,963,-1,451,450,898,-1,444,896,445,-1,444,895,896,-1,790,385,386,-1,790,384,385,-1,774,50,38,-1,50,774,668,-1,37,962,925,-1,37,36,962,-1,926,34,35,-1,926,925,34,-1,69,240,441,-1,240,69,68,-1,73,238,51,-1,72,238,73,-1,575,8,437,-1,8,575,879,-1,960,733,264,-1,569,733,960,-1,43,695,44,-1,43,49,695,-1,435,130,956,-1,435,128,130,-1,612,328,205,-1,328,612,471,-1,924,35,771,-1,924,926,35,-1,923,771,33,-1,923,70,771,-1,791,49,43,-1,791,48,49,-1,901,690,689,-1,690,901,777,-1,780,421,880,-1,421,780,423,-1,883,784,885,-1,782,784,883,-1,812,194,847,-1,812,195,194,-1,951,953,952,-1,953,951,950,-1,949,192,189,-1,652,192,949,-1,648,642,644,-1,648,647,642,-1,187,948,188,-1,948,187,946,-1,188,750,186,-1,750,188,751,-1,972,190,819,-1,972,950,190,-1,944,761,660,-1,944,945,761,-1,942,938,940,-1,942,595,938,-1,941,972,939,-1,972,941,971,-1,955,591,413,-1,713,591,955,-1,392,752,185,-1,392,182,752,-1,418,408,410,-1,805,408,418,-1,645,807,657,-1,646,807,645,-1,358,651,359,-1,651,358,650,-1,934,356,936,-1,354,356,934,-1,366,406,178,-1,366,933,406,-1,179,537,820,-1,407,537,179,-1,656,931,930,-1,656,932,931,-1,929,185,184,-1,185,929,393,-1,391,820,537,-1,390,820,391,-1,662,485,484,-1,686,485,662,-1,792,791,789,-1,792,48,791,-1,363,694,928,-1,363,42,694,-1,385,253,388,-1,385,362,253,-1,440,5,877,-1,3,5,440,-1,251,878,626,-1,251,248,878,-1,380,12,235,-1,12,380,237,-1,738,926,924,-1,738,773,926,-1,14,30,236,-1,31,30,14,-1,922,431,379,-1,669,431,922,-1,671,683,682,-1,795,683,671,-1,373,70,371,-1,373,61,70,-1,580,377,676,-1,377,580,378,-1,676,681,580,-1,676,675,681,-1,9,368,672,-1,369,368,9,-1,913,908,909,-1,913,907,908,-1,678,914,776,-1,997,914,678,-1,27,912,24,-1,370,912,27,-1,911,907,913,-1,911,916,907,-1,909,368,25,-1,909,910,368,-1,908,674,677,-1,674,908,906,-1,683,372,371,-1,372,683,921,-1,904,915,905,-1,904,680,915,-1,678,20,997,-1,21,20,678,-1,903,27,23,-1,27,903,28,-1,375,788,11,-1,788,375,786,-1,818,342,160,-1,818,345,342,-1,252,772,443,-1,252,927,772,-1,362,42,363,-1,362,45,42,-1,900,244,16,-1,900,899,244,-1,348,818,357,-1,348,345,818,-1,350,150,149,-1,350,353,150,-1,355,343,349,-1,343,355,701,-1,845,339,523,-1,339,845,340,-1,898,444,451,-1,898,895,444,-1,897,323,117,-1,897,454,323,-1,503,333,332,-1,628,333,503,-1,894,206,984,-1,894,204,206,-1,893,487,473,-1,484,487,893,-1,730,782,883,-1,730,954,782,-1,610,892,510,-1,610,563,892,-1,322,318,316,-1,322,321,318,-1,891,317,889,-1,891,315,317,-1,890,584,888,-1,584,890,887,-1,271,313,270,-1,271,311,313,-1,716,866,312,-1,716,881,866,-1,865,882,731,-1,882,865,864,-1,884,863,732,-1,884,861,863,-1,764,617,798,-1,764,614,617,-1,723,302,301,-1,723,488,302,-1,294,109,282,-1,294,296,109,-1,118,801,121,-1,118,120,801,-1,290,766,291,-1,290,468,766,-1,510,105,110,-1,510,286,105,-1,279,129,280,-1,279,130,129,-1,154,365,276,-1,148,365,154,-1,424,718,636,-1,424,721,718,-1,885,884,883,-1,885,717,884,-1,420,881,421,-1,420,882,881,-1,880,310,879,-1,880,716,310,-1,263,960,264,-1,958,960,263,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=8 */
		private int[] getrcoscart_Geo_6_202_coordIndex_8()
		{
			int[] value = {499,382,497,-1,792,382,499,-1,734,255,497,-1,734,254,255,-1,386,250,790,-1,250,386,248,-1,878,224,226,-1,224,878,387,-1,231,247,83,-1,247,231,980,-1,246,980,231,-1,245,980,246,-1,243,96,241,-1,96,243,255,-1,31,13,735,-1,13,31,14,-1,775,235,236,-1,739,235,775,-1,232,246,231,-1,246,232,667,-1,223,741,75,-1,741,223,225,-1,621,467,469,-1,621,876,467,-1,870,464,461,-1,870,727,464,-1,874,217,872,-1,218,217,874,-1,456,873,871,-1,457,873,456,-1,619,273,620,-1,273,619,274,-1,617,869,622,-1,617,616,869,-1,624,222,798,-1,624,220,222,-1,996,460,459,-1,875,460,996,-1,779,89,4,-1,868,89,779,-1,311,275,313,-1,275,311,867,-1,859,215,709,-1,215,859,309,-1,462,866,864,-1,866,462,466,-1,865,862,463,-1,865,863,862,-1,625,719,623,-1,861,719,625,-1,858,720,722,-1,720,858,860,-1,272,313,275,-1,272,314,313,-1,852,856,855,-1,852,970,856,-1,641,758,760,-1,758,641,640,-1,641,518,639,-1,641,516,518,-1,848,472,609,-1,850,472,848,-1,851,326,329,-1,968,326,851,-1,606,475,600,-1,608,475,606,-1,520,209,208,-1,209,520,561,-1,847,562,853,-1,562,847,846,-1,843,603,966,-1,797,603,843,-1,844,197,605,-1,198,197,844,-1,966,202,201,-1,966,603,202,-1,187,842,841,-1,186,842,187,-1,479,840,839,-1,838,840,479,-1,549,482,836,-1,549,551,482,-1,543,837,834,-1,543,545,837,-1,832,955,830,-1,955,832,713,-1,833,829,831,-1,833,827,829,-1,481,596,828,-1,596,481,480,-1,586,594,826,-1,586,824,594,-1,825,823,822,-1,588,823,825,-1,753,835,412,-1,835,753,821,-1,181,752,182,-1,181,548,752,-1,701,687,700,-1,687,701,688,-1,173,820,390,-1,173,172,820,-1,686,163,167,-1,163,686,662,-1,756,650,358,-1,756,819,650,-1,159,818,160,-1,159,352,818,-1,157,757,430,-1,157,156,757,-1,155,817,158,-1,193,817,155,-1,195,814,816,-1,812,814,195,-1,815,759,813,-1,760,759,815,-1,809,143,142,-1,809,810,143,-1,141,808,142,-1,399,808,141,-1,807,805,804,-1,805,807,408,-1,654,805,418,-1,803,805,654,-1,806,658,804,-1,658,806,389,-1,162,806,803,-1,162,802,806,-1,470,139,113,-1,470,618,139,-1,604,125,124,-1,280,125,604,-1,724,133,799,-1,724,134,133,-1,765,114,729,-1,114,765,112,-1,109,106,282,-1,109,107,106,-1,97,602,98,-1,602,97,100,-1,79,233,735,-1,79,80,233,-1,19,629,18,-1,19,77,629,-1,795,921,683,-1,921,795,794,-1,432,34,961,-1,34,432,32,-1,384,43,45,-1,384,791,43,-1,383,790,250,-1,790,383,789,-1,671,923,433,-1,671,682,923,-1,61,905,915,-1,61,60,905,-1,906,905,674,-1,904,905,906,-1,787,903,786,-1,787,679,903,-1,904,22,21,-1,904,906,22,-1,17,735,15,-1,735,17,79,-1,910,672,368,-1,377,672,910,-1,422,978,954,-1,422,785,978,-1,954,783,782,-1,954,978,783,-1,299,784,781,-1,637,784,299,-1};
			return value;
		}

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

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getrfreecrt_Geo_6_207_coordIndex_2()
		{
			int[] value = {136,161,137,-1,146,57,132,-1,146,55,57,-1,53,38,54,-1,53,63,38,-1,143,47,46,-1,47,143,140,-1,142,138,129,-1,142,141,138,-1,139,127,130,-1,139,144,127,-1,49,40,50,-1,49,41,40,-1,43,163,60,-1,43,42,163,-1,134,137,132,-1,135,137,134,-1,57,36,133,-1,57,37,36,-1,128,127,125,-1,128,130,127,-1,40,126,50,-1,126,40,124,-1};
			return value;
		}
		/** Large attribute array: IndexedFaceSet DEF='sternum_Geo' coordIndex field, scene-graph level=6, element #17, 12264 total numbers.
		 * Reassemble split array as single method to improve readability and runnability.
		 * Provide large array values via separate methods, hoping to avoid 'code too large' Java compilation errors. 
		 * Individual Java methods (including aggregated initializations) are limited to 64KB.
		 * @see https://stackoverflow.com/questions/2407912/code-too-large-compilation-error-in-java
		 * @see https://stackoverflow.com/questions/11437905/java-too-many-constants-jvm-error
		 */
		private MFInt32 getsternum_Geo_6_17_coordIndex()
		{
			MFInt32 sternum_Geo_6_17_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getsternum_Geo_6_17_coordIndex_1()))
				.append(new MFInt32(getsternum_Geo_6_17_coordIndex_2()))
				.append(new MFInt32(getsternum_Geo_6_17_coordIndex_3()))
				.append(new MFInt32(getsternum_Geo_6_17_coordIndex_4()))
				.append(new MFInt32(getsternum_Geo_6_17_coordIndex_5()))
				.append(new MFInt32(getsternum_Geo_6_17_coordIndex_6()))
				.append(new MFInt32(getsternum_Geo_6_17_coordIndex_7()))
				.append(new MFInt32(getsternum_Geo_6_17_coordIndex_8()))
				.append(new MFInt32(getsternum_Geo_6_17_coordIndex_9()))
				.append(new MFInt32(getsternum_Geo_6_17_coordIndex_10()))
				.append(new MFInt32(getsternum_Geo_6_17_coordIndex_11()))
				.append(new MFInt32(getsternum_Geo_6_17_coordIndex_12()))
				.append(new MFInt32(getsternum_Geo_6_17_coordIndex_13()));
			return sternum_Geo_6_17_coordIndex;
		}
		/** Large attribute array: Coordinate DEF='sternum_Coord' point field, scene-graph level=7, element #17, 4605 total numbers made up of 1535 3-tuple values.
		 * Reassemble split array as single method to improve readability and runnability.
		 * Provide large array values via separate methods, hoping to avoid 'code too large' Java compilation errors. 
		 * Individual Java methods (including aggregated initializations) are limited to 64KB.
		 * @see https://stackoverflow.com/questions/2407912/code-too-large-compilation-error-in-java
		 * @see https://stackoverflow.com/questions/11437905/java-too-many-constants-jvm-error
		 */
		private MFVec3f getsternum_Coord_7_17_point()
		{
			MFVec3f sternum_Coord_7_17_point = new MFVec3f()/*2.finalize*/
				.append(new MFVec3f(getsternum_Coord_7_17_point_1()))
				.append(new MFVec3f(getsternum_Coord_7_17_point_2()));
			return sternum_Coord_7_17_point;
		}
		/** Large attribute array: IndexedFaceSet DEF='lcartend_Geo' coordIndex field, scene-graph level=6, element #22, 5548 total numbers.
		 * Reassemble split array as single method to improve readability and runnability.
		 * Provide large array values via separate methods, hoping to avoid 'code too large' Java compilation errors. 
		 * Individual Java methods (including aggregated initializations) are limited to 64KB.
		 * @see https://stackoverflow.com/questions/2407912/code-too-large-compilation-error-in-java
		 * @see https://stackoverflow.com/questions/11437905/java-too-many-constants-jvm-error
		 */
		private MFInt32 getlcartend_Geo_6_22_coordIndex()
		{
			MFInt32 lcartend_Geo_6_22_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getlcartend_Geo_6_22_coordIndex_1()))
				.append(new MFInt32(getlcartend_Geo_6_22_coordIndex_2()))
				.append(new MFInt32(getlcartend_Geo_6_22_coordIndex_3()))
				.append(new MFInt32(getlcartend_Geo_6_22_coordIndex_4()))
				.append(new MFInt32(getlcartend_Geo_6_22_coordIndex_5()))
				.append(new MFInt32(getlcartend_Geo_6_22_coordIndex_6()));
			return lcartend_Geo_6_22_coordIndex;
		}
		/** Large attribute array: Coordinate DEF='lcartend_Coord' point field, scene-graph level=7, element #22, 2469 total numbers made up of 823 3-tuple values.
		 * Reassemble split array as single method to improve readability and runnability.
		 * Provide large array values via separate methods, hoping to avoid 'code too large' Java compilation errors. 
		 * Individual Java methods (including aggregated initializations) are limited to 64KB.
		 * @see https://stackoverflow.com/questions/2407912/code-too-large-compilation-error-in-java
		 * @see https://stackoverflow.com/questions/11437905/java-too-many-constants-jvm-error
		 */
		private MFVec3f getlcartend_Coord_7_22_point()
		{
			MFVec3f lcartend_Coord_7_22_point = new MFVec3f(new double[] {2.6748,44.1713,2.531,2.7039,44.09,2.5593,2.7285,44.1248,2.5158,2.7197,44.1581,2.4875,2.6621,44.1848,2.4886,2.6647,44.1881,2.5041,2.7084,44.1452,2.4618,2.8147,43.7358,2.3629,2.8046,43.7362,2.3421,2.823,43.8741,2.3579,2.829,43.8769,2.4024,2.7364,43.9722,2.3537,2.7658,43.8387,2.3423,2.7641,43.8388,2.3246,2.7439,43.97,2.3686,2.7993,43.7798,2.4531,2.841,43.7101,2.3381,2.8193,43.7136,2.3539,2.8379,43.7685,2.4372,2.6622,44.2062,2.5147,2.6796,44.2265,2.4818,2.688,44.2266,2.5216,2.6576,44.1977,2.4891,2.7885,43.9885,2.4022,2.8037,43.9862,2.4392,2.7848,43.7749,2.3392,2.762,43.9924,2.3151,2.7983,43.8601,2.2871,2.7084,44.1041,2.3994,2.7043,44.1981,2.4061,2.672,44.1539,2.4382,2.7264,44.1272,2.3562,2.7822,44.0786,2.5006,2.768,44.0987,2.4664,3.3345,43.4561,2.3969,3.2821,43.4945,2.4071,3.2932,43.5047,2.442,3.4007,43.2954,2.3177,3.391,43.2482,2.2586,3.3106,43.422,2.364,3.4303,43.2326,2.2667,3.4348,43.2139,2.2511,3.4462,43.2221,2.2053,3.4139,43.2377,2.3295,3.3072,43.4677,2.5399,3.3695,43.3146,2.4881,3.294,43.4493,2.5191,3.354,43.3014,2.4553,3.2162,43.5013,2.4301,3.2465,43.5058,2.4917,3.2327,43.4858,2.4353,3.251,43.534,2.5048,3.2752,43.3964,2.3687,3.3721,43.1873,2.198,3.2747,43.3852,2.323,3.3708,43.189,2.2285,3.4371,43.1426,2.1998,3.4202,43.1709,2.2156,3.4246,43.1581,2.2545,3.4099,43.202,2.3966,3.4455,43.1392,2.2751,3.3939,43.208,2.3932,3.793,42.5993,2.0059,3.7549,42.676,2.031,3.8566,42.5823,2.025,3.8272,42.6969,2.0931,3.9029,42.5215,2.0146,3.8735,42.4793,1.946,3.8537,42.4928,1.9778,3.9466,42.5251,1.9755,3.858,42.6637,2.1221,3.7333,42.7484,2.0707,3.6512,42.8264,2.0997,3.7109,42.7957,2.0995,3.657,42.7462,2.0565,3.7803,42.5284,1.946,3.8121,42.5562,1.8909,3.7165,42.6368,1.955,4.3186,42.1,1.42,4.2851,42.1435,1.4259,4.305,42.1423,1.4333,4.3085,42.0926,1.4024,4.4081,42.1964,1.5452,4.4474,42.0967,1.4587,4.4289,42.0971,1.4512,4.4281,42.2078,1.5573,4.4287,42.2007,1.4847,4.4295,42.1303,1.4465,4.3435,42.1869,1.4156,4.3214,42.212,1.4859,4.364,42.2108,1.4479,4.3094,42.1782,1.455,4.4041,42.0463,1.4152,4.3872,42.0473,1.4085,4.389,42.099,1.4006,4.415,42.0972,1.419,4.3967,42.1667,1.4294,4.3475,42.1641,1.4065,4.4118,42.2181,1.4913,4.3942,42.2225,1.4829,4.608,41.7632,0.8856,4.6142,41.7416,0.9071,4.5889,41.722,0.8667,4.563,41.758,0.8614,4.5119,41.8459,1.024,4.5466,41.8905,1.0944,4.5256,41.8635,1.0013,4.5667,41.7931,0.9043,4.5962,41.8348,1.0277,4.6066,41.8713,0.9982,4.5748,41.8894,1.092,4.5656,41.7149,0.8494,4.5108,41.7702,0.9081,4.5256,41.79,0.8908,0.6773,45.3205,2.8648,0.6788,45.3215,2.849,0.7131,45.2745,2.7884,0.7148,45.2545,2.817,0.6113,45.358,2.8217,0.6081,45.3269,2.7827,0.5966,45.4395,2.6356,0.6744,45.5947,2.6499,0.6824,45.6134,2.629,0.6155,45.4481,2.6528,0.6572,45.4875,2.8493,0.645,45.4926,2.8776,0.7169,45.6409,2.7,0.7051,45.6104,2.7859,0.7138,45.6415,2.7997,0.7811,45.6711,2.6926,0.6057,45.3491,2.7416,0.5974,45.4536,2.6926,0.6631,45.3115,2.7181,0.6014,45.4645,2.7514,0.6222,45.5641,2.7571,0.6306,45.5739,2.72,0.6175,45.5506,2.6905,0.6054,45.4758,2.81,0.2713,44.3779,3.0176,0.2552,44.4039,3.0819,0.2802,44.4848,3.0948,0.2837,44.6053,3.0407,0.3142,44.6181,3.0195,0.259,44.547,2.996,0.3128,44.6066,3.0885,0.3758,44.6574,3.0768,0.3554,44.6396,3.0662,0.3172,44.6207,3.1028,0.2488,44.5822,3.054,0.2868,44.542,3.094,0.2377,44.5487,3.0518,0.2911,44.539,3.1083,0.2695,44.5295,3.1176,0.6675,45.1541,2.8153,0.593,45.1186,2.8246,0.6588,45.1204,2.8848,0.5765,45.0927,2.8961,0.4987,44.9757,2.8652,0.5405,45.0766,2.8364,0.5255,45.0397,2.8069,0.685,45.1627,2.8945,0.7207,45.2106,2.7971,0.4326,44.6814,3.0164,0.4075,44.6738,2.9812,0.3897,44.653,3.0289,0.4261,44.6746,3.0357,0.3942,44.6829,3.0867,0.4185,44.5803,2.9034,0.4381,44.5874,2.8839,0.356,44.4852,2.8663,0.5164,44.8492,2.8249,0.5522,44.8475,2.7985,0.4991,44.7409,2.87,0.5021,44.8742,2.9692,0.4952,44.9834,2.9179,0.4774,44.892,2.942,0.5499,45.0159,2.9302,0.4843,44.8711,2.8447,0.4507,44.7359,2.9579,0.4445,44.7291,2.9315,0.4357,44.7041,2.9736,0.4195,44.7007,2.9382,0.4609,44.7207,2.9054,0.4648,44.7896,2.9169,0.4707,44.8057,2.8835,0.4604,44.712,3.025,0.3296,44.6139,2.9949,0.345,44.6099,2.9703,0.3944,44.6724,2.9448,0.4665,44.8185,2.94,0.4805,44.8793,2.894,0.2425,44.4722,2.969,0.3,44.407,2.9428,0.227,44.4729,3.0092,0.2623,44.3939,3.0164,0.3139,44.5535,2.9358,0.3853,44.5344,2.8944,0.352,44.489,2.8852,0.2292,44.5151,3.0428,0.4475,44.6215,2.8944,0.4789,44.6426,2.8838,0.4743,44.6371,2.8514,0.4847,44.7696,2.9891,0.5015,44.9642,2.8135,0.337,44.5886,2.9527,0.5314,44.88,2.9903,2.4312,44.9705,2.6428,2.441,44.8799,2.6366,2.4159,44.9665,2.6387,2.42,44.8802,2.6247,2.343,44.8986,2.5166,2.373,44.8415,2.5292,2.3285,44.8859,2.5146,2.3598,44.8204,2.5226,2.3788,45.103,2.6145,2.3779,45.0984,2.5932,2.2912,45.1624,2.5527,2.2816,45.191,2.5619,2.3612,44.8069,2.5051,2.3946,44.7576,2.5333,2.4046,44.7465,2.5194,2.3838,45.1289,2.5352,2.4323,45.0664,2.5614,2.2387,45.7343,2.5105,2.2435,45.9662,2.486,2.2427,45.9671,2.4901,2.2407,45.7357,2.5049,2.2186,45.6473,2.4752,2.2185,45.647,2.4749,2.2224,45.6523,2.4716,0.7842,45.8408,2.6332,0.7849,45.837,2.6291,0.7997,45.8328,2.637,2.05,46.2652,2.2973,2.0589,46.2788,2.307,2.0469,46.2382,2.318,2.2161,45.662,2.4632,2.2239,45.757,2.4941,2.1696,45.8302,2.3626,2.2216,45.6573,2.4518,2.1659,45.8379,2.3747,2.1604,46.2109,2.287,2.2455,46.1086,2.3607,2.2967,45.985,2.336,2.2484,45.9198,2.3279,2.2229,46.0385,2.308,2.3096,45.8339,2.4324,2.3058,45.7582,2.4042,2.2899,45.9962,2.4046,0.7402,45.7915,2.5462,0.6935,45.8912,2.534,0.6298,45.9467,2.539,0.6932,45.9395,2.6,0.5432,46.2413,2.4082,0.6295,46.4624,2.366,0.5373,46.2448,2.3863,0.5808,46.3535,2.4003,0.6234,46.2845,2.6375,0.6656,46.4768,2.511,0.619,46.2698,2.6221,0.6195,46.3703,2.5399,0.4869,46.2796,2.4604,0.4994,46.3177,2.486,0.6304,46.4005,2.4464,0.4903,46.2053,2.5307,0.5094,46.2775,2.5535,0.5287,46.0095,2.5463,0.5808,46.0285,2.4766,0.5143,46.0765,2.5021,0.5104,46.0802,2.5627,0.544,46.0126,2.6197,0.5539,46.0921,2.6221,0.5357,46.2128,2.5958,0.5611,45.9849,2.5892,0.6711,45.9704,2.6611,0.4939,46.1959,2.4672,0.5509,47.2344,2.2845,0.5621,47.2357,2.2908,0.5612,47.2364,2.2907,0.5612,47.2368,2.2905,2.1174,47.2594,2.1114,2.1007,47.3929,2.0663,2.1035,47.3921,2.0775,2.1203,47.262,2.0987,2.0851,47.489,2.0418,2.0402,47.6666,1.9692,2.0405,47.6656,1.9709,2.0821,47.4848,2.0366,1.988,47.7764,1.9048,1.9372,47.8613,1.8466,1.9365,47.8624,1.8472,1.9885,47.775,1.9047,1.9047,47.8759,1.8008,1.9067,47.8574,1.7886,1.9032,47.8618,1.7831,1.9085,47.8713,1.8032,1.8866,47.7836,1.8196,1.9189,47.7878,1.7774,2.11,47.2319,1.998,2.0646,47.0909,2.1096,2.0513,47.0911,2.0906,2.1386,47.2437,2.0297,2.0814,47.1174,2.1216,1.8958,47.7073,1.8251,1.9094,47.6304,1.8353,1.9303,47.71,1.7799,1.9459,47.638,1.799,2.0699,47.3861,2.0641,2.0851,47.2453,2.1088,2.1622,47.4533,1.9328,1.9574,47.4016,1.9555,1.9261,47.628,1.8492,1.9483,47.3883,1.9487,2.0224,47.6617,1.9711,2.0589,47.485,2.0385,2.0128,47.6599,1.9493,2.0566,47.4843,2.0272,2.1002,47.1504,2.1371,2.0885,47.2472,2.116,2.1375,47.1586,2.1113,1.8876,47.8469,1.8306,2.1752,47.5672,1.8786,2.0123,47.1824,2.0491,0.4838,47.5593,1.9071,0.4827,47.5672,1.8933,0.4478,47.2161,2.0104,0.4587,47.2312,2.0245,0.5037,47.1114,2.1249,0.5538,47.0371,2.1307,0.5434,47.262,2.2332,0.5375,47.1241,2.2482,0.611,47.0617,2.3059,0.5749,47.72,1.9354,0.5623,47.6896,1.989,0.6265,47.8167,1.9004,0.5975,47.7748,1.9647,0.4339,47.4762,2.0292,0.475,47.4992,2.0772,0.4726,47.6098,2.0067,0.4518,47.6037,1.9416,0.5229,47.6733,1.9091,0.4412,47.4921,1.9685,0.423,47.3018,2.1029,0.4274,47.2792,2.0476,0.4357,47.1729,2.1262,0.4582,47.6291,1.9655,0.4518,47.1639,2.1632,0.4518,47.1824,2.1874,0.5561,48.9019,1.5125,0.536,48.8945,1.52,0.5209,48.9126,1.5253,0.5282,48.9382,1.5041,0.5351,48.8914,1.5232,0.5499,48.8673,1.5377,0.5102,48.8996,1.5414,0.5196,48.9078,1.5302,1.7656,48.7519,1.543,1.7128,48.8741,1.4604,1.7099,48.8782,1.4663,1.7701,48.7486,1.5395,1.8049,48.6347,1.5888,1.8072,48.634,1.5827,0.6093,49.1138,1.3139,0.611,49.1112,1.3265,0.6421,49.189,1.2213,0.5607,48.9031,1.5068,0.5346,48.8797,1.4967,0.5379,48.8834,1.4933,0.5402,48.874,1.5168,0.525,48.8691,1.5042,0.5303,48.8625,1.5076,0.4304,48.8834,1.4544,0.4375,48.8764,1.46,0.4764,48.8804,1.3144,0.4771,48.8885,1.3097,0.481,48.9345,1.2574,0.483,48.9389,1.2555,0.4902,48.8508,1.3346,0.4894,48.8618,1.3279,0.4822,48.916,1.2641,0.4808,48.9061,1.2683,0.4486,48.9504,1.2446,0.4676,48.9496,1.2348,0.5024,48.9647,1.2473,0.4244,48.8897,1.3677,0.4986,48.903,1.305,0.4168,48.8816,1.3689,0.5401,48.8784,1.5123,0.4762,49.06,1.2756,0.4391,49.0046,1.33,0.4855,49.0703,1.2774,0.3985,48.7088,1.4913,0.4743,48.6612,1.4435,0.4902,48.6047,1.5035,0.4019,48.7637,1.4502,0.3897,48.7937,1.4698,0.4067,48.7071,1.5302,0.4182,48.7749,1.5092,0.5309,48.5282,1.6465,0.5132,48.6636,1.6264,0.5026,48.6329,1.5667,0.5153,48.6956,1.5659,0.551,48.8613,1.541,0.5326,48.8561,1.5103,0.6213,49.1129,1.2493,0.626,49.1285,1.2129,0.483,49.0533,1.3027,0.437,48.8706,1.4618,0.4032,48.6904,1.5201,0.4943,48.6003,1.5432,0.5092,48.8959,1.5455,0.5035,48.6391,1.6835,0.531,48.9443,1.4998,0.5975,48.424,1.6421,0.5502,48.4649,1.716,0.5619,48.4777,1.6146,0.4575,49.0005,1.3026,1.7441,48.815,1.3889,1.7627,48.8009,1.4193,1.7693,48.7884,1.4304,1.7908,48.7371,1.4571,1.8126,48.6967,1.4711,1.7599,48.721,1.4194,1.7951,48.6597,1.4624,1.6452,48.8477,1.3494,1.6355,48.8564,1.3352,1.6427,48.869,1.3591,1.6441,48.8887,1.3463,1.7966,48.6293,1.5727,1.8211,48.5571,1.5855,1.797,48.5653,1.5769,1.741,48.8652,1.4042,1.7701,48.8208,1.4321,1.7455,48.8211,1.3938,1.7309,48.8801,1.3836,1.7514,48.8211,1.4052,1.7129,48.8719,1.3672,1.8564,48.6529,1.5233,1.8662,48.6159,1.5282,1.8233,48.676,1.4776,1.7996,48.7496,1.4821,1.6604,48.8872,1.3881,1.677,48.8989,1.4073,1.7623,48.7449,1.5329,1.6957,48.854,1.3491,1.4654,50.2479,0.412,1.4726,50.2426,0.4102,1.4617,50.2382,0.3994,1.4699,50.2324,0.403,1.4618,50.1831,0.3895,1.4713,50.1805,0.3945,1.4914,50.0448,0.4194,1.4833,50.0438,0.4135,1.501,49.9377,0.4554,1.5302,49.8355,0.5126,1.5242,49.8315,0.5101,1.5088,49.9384,0.462,1.5667,49.7481,0.5652,1.6269,49.6549,0.6388,1.6214,49.6501,0.6345,1.5723,49.7518,0.5675,1.7325,49.541,0.765,1.7334,49.5456,0.7648,1.7259,49.5608,0.7869,1.7258,49.557,0.7897,1.6384,49.7734,0.7738,1.6096,49.8881,0.7229,1.6068,49.8924,0.728,1.6414,49.7712,0.7696,1.4807,50.2265,0.444,1.4866,50.2195,0.4392,1.0237,49.685,0.6744,0.9688,49.6339,0.7075,0.9604,49.6178,0.7569,0.9715,49.5981,0.8387,0.9737,49.5983,0.8391,0.9651,49.6049,0.8362,1.4924,50.0543,0.4431,1.4763,50.1783,0.4116,1.6159,49.6808,0.6333,1.5693,49.7574,0.5756,1.7,49.595,0.8152,1.6655,49.6583,0.8132,1.6727,49.6611,0.8172,1.6886,49.5996,0.8085,1.6008,49.8837,0.7183,1.6328,49.771,0.7659,1.4818,50.2043,0.421,1.4949,50.1734,0.4642,1.5136,50.145,0.4454,1.5206,50.1144,0.4588,1.5091,50.1095,0.4425,1.6741,49.6508,0.6838,1.6852,49.6677,0.7214,1.7004,49.6004,0.7531,1.6661,49.6046,0.7061,1.6391,49.6976,0.6473,1.6858,49.6176,0.7779,1.2702,50.0049,0.6364,1.2421,50.0616,0.6195,1.187,50.0754,0.5703,1.0258,49.9168,0.6144,1.1018,49.8316,0.5759,0.9473,49.8069,0.6792,1.0249,49.6858,0.6788,0.929,49.7672,0.8029,0.9943,49.6444,0.8567,0.9723,49.8043,0.806,1.1166,49.678,0.8616,0.9215,49.8677,0.7234,0.9013,49.7462,0.7842,1.1481,49.9949,0.7263,1.1471,50.0257,0.6919,1.0364,50.0193,0.6606,1.1264,50.0481,0.6485,1.0951,50.0331,0.613,1.2883,50.0602,0.7486,1.2745,50.0927,0.7044,1.3061,49.9801,0.7035,1.0103,49.9662,0.6756,1.0533,49.9958,0.5981,0.9701,49.7139,0.634,1.2186,50.0908,0.6089,1.2958,49.9558,0.8009,1.3085,49.8924,0.7848,1.2865,49.8004,0.8201,1.256,49.8525,0.8393,0.9067,49.7538,0.7482,0.963,49.628,0.7603,0.9675,49.6156,0.8263,1.2138,49.9885,0.5854,1.2623,49.9967,0.6422,1.1415,49.9108,0.5699,1.2709,49.8079,0.8061,1.1357,49.6689,0.8727,1.0307,49.7767,0.5749,1.0998,49.8289,0.5629,1.0584,49.8407,0.5458,1.252,50.0924,0.6652,1.6622,49.726,0.6724,1.6298,49.8339,0.6113,1.5845,49.7749,0.5884,1.6078,49.8751,0.5871,1.6016,49.878,0.6831,1.641,49.762,0.7378,1.7031,49.575,0.7908,1.7086,49.5666,0.7689,1.692,49.5726,0.7451,1.6614,49.6918,0.771,1.5235,50.1138,0.4883,1.5044,50.1791,0.4735,1.5674,49.9769,0.6422,1.5832,49.9842,0.6599,1.6841,49.5844,0.6984,1.5251,50.1338,0.5332,1.5256,50.1327,0.5344,1.5274,50.1282,0.5261,1.6981,49.5925,0.8189,1.6688,49.6631,0.8208,1.5809,49.9908,0.6667,1.7087,48.8629,1.4585,1.7316,48.7007,1.399,1.6618,48.6641,1.394,1.7286,48.5456,1.4801,1.6622,48.6501,1.3895,1.7234,48.5526,1.488,0.4081,48.9086,1.4087,0.4271,48.8946,1.3657,0.5275,48.5232,1.5246,0.4847,48.4787,1.5071,0.5745,49.0939,1.2071,0.6032,49.1213,1.1998,0.4804,49.0117,1.3539,0.4449,48.8989,1.4445,0.586,49.0346,1.3417,0.4598,48.9186,1.2497,0.4466,48.9471,1.2462,0.3916,48.8881,1.4159,0.4168,48.8754,1.371,0.4242,48.8672,1.3753,0.3969,48.877,1.4211,0.3932,48.8938,1.4137,0.4319,48.8887,1.4512,0.4053,48.9043,1.4111,0.443,48.8944,1.4485,0.526,48.8743,1.5009,0.6714,49.2315,1.1488,0.6771,49.2295,1.1507,0.6591,49.2237,1.1486,0.4658,48.9608,1.2238,0.5084,48.9746,1.2427,0.569,49.1567,1.1469,1.6723,48.9311,1.4011,1.672,48.931,1.4017,1.6801,48.9212,1.4037,0.4741,47.2905,2.1767,0.5369,47.5644,2.0843,0.5423,47.0839,2.2035,0.6586,46.9887,2.2432,0.5763,47.7864,1.8605,2.0972,47.1518,2.1304,1.8932,47.8308,1.8362,1.8977,47.7849,1.8256,1.9191,47.8347,1.8534,1.9138,47.8449,1.8604,2.0739,47.3851,2.0752,2.049,47.0717,2.0942,2.0021,47.1764,2.0381,2.0427,47.7737,1.8434,2.1203,47.6965,1.8494,2.0793,47.6735,1.794,2.018,47.7773,1.7781,1.9694,47.76,1.9136,1.9651,47.7491,1.8997,1.912,47.7085,1.8328,2.0842,47.1093,2.1281,1.9636,47.3149,1.9809,1.9726,47.3289,1.9918,2.0404,47.1854,1.9905,2.0856,47.0753,2.0582,2.0842,47.071,2.0591,2.0423,47.1871,1.9939,0.651,46.0532,2.676,0.729,45.9058,2.6926,0.6538,46.049,2.6949,0.5779,46.0191,2.4614,0.5899,46.001,2.4643,0.6362,45.89,2.5019,2.1727,46.1372,2.413,2.2282,45.9591,2.483,2.1175,46.0701,2.3142,2.1103,46.0622,2.3306,2.1641,45.829,2.3573,2.164,45.8296,2.3572,2.4173,44.9685,2.6177,2.45,44.9956,2.5702,2.4097,44.7797,2.5585,2.4544,44.8641,2.5308,2.4227,44.8158,2.5885,2.4557,44.8969,2.5548,2.281,45.0352,2.4937,2.326,44.8743,2.501,2.2852,45.0336,2.5111,2.2602,45.1664,2.5348,2.305,45.0452,2.5144,2.2822,45.1536,2.5435,0.6001,45.025,2.9488,0.5641,44.9846,2.7814,0.4467,44.6761,2.9086,0.4259,44.6296,2.9157,0.2691,44.5124,2.9377,0.5217,45.0572,2.8858,0.299,44.5398,2.9365,0.3289,44.5673,2.9351,0.4628,44.726,3.0554,0.6229,44.9851,2.756,0.2732,44.4911,3.08,0.3078,44.3889,2.9328,0.2638,44.4799,3.1037,0.5877,45.0671,2.7778,0.6763,45.102,2.7663,0.6906,45.1335,2.7388,0.7183,45.2506,2.7911,0.7105,45.2446,2.7591,0.6742,45.293,2.6959,4.5746,41.8826,0.9956,4.6242,41.7373,0.8953,4.613,41.8352,1.0229,4.5981,41.7099,0.8467,4.3599,42.1355,1.3983,4.383,42.211,1.5525,4.3534,42.248,1.5572,4.3537,42.2178,1.5381,4.3031,42.2309,1.4962,4.4127,42.0299,1.4039,4.3816,42.028,1.3882,4.285,42.1907,1.4575,3.9735,42.4983,1.9162,3.932,42.4841,1.8752,3.698,42.6356,2.0043,3.787,42.5447,1.9812,3.8299,42.5577,1.9955,3.3265,43.46,2.4538,2.8362,43.8804,2.4554,2.7321,44.0022,2.5601,2.794,43.8038,2.461,2.6904,44.2038,2.5522,2.6735,44.1783,2.5389,2.8292,43.7873,2.2852,2.7829,43.7656,2.323,2.7831,43.8726,2.5195,2.8343,43.7068,2.3147,2.8097,43.7164,2.3272,2.7547,44.1057,2.4352,2.6775,44.1494,2.4476,2.7857,43.8659,2.5285,2.7591,43.934,2.5533,2.7324,44.0025,2.5726,2.7605,43.9329,2.5624,2.7032,44.0916,2.5682,2.7139,44.1012,2.4082,2.8136,43.9769,2.4892,2.7771,43.9391,2.5747,2.7449,44.0176,2.5846,2.7207,44.1037,2.5842,2.8046,43.8686,2.5321,3.3791,43.3177,2.3959,3.7487,42.8043,2.1351,3.7924,42.7709,2.1329,3.6662,42.7637,2.0128,3.7091,42.8383,2.1604,3.6628,42.8641,2.0613,3.731,42.8823,2.1345,3.8939,42.6788,2.1005,3.785,42.7904,2.1835,3.8131,42.8214,2.1641,4.3894,42.2393,1.5737,4.4911,41.7687,0.8903,4.4898,41.8477,1.0144,4.567,41.7076,0.834,4.5914,41.8983,1.0979,0.6054,45.0294,2.9774,0.5515,44.8483,2.7808,0.621,44.9836,2.7334,2.4311,45.0117,2.5216,2.4471,45.0033,2.5412,2.4351,44.9925,2.5214,2.4406,45.031,2.5405,2.4308,45.0262,2.5255,2.4321,45.0322,2.5291,2.4527,44.9463,2.563,2.4198,44.8923,2.6043,2.4021,44.948,2.5025,2.4392,44.977,2.5223,2.4239,44.9057,2.5106,2.4035,44.7842,2.5396,2.4134,44.757,2.5702,2