package Savage.ShipsMilitary.Seafighter;

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.Rendering.*;
import org.web3d.x3d.jsail.Shape.*;

// Javadoc metadata annotations follow, see below for X3DJSAIL Java source code.
/**
 * <p> Model of HSV-1 Seafighter. </p>
 <p> Related links: Catalog page <a href="../../../../ShipsMilitary/Seafighter/SeafighterIndex.html" target="_blank">Seafighter</a>,  source <a href="../../../../ShipsMilitary/Seafighter/Seafighter.java">Seafighter.java</a>, <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;">&nbsp; Document Metadata </td>
		</tr>

		<tr>
			<td style="text-align:right; vertical-align: text-top;"> <i> title </i> </td>
			<td> <a href="../../../../ShipsMilitary/Seafighter/Seafighter.x3d">Seafighter.x3d</a> </td>
		</tr>
		<tr>
			<td style="text-align:right; vertical-align: text-top;"> <i> description </i> </td>
			<td> Model of HSV-1 Seafighter </td>
		</tr>
		<tr>
			<td style="text-align:right; vertical-align: text-top;"> <i> creator </i> </td>
			<td> LT Andre Tiwari </td>
		</tr>
		<tr>
			<td style="text-align:right; vertical-align: text-top;"> <i> created </i> </td>
			<td> 20 May 2007 </td>
		</tr>
		<tr>
			<td style="text-align:right; vertical-align: text-top;"> <i> translated </i> </td>
			<td> 6 June 2007 </td>
		</tr>
		<tr>
			<td style="text-align:right; vertical-align: text-top;"> <i> modified </i> </td>
			<td> 20 October 2019 </td>
		</tr>
		<tr>
			<td style="text-align:right; vertical-align: text-top;"> <i> generator </i> </td>
			<td> <a href="http://www.wings3d.com;" target="_blank">http://www.wings3d.com;</a> Wings3D for modeling (open source) </td>
		</tr>
		<tr>
			<td style="text-align:right; vertical-align: text-top;"> <i> generator </i> </td>
			<td> Vrml97ToX3dNist, <a href="http://ovrt.nist.gov/v2_x3d.html" target="_blank">http://ovrt.nist.gov/v2_x3d.html</a> </td>
		</tr>
		<tr>
			<td style="text-align:right; vertical-align: text-top;"> <i> generator </i> </td>
			<td> X3D-Edit 3.2, <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/Savage/ShipsMilitary/Seafighter/Seafighter.x3d" target="_blank">https://www.web3d.org/x3d/content/examples/Savage/ShipsMilitary/Seafighter/Seafighter.x3d</a> </td>
		</tr>
		<tr>
			<td style="text-align:right; vertical-align: text-top;"> <i> license </i> </td>
			<td> <a href="../../../../ShipsMilitary/Seafighter/../../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 LT Andre Tiwari
 */

public class Seafighter
{
	/** Default constructor to create this object. */
	public Seafighter ()
	{
	  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_1)
  .setHead(new head()
    .addMeta(new meta().setName(meta.NAME_TITLE      ).setContent("Seafighter.x3d"))
    .addMeta(new meta().setName(meta.NAME_DESCRIPTION).setContent("Model of HSV-1 Seafighter"))
    .addMeta(new meta().setName(meta.NAME_CREATOR    ).setContent("LT Andre Tiwari"))
    .addMeta(new meta().setName(meta.NAME_CREATED    ).setContent("20 May 2007"))
    .addMeta(new meta().setName(meta.NAME_TRANSLATED ).setContent("6 June 2007"))
    .addMeta(new meta().setName(meta.NAME_MODIFIED   ).setContent("20 October 2019"))
    .addMeta(new meta().setName(meta.NAME_GENERATOR  ).setContent("http://www.wings3d.com; Wings3D for modeling (open source)"))
    .addMeta(new meta().setName(meta.NAME_GENERATOR  ).setContent("Vrml97ToX3dNist, http://ovrt.nist.gov/v2_x3d.html"))
    .addMeta(new meta().setName(meta.NAME_GENERATOR  ).setContent("X3D-Edit 3.2, https://www.web3d.org/x3d/tools/X3D-Edit"))
    .addMeta(new meta().setName(meta.NAME_IDENTIFIER ).setContent("https://www.web3d.org/x3d/content/examples/Savage/ShipsMilitary/Seafighter/Seafighter.x3d"))
    .addMeta(new meta().setName(meta.NAME_LICENSE    ).setContent("../../license.html")))
  .setScene(new Scene()
    .addChild(new WorldInfo().setTitle("Seafighter.x3d"))
    .addChild(new Transform("unnamed_object6_copy10")
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material("dad_gunBack").setAmbientIntensity(1.0).setDiffuseColor(1.0,1.0,1.0).setShininess(1.0).setSpecularColor(1.0,1.0,1.0)))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,2,1,-1,0,3,2,-1,4,6,5,-1,4,7,6,-1,5,6,9,-1,5,9,8,-1}).setNormalIndex(new int[] {0,2,1,-1,0,3,2,-1,4,6,5,-1,4,7,6,-1,5,6,9,-1,5,9,8,-1})
          .setCoord(new Coordinate().setPoint(new MFVec3f(new double[] {6.82642,1.13097,1.45364,6.82642,1.14787,1.45364,6.82837,1.14787,1.45364,6.82837,1.13097,1.45364,6.82837,1.16043,1.24014,6.82261,1.16071,1.24014,6.7911,1.16071,1.24014,6.78533,1.16043,1.24014,6.82261,1.19578,1.24014,6.7911,1.19578,1.24014})))
          .setNormal(new Normal().setVector(new MFVec3f(new double[] {0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0})))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material("dad_IndexedFaceSet5").setAmbientIntensity(0.094).setDiffuseColor(0.18,0.06414,0.03931).setShininess(1.0).setSpecularColor(0.18748,0.18748,0.18748)))
        .setGeometry(new IndexedFaceSet().setCoordIndex(getIndexedFaceSet_5_22_coordIndex()).setNormalIndex(getIndexedFaceSet_5_22_normalIndex())
          .setCoord(new Coordinate().setPoint(getCoordinate_6_22_point()))
          .setNormal(new Normal().setVector(getNormal_6_23_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material("dad_IndexedFaceSet1").setAmbientIntensity(0.093).setDiffuseColor(0.09333,0.09333,0.09333).setShininess(1.0).setSpecularColor(0.41392,0.41392,0.41392)))
        .setGeometry(new IndexedFaceSet().setCoordIndex(getIndexedFaceSet_5_28_coordIndex()).setNormalIndex(getIndexedFaceSet_5_28_normalIndex())
          .setCoord(new Coordinate().setPoint(getCoordinate_6_28_point()))
          .setNormal(new Normal().setVector(getNormal_6_29_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material("dad_shield").setAmbientIntensity(0.707).setDiffuseColor(0.72,0.72,0.72).setShininess(1.0)))
        .setGeometry(new IndexedFaceSet().setCoordIndex(getIndexedFaceSet_5_34_coordIndex()).setNormalIndex(getIndexedFaceSet_5_34_normalIndex())
          .setCoord(new Coordinate().setPoint(getCoordinate_6_34_point()))
          .setNormal(new Normal().setVector(getNormal_6_35_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material("dad_gunStand").setAmbientIntensity(0.707).setDiffuseColor(0.72,0.72,0.72).setShininess(1.0)))
        .setGeometry(new IndexedFaceSet().setCoordIndex(getIndexedFaceSet_5_40_coordIndex()).setNormalIndex(getIndexedFaceSet_5_40_normalIndex())
          .setCoord(new Coordinate().setPoint(getCoordinate_6_40_point()))
          .setNormal(new Normal().setVector(getNormal_6_41_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material("dad_bottomPlate").setAmbientIntensity(0.707).setDiffuseColor(0.72,0.72,0.72).setShininess(1.0)))
        .setGeometry(new IndexedFaceSet().setCoordIndex(getIndexedFaceSet_5_46_coordIndex()).setNormalIndex(getIndexedFaceSet_5_46_normalIndex())
          .setCoord(new Coordinate().setPoint(getCoordinate_6_46_point()))
          .setNormal(new Normal().setVector(getNormal_6_47_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material("dad_middlePlate").setAmbientIntensity(0.707).setDiffuseColor(0.72,0.72,0.72).setShininess(1.0)))
        .setGeometry(new IndexedFaceSet().setCoordIndex(getIndexedFaceSet_5_52_coordIndex()).setNormalIndex(getIndexedFaceSet_5_52_normalIndex())
          .setCoord(new Coordinate().setPoint(getCoordinate_6_52_point()))
          .setNormal(new Normal().setVector(getNormal_6_53_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material("dad_leg1").setAmbientIntensity(0.707).setDiffuseColor(0.72,0.72,0.72).setShininess(1.0)))
        .setGeometry(new IndexedFaceSet().setCoordIndex(getIndexedFaceSet_5_58_coordIndex()).setNormalIndex(getIndexedFaceSet_5_58_normalIndex())
          .setCoord(new Coordinate().setPoint(getCoordinate_6_58_point()))
          .setNormal(new Normal().setVector(getNormal_6_59_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material("dad_IndexedFaceSet6").setAmbientIntensity(0.707).setDiffuseColor(0.72,0.72,0.72).setShininess(1.0)))
        .setGeometry(new IndexedFaceSet().setCoordIndex(getIndexedFaceSet_5_64_coordIndex()).setNormalIndex(getIndexedFaceSet_5_64_normalIndex())
          .setCoord(new Coordinate().setPoint(getCoordinate_6_64_point()))
          .setNormal(new Normal().setVector(getNormal_6_65_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material("dad_IndexedFaceSet9").setAmbientIntensity(0.707).setDiffuseColor(0.72,0.72,0.72).setShininess(1.0)))
        .setGeometry(new IndexedFaceSet().setCoordIndex(getIndexedFaceSet_5_70_coordIndex()).setNormalIndex(getIndexedFaceSet_5_70_normalIndex())
          .setCoord(new Coordinate().setPoint(getCoordinate_6_70_point()))
          .setNormal(new Normal().setVector(getNormal_6_71_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material("dad_handle1").setAmbientIntensity(0.093).setDiffuseColor(0.09333,0.09333,0.09333).setShininess(1.0).setSpecularColor(0.41392,0.41392,0.41392)))
        .setGeometry(new IndexedFaceSet().setCoordIndex(getIndexedFaceSet_5_76_coordIndex()).setNormalIndex(getIndexedFaceSet_5_76_normalIndex())
          .setCoord(new Coordinate().setPoint(getCoordinate_6_76_point()))
          .setNormal(new Normal().setVector(getNormal_6_77_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material("dad_handle2").setAmbientIntensity(0.093).setDiffuseColor(0.09333,0.09333,0.09333).setShininess(1.0).setSpecularColor(0.41392,0.41392,0.41392)))
        .setGeometry(new IndexedFaceSet().setCoordIndex(getIndexedFaceSet_5_82_coordIndex()).setNormalIndex(getIndexedFaceSet_5_82_normalIndex())
          .setCoord(new Coordinate().setPoint(getCoordinate_6_82_point()))
          .setNormal(new Normal().setVector(getNormal_6_83_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material("dad_baseStand").setAmbientIntensity(0.707).setDiffuseColor(0.72,0.72,0.72).setShininess(1.0)))
        .setGeometry(new IndexedFaceSet().setCoordIndex(getIndexedFaceSet_5_88_coordIndex()).setNormalIndex(getIndexedFaceSet_5_88_normalIndex())
          .setCoord(new Coordinate().setPoint(getCoordinate_6_88_point()))
          .setNormal(new Normal().setVector(getNormal_6_89_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material("dad_IndexedFaceSet2").setAmbientIntensity(0.707).setDiffuseColor(0.72,0.72,0.72).setShininess(1.0)))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,2,1,-1,0,3,2,-1,0,4,3,-1,0,5,4,-1,1,2,7,-1,1,7,6,-1,2,3,7,-1,3,4,35,-1,3,9,7,-1,3,11,9,-1,3,13,11,-1,3,29,30,-1,3,30,13,-1,3,33,29,-1,3,35,33,-1,4,5,34,-1,4,34,35,-1,6,7,9,-1,6,9,8,-1,8,9,11,-1,8,11,10,-1,10,11,13,-1,10,13,12,-1,12,13,17,-1,12,15,14,-1,12,16,15,-1,12,17,16,-1,13,30,31,-1,13,31,17,-1,14,15,19,-1,14,19,18,-1,15,16,36,-1,15,36,39,-1,15,39,19,-1,16,17,38,-1,16,37,36,-1,16,38,37,-1,17,31,38,-1,18,19,21,-1,18,21,20,-1,19,39,40,-1,19,40,21,-1,20,21,23,-1,20,23,22,-1,21,40,41,-1,21,41,23,-1,22,23,25,-1,22,25,24,-1,23,41,42,-1,23,42,25,-1,24,25,27,-1,24,27,26,-1,25,42,43,-1,25,43,27,-1,26,27,31,-1,26,29,28,-1,26,30,29,-1,26,31,30,-1,27,43,44,-1,27,44,31,-1,28,29,33,-1,28,33,32,-1,31,44,38,-1,32,33,35,-1,32,35,34,-1}).setNormalIndex(new int[] {0,2,1,-1,0,3,2,-1,0,4,3,-1,0,5,4,-1,1,2,7,-1,1,7,6,-1,2,3,7,-1,3,4,35,-1,3,9,7,-1,3,11,9,-1,3,13,11,-1,3,29,30,-1,3,30,13,-1,3,33,29,-1,3,35,33,-1,4,5,34,-1,4,34,35,-1,6,7,9,-1,6,9,8,-1,8,9,11,-1,8,11,10,-1,10,11,13,-1,10,13,12,-1,12,13,17,-1,12,15,14,-1,12,16,15,-1,12,17,16,-1,13,30,31,-1,13,31,17,-1,14,15,19,-1,14,19,18,-1,15,16,36,-1,15,36,39,-1,15,39,19,-1,16,17,38,-1,16,37,36,-1,16,38,37,-1,17,31,38,-1,18,19,21,-1,18,21,20,-1,19,39,40,-1,19,40,21,-1,20,21,23,-1,20,23,22,-1,21,40,41,-1,21,41,23,-1,22,23,25,-1,22,25,24,-1,23,41,42,-1,23,42,25,-1,24,25,27,-1,24,27,26,-1,25,42,43,-1,25,43,27,-1,26,27,31,-1,26,29,28,-1,26,30,29,-1,26,31,30,-1,27,43,44,-1,27,44,31,-1,28,29,33,-1,28,33,32,-1,31,44,38,-1,32,33,35,-1,32,35,34,-1})
          .setCoord(new Coordinate().setPoint(getCoordinate_6_94_point()))
          .setNormal(new Normal().setVector(getNormal_6_95_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material("dad_boltBottom3").setAmbientIntensity(0.707).setDiffuseColor(0.72,0.72,0.72).setShininess(1.0)))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,19,-1,3,18,32,-1,3,20,19,-1,3,21,20,-1,3,22,21,-1,3,23,22,-1,3,24,23,-1,3,25,24,-1,3,26,25,-1,3,28,26,-1,3,29,28,-1,3,30,29,-1,3,31,30,-1,3,32,31,-1,4,5,18,-1,5,6,32,-1,5,32,18,-1,6,7,31,-1,6,31,32,-1,7,8,30,-1,7,30,31,-1,8,9,29,-1,8,29,30,-1,9,10,27,-1,9,27,28,-1,9,28,29,-1,10,11,26,-1,10,26,28,-1,10,28,27,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,33,34,38,-1,33,35,34,-1,33,36,35,-1,33,37,39,-1,33,38,37,-1,33,39,36,-1,34,35,40,-1,34,40,38,-1,35,36,40,-1,36,39,40,-1,37,38,39,-1,38,40,39,-1}).setNormalIndex(new int[] {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,19,-1,3,18,32,-1,3,20,19,-1,3,21,20,-1,3,22,21,-1,3,23,22,-1,3,24,23,-1,3,25,24,-1,3,26,25,-1,3,28,26,-1,3,29,28,-1,3,30,29,-1,3,31,30,-1,3,32,31,-1,4,5,18,-1,5,6,32,-1,5,32,18,-1,6,7,31,-1,6,31,32,-1,7,8,30,-1,7,30,31,-1,8,9,29,-1,8,29,30,-1,9,10,27,-1,9,27,28,-1,9,28,29,-1,10,11,26,-1,10,26,28,-1,10,28,27,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,33,34,38,-1,33,35,34,-1,33,36,35,-1,33,37,39,-1,33,38,37,-1,33,39,36,-1,34,35,40,-1,34,40,38,-1,35,36,40,-1,36,39,40,-1,37,38,39,-1,38,40,39,-1})
          .setCoord(new Coordinate().setPoint(new MFVec3f(new double[] {6.79121,1.08827,1.40318,6.79104,1.08827,1.404,6.79104,1.09527,1.404,6.79121,1.09527,1.40318,6.79104,1.08827,1.40235,6.79057,1.08827,1.40165,6.78987,1.08827,1.40118,6.78905,1.08827,1.40102,6.78822,1.08827,1.40118,6.78752,1.08827,1.40165,6.78706,1.08827,1.40235,6.78689,1.08827,1.40318,6.78706,1.08827,1.404,6.78752,1.08827,1.4047,6.78822,1.08827,1.40517,6.78905,1.08827,1.40533,6.78987,1.08827,1.40517,6.79057,1.08827,1.4047,6.79104,1.09527,1.40235,6.79057,1.09527,1.4047,6.78987,1.09527,1.40517,6.78905,1.09527,1.40533,6.78822,1.09527,1.40517,6.78752,1.09527,1.4047,6.78706,1.09527,1.404,6.78689,1.09527,1.40318,6.78706,1.09527,1.40235,6.78752,1.09177,1.40165,6.78752,1.09527,1.40165,6.78822,1.09527,1.40118,6.78905,1.09527,1.40102,6.78987,1.09527,1.40118,6.79057,1.09527,1.40165,6.78658,1.09183,1.40565,6.78658,1.08976,1.40565,6.78658,1.08976,1.40056,6.78658,1.09183,1.40056,6.79158,1.09183,1.40565,6.79158,1.08976,1.40565,6.79158,1.09183,1.40056,6.79158,1.08976,1.40056})))
          .setNormal(new Normal().setVector(getNormal_6_101_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material("dad_bolt2").setAmbientIntensity(0.707).setDiffuseColor(0.72,0.72,0.72).setShininess(1.0)))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,19,-1,3,18,31,-1,3,20,19,-1,3,21,20,-1,3,22,21,-1,3,23,22,-1,3,24,23,-1,3,25,24,-1,3,26,25,-1,3,27,26,-1,3,28,27,-1,3,29,28,-1,3,30,29,-1,3,31,30,-1,4,5,18,-1,5,6,31,-1,5,31,18,-1,6,7,30,-1,6,30,31,-1,7,8,29,-1,7,29,30,-1,8,9,28,-1,8,28,29,-1,9,10,27,-1,9,27,28,-1,10,11,26,-1,10,26,27,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,32,33,37,-1,32,34,33,-1,32,35,34,-1,32,36,38,-1,32,37,36,-1,32,38,35,-1,33,34,39,-1,33,39,37,-1,34,35,39,-1,35,38,39,-1,36,37,38,-1,37,39,38,-1}).setNormalIndex(new int[] {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,19,-1,3,18,31,-1,3,20,19,-1,3,21,20,-1,3,22,21,-1,3,23,22,-1,3,24,23,-1,3,25,24,-1,3,26,25,-1,3,27,26,-1,3,28,27,-1,3,29,28,-1,3,30,29,-1,3,31,30,-1,4,5,18,-1,5,6,31,-1,5,31,18,-1,6,7,30,-1,6,30,31,-1,7,8,29,-1,7,29,30,-1,8,9,28,-1,8,28,29,-1,9,10,27,-1,9,27,28,-1,10,11,26,-1,10,26,27,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,32,33,37,-1,32,34,33,-1,32,35,34,-1,32,36,38,-1,32,37,36,-1,32,38,35,-1,33,34,39,-1,33,39,37,-1,34,35,39,-1,35,38,39,-1,36,37,38,-1,37,39,38,-1})
          .setCoord(new Coordinate().setPoint(new MFVec3f(new double[] {6.826,1.10243,1.36881,6.82584,1.10243,1.36798,6.82584,1.09543,1.36798,6.826,1.09543,1.36881,6.82584,1.10243,1.36964,6.82537,1.10243,1.37034,6.82467,1.10243,1.3708,6.82384,1.10243,1.37097,6.82302,1.10243,1.3708,6.82232,1.10243,1.37034,6.82185,1.10243,1.36964,6.82169,1.10243,1.36881,6.82185,1.10243,1.36798,6.82232,1.10243,1.36728,6.82302,1.10243,1.36682,6.82384,1.10243,1.36665,6.82467,1.10243,1.36682,6.82537,1.10243,1.36728,6.82584,1.09543,1.36964,6.82537,1.09543,1.36728,6.82467,1.09543,1.36682,6.82384,1.09543,1.36665,6.82302,1.09543,1.36682,6.82232,1.09543,1.36728,6.82185,1.09543,1.36798,6.82169,1.09543,1.36881,6.82185,1.09543,1.36964,6.82232,1.09543,1.37034,6.82302,1.09543,1.3708,6.82384,1.09543,1.37097,6.82467,1.09543,1.3708,6.82537,1.09543,1.37034,6.82137,1.09887,1.36634,6.82137,1.10094,1.36634,6.82137,1.10094,1.37142,6.82137,1.09887,1.37142,6.82637,1.09887,1.36634,6.82637,1.10094,1.36634,6.82637,1.09887,1.37142,6.82637,1.10094,1.37142})))
          .setNormal(new Normal().setVector(getNormal_6_107_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material("dad_bolt4").setAmbientIntensity(0.707).setDiffuseColor(0.72,0.72,0.72).setShininess(1.0)))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,19,-1,3,18,31,-1,3,20,19,-1,3,21,20,-1,3,22,21,-1,3,23,22,-1,3,24,23,-1,3,25,24,-1,3,26,25,-1,3,27,26,-1,3,28,27,-1,3,29,28,-1,3,30,29,-1,3,31,30,-1,4,5,18,-1,5,6,31,-1,5,31,18,-1,6,7,30,-1,6,30,31,-1,7,8,29,-1,7,29,30,-1,8,9,28,-1,8,28,29,-1,9,10,27,-1,9,27,28,-1,10,11,26,-1,10,26,27,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,32,33,37,-1,32,34,33,-1,32,35,34,-1,32,36,38,-1,32,37,36,-1,32,38,35,-1,33,34,39,-1,33,39,37,-1,34,35,39,-1,35,38,39,-1,36,37,38,-1,37,39,38,-1}).setNormalIndex(new int[] {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,19,-1,3,18,31,-1,3,20,19,-1,3,21,20,-1,3,22,21,-1,3,23,22,-1,3,24,23,-1,3,25,24,-1,3,26,25,-1,3,27,26,-1,3,28,27,-1,3,29,28,-1,3,30,29,-1,3,31,30,-1,4,5,18,-1,5,6,31,-1,5,31,18,-1,6,7,30,-1,6,30,31,-1,7,8,29,-1,7,29,30,-1,8,9,28,-1,8,28,29,-1,9,10,27,-1,9,27,28,-1,10,11,26,-1,10,26,27,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,32,33,37,-1,32,34,33,-1,32,35,34,-1,32,36,38,-1,32,37,36,-1,32,38,35,-1,33,34,39,-1,33,39,37,-1,34,35,39,-1,35,38,39,-1,36,37,38,-1,37,39,38,-1})
          .setCoord(new Coordinate().setPoint(new MFVec3f(new double[] {6.826,1.10243,1.40315,6.82584,1.10243,1.40232,6.82584,1.09543,1.40232,6.826,1.09543,1.40315,6.82584,1.10243,1.40397,6.82537,1.10243,1.40467,6.82467,1.10243,1.40514,6.82384,1.10243,1.4053,6.82302,1.10243,1.40514,6.82232,1.10243,1.40467,6.82185,1.10243,1.40397,6.82169,1.10243,1.40315,6.82185,1.10243,1.40232,6.82232,1.10243,1.40162,6.82302,1.10243,1.40115,6.82384,1.10243,1.40099,6.82467,1.10243,1.40115,6.82537,1.10243,1.40162,6.82584,1.09543,1.40397,6.82537,1.09543,1.40162,6.82467,1.09543,1.40115,6.82384,1.09543,1.40099,6.82302,1.09543,1.40115,6.82232,1.09543,1.40162,6.82185,1.09543,1.40232,6.82169,1.09543,1.40315,6.82185,1.09543,1.40397,6.82232,1.09543,1.40467,6.82302,1.09543,1.40514,6.82384,1.09543,1.4053,6.82467,1.09543,1.40514,6.82537,1.09543,1.40467,6.82137,1.09887,1.40068,6.82137,1.10094,1.40068,6.82137,1.10094,1.40576,6.82137,1.09887,1.40576,6.82637,1.09887,1.40068,6.82637,1.10094,1.40068,6.82637,1.09887,1.40576,6.82637,1.10094,1.40576})))
          .setNormal(new Normal().setVector(getNormal_6_113_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material("dad_boltBottom2").setAmbientIntensity(0.707).setDiffuseColor(0.72,0.72,0.72).setShininess(1.0)))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,19,-1,3,18,31,-1,3,20,19,-1,3,21,20,-1,3,22,21,-1,3,23,22,-1,3,24,23,-1,3,25,24,-1,3,26,25,-1,3,27,26,-1,3,28,27,-1,3,29,28,-1,3,30,29,-1,3,31,30,-1,4,5,18,-1,5,6,31,-1,5,31,18,-1,6,7,30,-1,6,30,31,-1,7,8,29,-1,7,29,30,-1,8,9,28,-1,8,28,29,-1,9,10,27,-1,9,27,28,-1,10,11,26,-1,10,26,27,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,32,33,37,-1,32,34,33,-1,32,35,34,-1,32,36,38,-1,32,37,36,-1,32,38,35,-1,33,34,39,-1,33,39,37,-1,34,35,39,-1,35,38,39,-1,36,37,38,-1,37,39,38,-1}).setNormalIndex(new int[] {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,19,-1,3,18,31,-1,3,20,19,-1,3,21,20,-1,3,22,21,-1,3,23,22,-1,3,24,23,-1,3,25,24,-1,3,26,25,-1,3,27,26,-1,3,28,27,-1,3,29,28,-1,3,30,29,-1,3,31,30,-1,4,5,18,-1,5,6,31,-1,5,31,18,-1,6,7,30,-1,6,30,31,-1,7,8,29,-1,7,29,30,-1,8,9,28,-1,8,28,29,-1,9,10,27,-1,9,27,28,-1,10,11,26,-1,10,26,27,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,32,33,37,-1,32,34,33,-1,32,35,34,-1,32,36,38,-1,32,37,36,-1,32,38,35,-1,33,34,39,-1,33,39,37,-1,34,35,39,-1,35,38,39,-1,36,37,38,-1,37,39,38,-1})
          .setCoord(new Coordinate().setPoint(new MFVec3f(new double[] {6.826,1.08827,1.36884,6.82584,1.08827,1.36966,6.82584,1.09527,1.36966,6.826,1.09527,1.36884,6.82584,1.08827,1.36801,6.82537,1.08827,1.36731,6.82467,1.08827,1.36684,6.82384,1.08827,1.36668,6.82302,1.08827,1.36684,6.82232,1.08827,1.36731,6.82185,1.08827,1.36801,6.82169,1.08827,1.36884,6.82185,1.08827,1.36966,6.82232,1.08827,1.37036,6.82302,1.08827,1.37083,6.82384,1.08827,1.371,6.82467,1.08827,1.37083,6.82537,1.08827,1.37036,6.82584,1.09527,1.36801,6.82537,1.09527,1.37036,6.82467,1.09527,1.37083,6.82384,1.09527,1.371,6.82302,1.09527,1.37083,6.82232,1.09527,1.37036,6.82185,1.09527,1.36966,6.82169,1.09527,1.36884,6.82185,1.09527,1.36801,6.82232,1.09527,1.36731,6.82302,1.09527,1.36684,6.82384,1.09527,1.36668,6.82467,1.09527,1.36684,6.82537,1.09527,1.36731,6.82137,1.09183,1.37131,6.82137,1.08976,1.37131,6.82137,1.08976,1.36622,6.82137,1.09183,1.36622,6.82637,1.09183,1.37131,6.82637,1.08976,1.37131,6.82637,1.09183,1.36622,6.82637,1.08976,1.36622})))
          .setNormal(new Normal().setVector(getNormal_6_119_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material("dad_boltBottom4").setAmbientIntensity(0.707).setDiffuseColor(0.72,0.72,0.72).setShininess(1.0)))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,19,-1,3,18,31,-1,3,20,19,-1,3,21,20,-1,3,22,21,-1,3,23,22,-1,3,24,23,-1,3,25,24,-1,3,26,25,-1,3,27,26,-1,3,28,27,-1,3,29,28,-1,3,30,29,-1,3,31,30,-1,4,5,18,-1,5,6,31,-1,5,31,18,-1,6,7,30,-1,6,30,31,-1,7,8,29,-1,7,29,30,-1,8,9,28,-1,8,28,29,-1,9,10,27,-1,9,27,28,-1,10,11,26,-1,10,26,27,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,32,33,37,-1,32,34,33,-1,32,35,34,-1,32,36,38,-1,32,37,36,-1,32,38,35,-1,33,34,39,-1,33,39,37,-1,34,35,39,-1,35,38,39,-1,36,37,38,-1,37,39,38,-1}).setNormalIndex(new int[] {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,19,-1,3,18,31,-1,3,20,19,-1,3,21,20,-1,3,22,21,-1,3,23,22,-1,3,24,23,-1,3,25,24,-1,3,26,25,-1,3,27,26,-1,3,28,27,-1,3,29,28,-1,3,30,29,-1,3,31,30,-1,4,5,18,-1,5,6,31,-1,5,31,18,-1,6,7,30,-1,6,30,31,-1,7,8,29,-1,7,29,30,-1,8,9,28,-1,8,28,29,-1,9,10,27,-1,9,27,28,-1,10,11,26,-1,10,26,27,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,32,33,37,-1,32,34,33,-1,32,35,34,-1,32,36,38,-1,32,37,36,-1,32,38,35,-1,33,34,39,-1,33,39,37,-1,34,35,39,-1,35,38,39,-1,36,37,38,-1,37,39,38,-1})
          .setCoord(new Coordinate().setPoint(new MFVec3f(new double[] {6.826,1.08827,1.40318,6.82584,1.08827,1.404,6.82584,1.09527,1.404,6.826,1.09527,1.40318,6.82584,1.08827,1.40235,6.82537,1.08827,1.40165,6.82467,1.08827,1.40118,6.82384,1.08827,1.40102,6.82302,1.08827,1.40118,6.82232,1.08827,1.40165,6.82185,1.08827,1.40235,6.82169,1.08827,1.40318,6.82185,1.08827,1.404,6.82232,1.08827,1.4047,6.82302,1.08827,1.40517,6.82384,1.08827,1.40533,6.82467,1.08827,1.40517,6.82537,1.08827,1.4047,6.82584,1.09527,1.40235,6.82537,1.09527,1.4047,6.82467,1.09527,1.40517,6.82384,1.09527,1.40533,6.82302,1.09527,1.40517,6.82232,1.09527,1.4047,6.82185,1.09527,1.404,6.82169,1.09527,1.40318,6.82185,1.09527,1.40235,6.82232,1.09527,1.40165,6.82302,1.09527,1.40118,6.82384,1.09527,1.40102,6.82467,1.09527,1.40118,6.82537,1.09527,1.40165,6.82137,1.09183,1.40565,6.82137,1.08976,1.40565,6.82137,1.08976,1.40056,6.82137,1.09183,1.40056,6.82637,1.09183,1.40565,6.82637,1.08976,1.40565,6.82637,1.09183,1.40056,6.82637,1.08976,1.40056})))
          .setNormal(new Normal().setVector(getNormal_6_125_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material("dad_mountingPlate").setAmbientIntensity(0.707).setDiffuseColor(0.72,0.72,0.72).setShininess(1.0)))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,19,-1,3,18,31,-1,3,20,19,-1,3,21,20,-1,3,22,21,-1,3,23,22,-1,3,24,23,-1,3,25,24,-1,3,26,25,-1,3,27,26,-1,3,28,27,-1,3,29,28,-1,3,30,29,-1,3,31,30,-1,4,5,18,-1,5,6,31,-1,5,31,18,-1,6,7,30,-1,6,30,31,-1,7,8,29,-1,7,29,30,-1,8,9,28,-1,8,28,29,-1,9,10,27,-1,9,27,28,-1,10,11,26,-1,10,26,27,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1}).setNormalIndex(new int[] {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,19,-1,3,18,31,-1,3,20,19,-1,3,21,20,-1,3,22,21,-1,3,23,22,-1,3,24,23,-1,3,25,24,-1,3,26,25,-1,3,27,26,-1,3,28,27,-1,3,29,28,-1,3,30,29,-1,3,31,30,-1,4,5,18,-1,5,6,31,-1,5,31,18,-1,6,7,30,-1,6,30,31,-1,7,8,29,-1,7,29,30,-1,8,9,28,-1,8,28,29,-1,9,10,27,-1,9,27,28,-1,10,11,26,-1,10,26,27,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1})
          .setCoord(new Coordinate().setPoint(new MFVec3f(new double[] {6.82126,1.13861,1.38565,6.82017,1.13861,1.38014,6.82017,1.12813,1.38014,6.82126,1.12813,1.38565,6.82017,1.13861,1.39117,6.81704,1.13861,1.39585,6.81237,1.13861,1.39897,6.80685,1.13861,1.40007,6.80133,1.13861,1.39897,6.79666,1.13861,1.39585,6.79353,1.13861,1.39117,6.79244,1.13861,1.38565,6.79353,1.13861,1.38014,6.79666,1.13861,1.37546,6.80133,1.13861,1.37234,6.80685,1.13861,1.37124,6.81237,1.13861,1.37234,6.81704,1.13861,1.37546,6.82017,1.12813,1.39117,6.81704,1.12813,1.37546,6.81237,1.12813,1.37234,6.80685,1.12813,1.37124,6.80133,1.12813,1.37234,6.79666,1.12813,1.37546,6.79353,1.12813,1.38014,6.79244,1.12813,1.38565,6.79353,1.12813,1.39117,6.79666,1.12813,1.39585,6.80133,1.12813,1.39897,6.80685,1.12813,1.40007,6.81237,1.12813,1.39897,6.81704,1.12813,1.39585})))
          .setNormal(new Normal().setVector(new MFVec3f(new double[] {0.269836,0.962906,-2.96659E-15,0.848999,0.321163,-0.41959,0.896999,-0.321163,-0.303722,0.13876,-0.990326,3.34205E-15,0.823071,0.454194,0.340972,0.622606,0.561298,0.545258,0.366676,0.561324,0.741933,0.0547195,0.561304,0.825798,-0.26542,0.561324,0.78388,-0.545258,0.561298,0.622606,-0.741933,0.561324,0.366676,-0.825798,0.561304,0.0547195,-0.78388,0.561324,-0.26542,-0.622606,0.561298,-0.545258,-0.366676,0.561324,-0.741933,-0.0547195,0.561304,-0.825798,0.26542,0.561324,-0.78388,0.545258,0.561298,-0.622606,0.895234,-0.247008,0.370867,0.622606,-0.561298,-0.545258,0.366676,-0.561324,-0.741933,0.0547195,-0.561304,-0.825798,-0.26542,-0.561324,-0.78388,-0.545258,-0.561298,-0.622606,-0.741933,-0.561324,-0.366676,-0.825798,-0.561304,-0.0547195,-0.78388,-0.561324,0.26542,-0.622606,-0.561298,0.545258,-0.366676,-0.561324,0.741933,-0.0547195,-0.561304,0.825798,0.26542,-0.561324,0.78388,0.545258,-0.561298,0.622606})))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material("dad_bolt").setAmbientIntensity(0.707).setDiffuseColor(0.72,0.72,0.72).setShininess(1.0)))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,19,-1,3,18,31,-1,3,20,19,-1,3,21,20,-1,3,22,21,-1,3,23,22,-1,3,24,23,-1,3,25,24,-1,3,26,25,-1,3,27,26,-1,3,28,27,-1,3,29,28,-1,3,30,29,-1,3,31,30,-1,4,5,18,-1,5,6,31,-1,5,31,18,-1,6,7,30,-1,6,30,31,-1,7,8,29,-1,7,29,30,-1,8,9,28,-1,8,28,29,-1,9,10,27,-1,9,27,28,-1,10,11,26,-1,10,26,27,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,32,33,37,-1,32,34,33,-1,32,35,34,-1,32,36,38,-1,32,37,36,-1,32,38,35,-1,33,34,39,-1,33,39,37,-1,34,35,39,-1,35,38,39,-1,36,37,38,-1,37,39,38,-1}).setNormalIndex(new int[] {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,19,-1,3,18,31,-1,3,20,19,-1,3,21,20,-1,3,22,21,-1,3,23,22,-1,3,24,23,-1,3,25,24,-1,3,26,25,-1,3,27,26,-1,3,28,27,-1,3,29,28,-1,3,30,29,-1,3,31,30,-1,4,5,18,-1,5,6,31,-1,5,31,18,-1,6,7,30,-1,6,30,31,-1,7,8,29,-1,7,29,30,-1,8,9,28,-1,8,28,29,-1,9,10,27,-1,9,27,28,-1,10,11,26,-1,10,26,27,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,32,33,37,-1,32,34,33,-1,32,35,34,-1,32,36,38,-1,32,37,36,-1,32,38,35,-1,33,34,39,-1,33,39,37,-1,34,35,39,-1,35,38,39,-1,36,37,38,-1,37,39,38,-1})
          .setCoord(new Coordinate().setPoint(new MFVec3f(new double[] {6.79121,1.10243,1.36881,6.79104,1.10243,1.36798,6.79104,1.09543,1.36798,6.79121,1.09543,1.36881,6.79104,1.10243,1.36964,6.79057,1.10243,1.37034,6.78987,1.10243,1.3708,6.78905,1.10243,1.37097,6.78822,1.10243,1.3708,6.78752,1.10243,1.37034,6.78706,1.10243,1.36964,6.78689,1.10243,1.36881,6.78706,1.10243,1.36798,6.78752,1.10243,1.36728,6.78822,1.10243,1.36682,6.78905,1.10243,1.36665,6.78987,1.10243,1.36682,6.79057,1.10243,1.36728,6.79104,1.09543,1.36964,6.79057,1.09543,1.36728,6.78987,1.09543,1.36682,6.78905,1.09543,1.36665,6.78822,1.09543,1.36682,6.78752,1.09543,1.36728,6.78706,1.09543,1.36798,6.78689,1.09543,1.36881,6.78706,1.09543,1.36964,6.78752,1.09543,1.37034,6.78822,1.09543,1.3708,6.78905,1.09543,1.37097,6.78987,1.09543,1.3708,6.79057,1.09543,1.37034,6.78658,1.09887,1.36634,6.78658,1.10094,1.36634,6.78658,1.10094,1.37142,6.78658,1.09887,1.37142,6.79158,1.09887,1.36634,6.79158,1.10094,1.36634,6.79158,1.09887,1.37142,6.79158,1.10094,1.37142})))
          .setNormal(new Normal().setVector(getNormal_6_137_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material("dad_bolt3").setAmbientIntensity(0.707).setDiffuseColor(0.72,0.72,0.72).setShininess(1.0)))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,19,-1,3,18,31,-1,3,20,19,-1,3,21,20,-1,3,22,21,-1,3,23,22,-1,3,24,23,-1,3,25,24,-1,3,26,25,-1,3,27,26,-1,3,28,27,-1,3,29,28,-1,3,30,29,-1,3,31,30,-1,4,5,18,-1,5,6,31,-1,5,31,18,-1,6,7,30,-1,6,30,31,-1,7,8,29,-1,7,29,30,-1,8,9,28,-1,8,28,29,-1,9,10,27,-1,9,27,28,-1,10,11,26,-1,10,26,27,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,32,33,37,-1,32,34,33,-1,32,35,34,-1,32,36,38,-1,32,37,36,-1,32,38,35,-1,33,34,39,-1,33,39,37,-1,34,35,39,-1,35,38,39,-1,36,37,38,-1,37,39,38,-1}).setNormalIndex(new int[] {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,19,-1,3,18,31,-1,3,20,19,-1,3,21,20,-1,3,22,21,-1,3,23,22,-1,3,24,23,-1,3,25,24,-1,3,26,25,-1,3,27,26,-1,3,28,27,-1,3,29,28,-1,3,30,29,-1,3,31,30,-1,4,5,18,-1,5,6,31,-1,5,31,18,-1,6,7,30,-1,6,30,31,-1,7,8,29,-1,7,29,30,-1,8,9,28,-1,8,28,29,-1,9,10,27,-1,9,27,28,-1,10,11,26,-1,10,26,27,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,32,33,37,-1,32,34,33,-1,32,35,34,-1,32,36,38,-1,32,37,36,-1,32,38,35,-1,33,34,39,-1,33,39,37,-1,34,35,39,-1,35,38,39,-1,36,37,38,-1,37,39,38,-1})
          .setCoord(new Coordinate().setPoint(new MFVec3f(new double[] {6.79121,1.10243,1.40315,6.79104,1.10243,1.40232,6.79104,1.09543,1.40232,6.79121,1.09543,1.40315,6.79104,1.10243,1.40397,6.79057,1.10243,1.40467,6.78987,1.10243,1.40514,6.78905,1.10243,1.4053,6.78822,1.10243,1.40514,6.78752,1.10243,1.40467,6.78706,1.10243,1.40397,6.78689,1.10243,1.40315,6.78706,1.10243,1.40232,6.78752,1.10243,1.40162,6.78822,1.10243,1.40115,6.78905,1.10243,1.40099,6.78987,1.10243,1.40115,6.79057,1.10243,1.40162,6.79104,1.09543,1.40397,6.79057,1.09543,1.40162,6.78987,1.09543,1.40115,6.78905,1.09543,1.40099,6.78822,1.09543,1.40115,6.78752,1.09543,1.40162,6.78706,1.09543,1.40232,6.78689,1.09543,1.40315,6.78706,1.09543,1.40397,6.78752,1.09543,1.40467,6.78822,1.09543,1.40514,6.78905,1.09543,1.4053,6.78987,1.09543,1.40514,6.79057,1.09543,1.40467,6.78658,1.09887,1.40068,6.78658,1.10094,1.40068,6.78658,1.10094,1.40576,6.78658,1.09887,1.40576,6.79158,1.09887,1.40068,6.79158,1.10094,1.40068,6.79158,1.09887,1.40576,6.79158,1.10094,1.40576})))
          .setNormal(new Normal().setVector(getNormal_6_143_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material("dad_boltBottom1").setAmbientIntensity(0.707).setDiffuseColor(0.72,0.72,0.72).setShininess(1.0)))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,19,-1,3,18,31,-1,3,20,19,-1,3,21,20,-1,3,22,21,-1,3,23,22,-1,3,24,23,-1,3,25,24,-1,3,26,25,-1,3,27,26,-1,3,28,27,-1,3,29,28,-1,3,30,29,-1,3,31,30,-1,4,5,18,-1,5,6,31,-1,5,31,18,-1,6,7,30,-1,6,30,31,-1,7,8,29,-1,7,29,30,-1,8,9,28,-1,8,28,29,-1,9,10,27,-1,9,27,28,-1,10,11,26,-1,10,26,27,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,32,33,37,-1,32,34,33,-1,32,35,34,-1,32,36,38,-1,32,37,36,-1,32,38,35,-1,33,34,39,-1,33,39,37,-1,34,35,39,-1,35,38,39,-1,36,37,38,-1,37,39,38,-1}).setNormalIndex(new int[] {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,19,-1,3,18,31,-1,3,20,19,-1,3,21,20,-1,3,22,21,-1,3,23,22,-1,3,24,23,-1,3,25,24,-1,3,26,25,-1,3,27,26,-1,3,28,27,-1,3,29,28,-1,3,30,29,-1,3,31,30,-1,4,5,18,-1,5,6,31,-1,5,31,18,-1,6,7,30,-1,6,30,31,-1,7,8,29,-1,7,29,30,-1,8,9,28,-1,8,28,29,-1,9,10,27,-1,9,27,28,-1,10,11,26,-1,10,26,27,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,32,33,37,-1,32,34,33,-1,32,35,34,-1,32,36,38,-1,32,37,36,-1,32,38,35,-1,33,34,39,-1,33,39,37,-1,34,35,39,-1,35,38,39,-1,36,37,38,-1,37,39,38,-1})
          .setCoord(new Coordinate().setPoint(new MFVec3f(new double[] {6.79121,1.08827,1.36884,6.79104,1.08827,1.36966,6.79104,1.09527,1.36966,6.79121,1.09527,1.36884,6.79104,1.08827,1.36801,6.79057,1.08827,1.36731,6.78987,1.08827,1.36684,6.78905,1.08827,1.36668,6.78822,1.08827,1.36684,6.78752,1.08827,1.36731,6.78706,1.08827,1.36801,6.78689,1.08827,1.36884,6.78706,1.08827,1.36966,6.78752,1.08827,1.37036,6.78822,1.08827,1.37083,6.78905,1.08827,1.371,6.78987,1.08827,1.37083,6.79057,1.08827,1.37036,6.79104,1.09527,1.36801,6.79057,1.09527,1.37036,6.78987,1.09527,1.37083,6.78905,1.09527,1.371,6.78822,1.09527,1.37083,6.78752,1.09527,1.37036,6.78706,1.09527,1.36966,6.78689,1.09527,1.36884,6.78706,1.09527,1.36801,6.78752,1.09527,1.36731,6.78822,1.09527,1.36684,6.78905,1.09527,1.36668,6.78987,1.09527,1.36684,6.79057,1.09527,1.36731,6.78658,1.09183,1.37131,6.78658,1.08976,1.37131,6.78658,1.08976,1.36622,6.78658,1.09183,1.36622,6.79158,1.09183,1.37131,6.79158,1.08976,1.37131,6.79158,1.09183,1.36622,6.79158,1.08976,1.36622})))
          .setNormal(new Normal().setVector(getNormal_6_149_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material("dad_anglePlate2").setAmbientIntensity(0.707).setDiffuseColor(0.72,0.72,0.72).setShininess(1.0)))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,1,5,-1,0,2,1,-1,0,3,2,-1,0,4,6,-1,0,5,4,-1,0,6,3,-1,1,2,7,-1,1,7,5,-1,2,3,7,-1,3,6,7,-1,4,5,8,-1,4,8,11,-1,4,11,6,-1,5,7,10,-1,5,9,8,-1,5,10,9,-1,6,11,7,-1,7,11,10,-1,8,9,11,-1,9,10,11,-1}).setNormalIndex(new int[] {0,1,5,-1,0,2,1,-1,0,3,2,-1,0,4,6,-1,0,5,4,-1,0,6,3,-1,1,2,7,-1,1,7,5,-1,2,3,7,-1,3,6,7,-1,4,5,8,-1,4,8,11,-1,4,11,6,-1,5,7,10,-1,5,9,8,-1,5,10,9,-1,6,11,7,-1,7,11,10,-1,8,9,11,-1,9,10,11,-1})
          .setCoord(new Coordinate().setPoint(new MFVec3f(new double[] {6.7908,1.03142,1.39298,6.7908,1.09239,1.39298,6.79264,1.09239,1.39616,6.79264,1.03142,1.39616,6.80235,1.03142,1.38631,6.80235,1.09239,1.38631,6.80418,1.03142,1.38948,6.80418,1.09239,1.38948,6.80617,1.03142,1.3841,6.80617,1.09239,1.3841,6.80801,1.09239,1.38728,6.80801,1.03142,1.38728})))
          .setNormal(new Normal().setVector(new MFVec3f(new double[] {-0.788792,-0.577347,-0.210899,-0.557762,0.816494,-0.149128,-0.502571,0.408252,0.762071,0.0552011,-0.408252,0.911199,-0.277605,-0.83205,-0.480237,-0.400367,0.6,-0.692608,0.277607,-0.83205,0.480236,0.400371,0.6,0.692606,-0.0551505,-0.408255,-0.9112,0.502622,0.408255,-0.762036,0.557759,0.81649,0.149161,0.788784,-0.577341,0.210944})))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material("dad_anglePlate3").setAmbientIntensity(0.707).setDiffuseColor(0.72,0.72,0.72).setShininess(1.0)))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,1,5,-1,0,2,1,-1,0,3,2,-1,0,4,7,-1,0,5,4,-1,0,6,8,-1,0,7,6,-1,0,8,3,-1,1,2,11,-1,1,9,5,-1,1,10,9,-1,1,11,10,-1,2,3,11,-1,3,8,11,-1,4,5,7,-1,5,9,7,-1,6,7,9,-1,6,9,10,-1,6,10,11,-1,6,11,8,-1}).setNormalIndex(new int[] {0,1,5,-1,0,2,1,-1,0,3,2,-1,0,4,7,-1,0,5,4,-1,0,6,8,-1,0,7,6,-1,0,8,3,-1,1,2,11,-1,1,9,5,-1,1,10,9,-1,1,11,10,-1,2,3,11,-1,3,8,11,-1,4,5,7,-1,5,9,7,-1,6,7,9,-1,6,9,10,-1,6,10,11,-1,6,11,8,-1})
          .setCoord(new Coordinate().setPoint(new MFVec3f(new double[] {6.80901,1.03142,1.38829,6.80901,1.09239,1.38829,6.80519,1.09239,1.38608,6.80519,1.03142,1.38608,6.82056,1.03142,1.39496,6.82056,1.09239,1.39496,6.80718,1.03142,1.39147,6.81873,1.03142,1.39813,6.80336,1.03142,1.38926,6.81873,1.09239,1.39813,6.80718,1.09239,1.39147,6.80336,1.09239,1.38926})))
          .setNormal(new Normal().setVector(new MFVec3f(new double[] {0.353584,-0.707107,-0.612355,0.223626,0.894427,-0.387287,0.0547857,0.408271,-0.911215,-0.502977,-0.408271,-0.761793,0.788668,-0.57735,-0.211351,0.910676,0.333333,-0.244047,-0.447237,-0.447214,0.774583,0.4107,-0.66667,0.621994,-0.557701,-0.816482,0.149423,-0.0446454,0.66667,0.744015,-0.353572,0.707107,0.612362,-0.788694,0.57733,0.211313})))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material("dad_anglePlate1").setAmbientIntensity(0.707).setDiffuseColor(0.72,0.72,0.72).setShininess(1.0)))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,1,5,-1,0,2,1,-1,0,3,2,-1,0,4,7,-1,0,5,4,-1,0,6,8,-1,0,7,6,-1,0,8,3,-1,1,2,11,-1,1,9,5,-1,1,10,9,-1,1,11,10,-1,2,3,11,-1,3,8,11,-1,4,5,7,-1,5,9,7,-1,6,7,9,-1,6,9,10,-1,6,10,11,-1,6,11,8,-1}).setNormalIndex(new int[] {0,1,5,-1,0,2,1,-1,0,3,2,-1,0,4,7,-1,0,5,4,-1,0,6,8,-1,0,7,6,-1,0,8,3,-1,1,2,11,-1,1,9,5,-1,1,10,9,-1,1,11,10,-1,2,3,11,-1,3,8,11,-1,4,5,7,-1,5,9,7,-1,6,7,9,-1,6,9,10,-1,6,10,11,-1,6,11,8,-1})
          .setCoord(new Coordinate().setPoint(new MFVec3f(new double[] {6.80319,1.03142,1.38485,6.80319,1.09239,1.38485,6.80342,1.09239,1.38926,6.80342,1.03142,1.38926,6.80252,1.03142,1.37153,6.80252,1.09239,1.37153,6.80686,1.03142,1.38466,6.80619,1.03142,1.37135,6.80708,1.03142,1.38907,6.80619,1.09239,1.37135,6.80686,1.09239,1.38466,6.80708,1.09239,1.38907})))
          .setNormal(new Normal().setVector(new MFVec3f(new double[] {-0.706211,-0.707107,0.0355793,-0.446647,0.894427,0.0225023,-0.794941,0.408189,0.448831,-0.366872,-0.408189,0.835935,-0.605525,-0.577399,-0.547677,-0.69922,0.33337,-0.632421,0.893299,-0.447214,-0.0449173,0.299571,-0.666615,-0.682555,0.428148,-0.816516,0.387287,0.649114,0.666615,-0.366437,0.706215,0.707107,-0.0355102,0.605506,0.577378,0.54772})))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material("dad_IndexedFaceSet4").setAmbientIntensity(1.0).setDiffuseColor(1.0,1.0,1.0).setShininess(1.0).setSpecularColor(1.0,1.0,1.0)))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,2,1,-1,0,3,2,-1,0,4,3,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1}).setNormalIndex(new int[] {0,2,1,-1,0,3,2,-1,0,4,3,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1})
          .setCoord(new Coordinate().setPoint(new MFVec3f(new double[] {6.82036,1.17825,1.42688,6.81933,1.18342,1.42688,6.81641,1.1878,1.42688,6.81202,1.19073,1.42688,6.80685,1.19176,1.42688,6.80168,1.19073,1.42688,6.7973,1.1878,1.42688,6.79437,1.18342,1.42688,6.79334,1.17825,1.42688,6.79437,1.17308,1.42688,6.7973,1.16869,1.42688,6.80168,1.16576,1.42688,6.80685,1.16474,1.42688,6.81202,1.16576,1.42688,6.81641,1.16869,1.42688,6.81933,1.17308,1.42688})))
          .setNormal(new Normal().setVector(new MFVec3f(new double[] {3.80016E-14,0.0,-1.0,1.63117E-13,0.0,-1.0,1.38809E-13,0.0,-1.0,5.72505E-14,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,-1.34412E-14,0.0,-1.0,-1.34412E-14,0.0,-1.0,0.0,0.0,-1.0,-6.71836E-15,0.0,-1.0,-2.25709E-14,0.0,-1.0,-1.58526E-14,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,1.63214E-13,0.0,-1.0,3.26428E-13,0.0,-1.0})))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material("dad_mainGun").setAmbientIntensity(0.094).setDiffuseColor(0.18,0.06414,0.03931).setShininess(1.0).setSpecularColor(0.18748,0.18748,0.18748)))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,2,1,-1,0,3,2,-1,1,2,7,-1,1,5,4,-1,1,6,5,-1,1,7,6,-1,2,3,9,-1,2,9,10,-1,2,10,11,-1,2,11,7,-1,4,5,11,-1,4,9,8,-1,4,10,9,-1,4,11,10,-1,5,6,11,-1,6,7,11,-1}).setNormalIndex(new int[] {0,2,1,-1,0,3,2,-1,1,2,7,-1,1,5,4,-1,1,6,5,-1,1,7,6,-1,2,3,9,-1,2,9,10,-1,2,10,11,-1,2,11,7,-1,4,5,11,-1,4,9,8,-1,4,10,9,-1,4,11,10,-1,5,6,11,-1,6,7,11,-1})
          .setCoord(new Coordinate().setPoint(new MFVec3f(new double[] {6.82261,1.16071,1.24014,6.82261,1.16071,1.37028,6.82261,1.19578,1.37028,6.82261,1.19578,1.24014,6.7911,1.16071,1.37028,6.7911,1.16071,1.42688,6.82261,1.16071,1.42688,6.82261,1.19578,1.42688,6.7911,1.16071,1.24014,6.7911,1.19578,1.24014,6.7911,1.19578,1.37028,6.7911,1.19578,1.42688})))
          .setNormal(new Normal().setVector(new MFVec3f(new double[] {1.0,0.0,0.0,0.83205,-0.5547,0.0,0.6,0.8,0.0,0.707107,0.707107,0.0,-0.970143,-0.242536,0.0,-0.408248,-0.816497,0.408248,0.408248,-0.408248,0.816497,0.816497,0.408248,0.408248,-1.0,0.0,0.0,-0.707107,0.707107,0.0,-0.707107,0.707107,0.0,-0.57735,0.57735,0.57735})))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material("dad_ammoCan").setAmbientIntensity(0.05).setDiffuseColor(0.04276,0.08667,0.02196).setShininess(1.0).setSpecularColor(0.04276,0.08667,0.02196)))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,2,1,-1,0,3,2,-1,1,2,7,-1,1,5,4,-1,1,6,5,-1,1,7,6,-1,2,3,7,-1,3,6,7,-1,3,8,6,-1,3,9,8,-1,5,6,8,-1,5,8,10,-1}).setNormalIndex(new int[] {0,2,1,-1,0,3,2,-1,1,2,7,-1,1,5,4,-1,1,6,5,-1,1,7,6,-1,2,3,7,-1,3,6,7,-1,3,8,6,-1,3,9,8,-1,5,6,8,-1,5,8,10,-1})
          .setCoord(new Coordinate().setPoint(new MFVec3f(new double[] {6.70251,1.16035,1.36857,6.70251,1.16035,1.33476,6.70251,1.19918,1.33476,6.70251,1.19918,1.36857,6.78134,1.16035,1.33476,6.78995,1.16035,1.33476,6.78995,1.19918,1.33476,6.78134,1.19918,1.33476,6.78995,1.19918,1.36857,6.78134,1.19918,1.36857,6.78995,1.16035,1.36857})))
          .setNormal(new Normal().setVector(new MFVec3f(new double[] {-1.0,0.0,0.0,-0.316228,0.0,-0.948683,-0.816497,0.408248,-0.408248,-0.316228,0.948683,0.0,0.0,0.0,0.0,0.894427,0.0,-0.447214,0.333333,0.666667,-0.666667,0.0,0.707107,-0.707107,0.894427,0.447214,0.0,0.0,0.0,0.0,1.0,0.0,0.0})))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material("dad_IndexedFaceSet8").setAmbientIntensity(1.0).setDiffuseColor(1.0,1.0,1.0).setShininess(1.0).setSpecularColor(1.0,1.0,1.0)))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,2,1,-1,0,3,2,-1,0,4,3,-1,0,5,4,-1,4,5,10,-1,4,10,11,-1,6,8,7,-1,6,9,8,-1,7,8,11,-1,7,11,10,-1}).setNormalIndex(new int[] {0,2,1,-1,0,3,2,-1,0,4,3,-1,0,5,4,-1,4,5,10,-1,4,10,11,-1,6,8,7,-1,6,9,8,-1,7,8,11,-1,7,11,10,-1})
          .setCoord(new Coordinate().setPoint(new MFVec3f(new double[] {6.7278,0.847865,1.3991,6.7273,0.848066,1.39639,6.72206,0.834923,1.39639,6.72256,0.834722,1.3991,6.72206,0.834923,1.4018,6.7273,0.848066,1.4018,6.72123,0.850487,1.40617,6.72374,0.849485,1.40563,6.7185,0.836341,1.40563,6.71599,0.837344,1.40617,6.72588,0.848633,1.4041,6.72063,0.83549,1.4041})))
          .setNormal(new Normal().setVector(new MFVec3f(new double[] {0.92881,-0.370555,3.22565E-5,0.910927,-0.36341,-0.195306,0.910933,-0.363423,-0.195257,0.928807,-0.370565,3.22487E-5,0.858106,-0.342344,0.382694,0.858102,-0.342336,0.38271,0.181188,-0.0722828,0.980789,0.411526,-0.164175,0.89649,0.297939,-0.118858,0.947156,0.181182,-0.0722818,0.98079,0.698896,-0.278825,0.658636,0.612002,-0.244157,0.752224})))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material("dad_IndexedFaceSet7").setAmbientIntensity(1.0).setDiffuseColor(1.0,1.0,1.0).setShininess(1.0).setSpecularColor(1.0,1.0,1.0)))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,2,1,-1,0,3,2,-1,1,2,5,-1,1,5,4,-1,4,5,7,-1,4,7,6,-1,6,7,9,-1,6,9,8,-1}).setNormalIndex(new int[] {0,2,1,-1,0,3,2,-1,1,2,5,-1,1,5,4,-1,4,5,7,-1,4,7,6,-1,6,7,9,-1,6,9,8,-1})
          .setCoord(new Coordinate().setPoint(new MFVec3f(new double[] {6.88379,0.848066,1.39887,6.88521,0.848633,1.40117,6.89046,0.83549,1.40117,6.88903,0.834923,1.39887,6.88734,0.849485,1.4027,6.89259,0.836341,1.4027,6.88986,0.850487,1.40324,6.8951,0.837344,1.40324,6.89237,0.851491,1.4027,6.89762,0.838348,1.4027})))
          .setNormal(new Normal().setVector(new MFVec3f(new double[] {-0.772382,-0.30816,0.555395,-0.611836,-0.244097,0.752379,-0.69884,-0.278819,0.658698,-0.772374,-0.308153,0.555409,-0.29784,-0.11882,0.947192,-0.41132,-0.164091,0.896599,0.0614207,0.0245041,0.997811,-0.0614647,-0.0245188,0.997808,0.181171,0.072279,0.980792,0.181209,0.072304,0.980783})))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material("dad_IndexedFaceSet3").setAmbientIntensity(1.0).setDiffuseColor(1.0,1.0,1.0).setShininess(1.0).setSpecularColor(1.0,1.0,1.0)))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,8,1,-1,1,7,2,-1,1,8,7,-1,2,7,3,-1,3,7,4,-1,4,7,5,-1,5,7,6,-1,9,11,10,-1,9,12,11,-1,9,13,12,-1,9,14,13,-1,9,15,14,-1}).setNormalIndex(new int[] {0,8,1,-1,1,7,2,-1,1,8,7,-1,2,7,3,-1,3,7,4,-1,4,7,5,-1,5,7,6,-1,9,11,10,-1,9,12,11,-1,9,13,12,-1,9,14,13,-1,9,15,14,-1})
          .setCoord(new Coordinate().setPoint(new MFVec3f(new double[] {6.82248,1.1738,1.3592,6.82248,1.17323,1.35726,6.82247,1.17285,1.35437,6.82247,1.17271,1.35096,6.82247,1.17285,1.34756,6.82248,1.17323,1.34467,6.82248,1.1738,1.34273,6.82076,1.17382,1.34273,6.82076,1.17382,1.3592,6.82609,1.1998,1.35259,6.82609,1.19923,1.35221,6.82608,1.19885,1.35164,6.82608,1.19871,1.35096,6.82608,1.19885,1.35029,6.82609,1.19923,1.34972,6.82609,1.1998,1.34934})))
          .setNormal(new Normal().setVector(new MFVec3f(new double[] {-0.0116569,-0.958909,0.283473,-0.424013,-0.896192,0.130584,-0.741968,-0.668314,0.0532933,-0.533942,-0.845516,-0.00277211,-0.305499,-0.948556,-0.0831387,-0.101645,-0.972869,-0.207831,-0.0116563,-0.958861,-0.283637,-0.426172,-0.90261,-0.0606053,-0.172584,-0.974261,0.145021,-0.999929,0.0119304,3.04633E-4,-0.999945,0.0102563,0.00217473,-0.999931,0.0117534,6.75081E-4,-0.999924,0.0122985,-1.8819E-4,-0.999925,0.0122187,8.65025E-5,-0.999923,0.0123992,-1.37595E-4,-0.999931,0.0117076,0.0}))))))
    .addChild(new Transform("unnamed_object6_copy9")
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_gunBack")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,2,1,-1,0,3,2,-1,4,6,5,-1,4,7,6,-1,5,6,9,-1,5,9,8,-1}).setNormalIndex(new int[] {0,2,1,-1,0,3,2,-1,4,6,5,-1,4,7,6,-1,5,6,9,-1,5,9,8,-1})
          .setCoord(new Coordinate().setPoint(new MFVec3f(new double[] {7.50982,1.13097,0.242385,7.50982,1.14787,0.242385,7.50982,1.14787,0.240437,7.50982,1.13097,0.240437,7.29632,1.16043,0.240459,7.29632,1.16071,0.246227,7.29632,1.16071,0.277735,7.29632,1.16043,0.283503,7.29632,1.19578,0.246227,7.29632,1.19578,0.277735})))
          .setNormal(new Normal().setVector(new MFVec3f(new double[] {1.0,0.0,-1.0472E-4,1.0,0.0,-1.0472E-4,1.0,0.0,-1.0472E-4,1.0,0.0,-1.0472E-4,-1.0,-3.21607E-12,1.0472E-4,-1.0,-2.14405E-12,1.0472E-4,-1.0,-2.14405E-12,1.0472E-4,-1.0,0.0,1.0472E-4,-1.0,0.0,1.0472E-4,-1.0,0.0,1.0472E-4})))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_IndexedFaceSet5")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(getIndexedFaceSet_5_215_coordIndex()).setNormalIndex(getIndexedFaceSet_5_215_normalIndex())
          .setCoord(new Coordinate().setPoint(getCoordinate_6_215_point()))
          .setNormal(new Normal().setVector(getNormal_6_216_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_IndexedFaceSet1")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(getIndexedFaceSet_5_221_coordIndex()).setNormalIndex(getIndexedFaceSet_5_221_normalIndex())
          .setCoord(new Coordinate().setPoint(getCoordinate_6_221_point()))
          .setNormal(new Normal().setVector(getNormal_6_222_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_shield")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(getIndexedFaceSet_5_227_coordIndex()).setNormalIndex(getIndexedFaceSet_5_227_normalIndex())
          .setCoord(new Coordinate().setPoint(getCoordinate_6_227_point()))
          .setNormal(new Normal().setVector(getNormal_6_228_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_gunStand")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(getIndexedFaceSet_5_233_coordIndex()).setNormalIndex(getIndexedFaceSet_5_233_normalIndex())
          .setCoord(new Coordinate().setPoint(getCoordinate_6_233_point()))
          .setNormal(new Normal().setVector(getNormal_6_234_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_bottomPlate")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(getIndexedFaceSet_5_239_coordIndex()).setNormalIndex(getIndexedFaceSet_5_239_normalIndex())
          .setCoord(new Coordinate().setPoint(getCoordinate_6_239_point()))
          .setNormal(new Normal().setVector(getNormal_6_240_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_middlePlate")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(getIndexedFaceSet_5_245_coordIndex()).setNormalIndex(getIndexedFaceSet_5_245_normalIndex())
          .setCoord(new Coordinate().setPoint(getCoordinate_6_245_point()))
          .setNormal(new Normal().setVector(getNormal_6_246_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_leg1")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(getIndexedFaceSet_5_251_coordIndex()).setNormalIndex(getIndexedFaceSet_5_251_normalIndex())
          .setCoord(new Coordinate().setPoint(getCoordinate_6_251_point()))
          .setNormal(new Normal().setVector(getNormal_6_252_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_IndexedFaceSet6")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(getIndexedFaceSet_5_257_coordIndex()).setNormalIndex(getIndexedFaceSet_5_257_normalIndex())
          .setCoord(new Coordinate().setPoint(getCoordinate_6_257_point()))
          .setNormal(new Normal().setVector(getNormal_6_258_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_IndexedFaceSet9")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(getIndexedFaceSet_5_263_coordIndex()).setNormalIndex(getIndexedFaceSet_5_263_normalIndex())
          .setCoord(new Coordinate().setPoint(getCoordinate_6_263_point()))
          .setNormal(new Normal().setVector(getNormal_6_264_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_handle1")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(getIndexedFaceSet_5_269_coordIndex()).setNormalIndex(getIndexedFaceSet_5_269_normalIndex())
          .setCoord(new Coordinate().setPoint(getCoordinate_6_269_point()))
          .setNormal(new Normal().setVector(getNormal_6_270_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_handle2")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(getIndexedFaceSet_5_275_coordIndex()).setNormalIndex(getIndexedFaceSet_5_275_normalIndex())
          .setCoord(new Coordinate().setPoint(getCoordinate_6_275_point()))
          .setNormal(new Normal().setVector(getNormal_6_276_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_baseStand")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(getIndexedFaceSet_5_281_coordIndex()).setNormalIndex(getIndexedFaceSet_5_281_normalIndex())
          .setCoord(new Coordinate().setPoint(getCoordinate_6_281_point()))
          .setNormal(new Normal().setVector(getNormal_6_282_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_IndexedFaceSet2")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,2,1,-1,0,3,2,-1,0,4,3,-1,0,5,4,-1,1,2,7,-1,1,7,6,-1,2,3,7,-1,3,4,35,-1,3,9,7,-1,3,11,9,-1,3,13,11,-1,3,29,30,-1,3,30,13,-1,3,33,29,-1,3,35,33,-1,4,5,34,-1,4,34,35,-1,6,7,9,-1,6,9,8,-1,8,9,11,-1,8,11,10,-1,10,11,13,-1,10,13,12,-1,12,13,17,-1,12,15,14,-1,12,16,15,-1,12,17,16,-1,13,30,31,-1,13,31,17,-1,14,15,19,-1,14,19,18,-1,15,16,36,-1,15,36,39,-1,15,39,19,-1,16,17,38,-1,16,37,36,-1,16,38,37,-1,17,31,38,-1,18,19,21,-1,18,21,20,-1,19,39,40,-1,19,40,21,-1,20,21,23,-1,20,23,22,-1,21,40,41,-1,21,41,23,-1,22,23,25,-1,22,25,24,-1,23,41,42,-1,23,42,25,-1,24,25,27,-1,24,27,26,-1,25,42,43,-1,25,43,27,-1,26,27,31,-1,26,29,28,-1,26,30,29,-1,26,31,30,-1,27,43,44,-1,27,44,31,-1,28,29,33,-1,28,33,32,-1,31,44,38,-1,32,33,35,-1,32,35,34,-1}).setNormalIndex(new int[] {0,2,1,-1,0,3,2,-1,0,4,3,-1,0,5,4,-1,1,2,7,-1,1,7,6,-1,2,3,7,-1,3,4,35,-1,3,9,7,-1,3,11,9,-1,3,13,11,-1,3,29,30,-1,3,30,13,-1,3,33,29,-1,3,35,33,-1,4,5,34,-1,4,34,35,-1,6,7,9,-1,6,9,8,-1,8,9,11,-1,8,11,10,-1,10,11,13,-1,10,13,12,-1,12,13,17,-1,12,15,14,-1,12,16,15,-1,12,17,16,-1,13,30,31,-1,13,31,17,-1,14,15,19,-1,14,19,18,-1,15,16,36,-1,15,36,39,-1,15,39,19,-1,16,17,38,-1,16,37,36,-1,16,38,37,-1,17,31,38,-1,18,19,21,-1,18,21,20,-1,19,39,40,-1,19,40,21,-1,20,21,23,-1,20,23,22,-1,21,40,41,-1,21,41,23,-1,22,23,25,-1,22,25,24,-1,23,41,42,-1,23,42,25,-1,24,25,27,-1,24,27,26,-1,25,42,43,-1,25,43,27,-1,26,27,31,-1,26,29,28,-1,26,30,29,-1,26,31,30,-1,27,43,44,-1,27,44,31,-1,28,29,33,-1,28,33,32,-1,31,44,38,-1,32,33,35,-1,32,35,34,-1})
          .setCoord(new Coordinate().setPoint(getCoordinate_6_287_point()))
          .setNormal(new Normal().setVector(getNormal_6_288_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_boltBottom3")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,19,-1,3,18,32,-1,3,20,19,-1,3,21,20,-1,3,22,21,-1,3,23,22,-1,3,24,23,-1,3,25,24,-1,3,26,25,-1,3,28,26,-1,3,29,28,-1,3,30,29,-1,3,31,30,-1,3,32,31,-1,4,5,18,-1,5,6,32,-1,5,32,18,-1,6,7,31,-1,6,31,32,-1,7,8,30,-1,7,30,31,-1,8,9,29,-1,8,29,30,-1,9,10,27,-1,9,27,28,-1,9,28,29,-1,10,11,26,-1,10,26,28,-1,10,28,27,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,33,34,38,-1,33,35,34,-1,33,36,35,-1,33,37,39,-1,33,38,37,-1,33,39,36,-1,34,35,40,-1,34,40,38,-1,35,36,40,-1,36,39,40,-1,37,38,39,-1,38,40,39,-1}).setNormalIndex(new int[] {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,19,-1,3,18,32,-1,3,20,19,-1,3,21,20,-1,3,22,21,-1,3,23,22,-1,3,24,23,-1,3,25,24,-1,3,26,25,-1,3,28,26,-1,3,29,28,-1,3,30,29,-1,3,31,30,-1,3,32,31,-1,4,5,18,-1,5,6,32,-1,5,32,18,-1,6,7,31,-1,6,31,32,-1,7,8,30,-1,7,30,31,-1,8,9,29,-1,8,29,30,-1,9,10,27,-1,9,27,28,-1,9,28,29,-1,10,11,26,-1,10,26,28,-1,10,28,27,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,33,34,38,-1,33,35,34,-1,33,36,35,-1,33,37,39,-1,33,38,37,-1,33,39,36,-1,34,35,40,-1,34,40,38,-1,35,36,40,-1,36,39,40,-1,37,38,39,-1,38,40,39,-1})
          .setCoord(new Coordinate().setPoint(getCoordinate_6_293_point()))
          .setNormal(new Normal().setVector(getNormal_6_294_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_bolt2")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,19,-1,3,18,31,-1,3,20,19,-1,3,21,20,-1,3,22,21,-1,3,23,22,-1,3,24,23,-1,3,25,24,-1,3,26,25,-1,3,27,26,-1,3,28,27,-1,3,29,28,-1,3,30,29,-1,3,31,30,-1,4,5,18,-1,5,6,31,-1,5,31,18,-1,6,7,30,-1,6,30,31,-1,7,8,29,-1,7,29,30,-1,8,9,28,-1,8,28,29,-1,9,10,27,-1,9,27,28,-1,10,11,26,-1,10,26,27,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,32,33,37,-1,32,34,33,-1,32,35,34,-1,32,36,38,-1,32,37,36,-1,32,38,35,-1,33,34,39,-1,33,39,37,-1,34,35,39,-1,35,38,39,-1,36,37,38,-1,37,39,38,-1}).setNormalIndex(new int[] {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,19,-1,3,18,31,-1,3,20,19,-1,3,21,20,-1,3,22,21,-1,3,23,22,-1,3,24,23,-1,3,25,24,-1,3,26,25,-1,3,27,26,-1,3,28,27,-1,3,29,28,-1,3,30,29,-1,3,31,30,-1,4,5,18,-1,5,6,31,-1,5,31,18,-1,6,7,30,-1,6,30,31,-1,7,8,29,-1,7,29,30,-1,8,9,28,-1,8,28,29,-1,9,10,27,-1,9,27,28,-1,10,11,26,-1,10,26,27,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,32,33,37,-1,32,34,33,-1,32,35,34,-1,32,36,38,-1,32,37,36,-1,32,38,35,-1,33,34,39,-1,33,39,37,-1,34,35,39,-1,35,38,39,-1,36,37,38,-1,37,39,38,-1})
          .setCoord(new Coordinate().setPoint(new MFVec3f(new double[] {7.42499,1.10243,0.242817,7.42417,1.10243,0.242981,7.42417,1.09543,0.242981,7.42499,1.09543,0.242817,7.42582,1.10243,0.242981,7.42652,1.10243,0.243448,7.42699,1.10243,0.244149,7.42715,1.10243,0.244975,7.42699,1.10243,0.2458,7.42652,1.10243,0.2465,7.42582,1.10243,0.246968,7.42499,1.10243,0.247132,7.42417,1.10243,0.246968,7.42347,1.10243,0.2465,7.423,1.10243,0.245801,7.42283,1.10243,0.244975,7.423,1.10243,0.24415,7.42347,1.10243,0.243449,7.42582,1.09543,0.242981,7.42347,1.09543,0.243449,7.423,1.09543,0.24415,7.42283,1.09543,0.244975,7.423,1.09543,0.245801,7.42347,1.09543,0.2465,7.42417,1.09543,0.246968,7.42499,1.09543,0.247132,7.42582,1.09543,0.246968,7.42652,1.09543,0.2465,7.42699,1.09543,0.2458,7.42715,1.09543,0.244975,7.42699,1.09543,0.244149,7.42652,1.09543,0.243448,7.42252,1.09887,0.247444,7.42252,1.10094,0.247444,7.42761,1.10094,0.247443,7.42761,1.09887,0.247443,7.42252,1.09887,0.242446,7.42252,1.10094,0.242446,7.42761,1.09887,0.242446,7.42761,1.10094,0.242446})))
          .setNormal(new Normal().setVector(getNormal_6_300_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_bolt4")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,19,-1,3,18,31,-1,3,20,19,-1,3,21,20,-1,3,22,21,-1,3,23,22,-1,3,24,23,-1,3,25,24,-1,3,26,25,-1,3,27,26,-1,3,28,27,-1,3,29,28,-1,3,30,29,-1,3,31,30,-1,4,5,18,-1,5,6,31,-1,5,31,18,-1,6,7,30,-1,6,30,31,-1,7,8,29,-1,7,29,30,-1,8,9,28,-1,8,28,29,-1,9,10,27,-1,9,27,28,-1,10,11,26,-1,10,26,27,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,32,33,37,-1,32,34,33,-1,32,35,34,-1,32,36,38,-1,32,37,36,-1,32,38,35,-1,33,34,39,-1,33,39,37,-1,34,35,39,-1,35,38,39,-1,36,37,38,-1,37,39,38,-1}).setNormalIndex(new int[] {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,19,-1,3,18,31,-1,3,20,19,-1,3,21,20,-1,3,22,21,-1,3,23,22,-1,3,24,23,-1,3,25,24,-1,3,26,25,-1,3,27,26,-1,3,28,27,-1,3,29,28,-1,3,30,29,-1,3,31,30,-1,4,5,18,-1,5,6,31,-1,5,31,18,-1,6,7,30,-1,6,30,31,-1,7,8,29,-1,7,29,30,-1,8,9,28,-1,8,28,29,-1,9,10,27,-1,9,27,28,-1,10,11,26,-1,10,26,27,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,32,33,37,-1,32,34,33,-1,32,35,34,-1,32,36,38,-1,32,37,36,-1,32,38,35,-1,33,34,39,-1,33,39,37,-1,34,35,39,-1,35,38,39,-1,36,37,38,-1,37,39,38,-1})
          .setCoord(new Coordinate().setPoint(new MFVec3f(new double[] {7.45933,1.10243,0.242814,7.4585,1.10243,0.242977,7.4585,1.09543,0.242977,7.45933,1.09543,0.242814,7.46016,1.10243,0.242977,7.46086,1.10243,0.243445,7.46132,1.10243,0.244146,7.46149,1.10243,0.244971,7.46132,1.10243,0.245797,7.46086,1.10243,0.246496,7.46016,1.10243,0.246964,7.45933,1.10243,0.247128,7.4585,1.10243,0.246964,7.4578,1.10243,0.246497,7.45734,1.10243,0.245797,7.45717,1.10243,0.244972,7.45734,1.10243,0.244146,7.4578,1.10243,0.243445,7.46016,1.09543,0.242977,7.4578,1.09543,0.243445,7.45734,1.09543,0.244146,7.45717,1.09543,0.244972,7.45734,1.09543,0.245797,7.4578,1.09543,0.246497,7.4585,1.09543,0.246964,7.45933,1.09543,0.247128,7.46016,1.09543,0.246964,7.46086,1.09543,0.246496,7.46132,1.09543,0.245797,7.46149,1.09543,0.244971,7.46132,1.09543,0.244146,7.46086,1.09543,0.243445,7.45686,1.09887,0.24744,7.45686,1.10094,0.24744,7.46194,1.10094,0.24744,7.46194,1.09887,0.24744,7.45686,1.09887,0.242443,7.45686,1.10094,0.242443,7.46194,1.09887,0.242442,7.46194,1.10094,0.242442})))
          .setNormal(new Normal().setVector(getNormal_6_306_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_boltBottom2")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,19,-1,3,18,31,-1,3,20,19,-1,3,21,20,-1,3,22,21,-1,3,23,22,-1,3,24,23,-1,3,25,24,-1,3,26,25,-1,3,27,26,-1,3,28,27,-1,3,29,28,-1,3,30,29,-1,3,31,30,-1,4,5,18,-1,5,6,31,-1,5,31,18,-1,6,7,30,-1,6,30,31,-1,7,8,29,-1,7,29,30,-1,8,9,28,-1,8,28,29,-1,9,10,27,-1,9,27,28,-1,10,11,26,-1,10,26,27,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,32,33,37,-1,32,34,33,-1,32,35,34,-1,32,36,38,-1,32,37,36,-1,32,38,35,-1,33,34,39,-1,33,39,37,-1,34,35,39,-1,35,38,39,-1,36,37,38,-1,37,39,38,-1}).setNormalIndex(new int[] {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,19,-1,3,18,31,-1,3,20,19,-1,3,21,20,-1,3,22,21,-1,3,23,22,-1,3,24,23,-1,3,25,24,-1,3,26,25,-1,3,27,26,-1,3,28,27,-1,3,29,28,-1,3,30,29,-1,3,31,30,-1,4,5,18,-1,5,6,31,-1,5,31,18,-1,6,7,30,-1,6,30,31,-1,7,8,29,-1,7,29,30,-1,8,9,28,-1,8,28,29,-1,9,10,27,-1,9,27,28,-1,10,11,26,-1,10,26,27,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,32,33,37,-1,32,34,33,-1,32,35,34,-1,32,36,38,-1,32,37,36,-1,32,38,35,-1,33,34,39,-1,33,39,37,-1,34,35,39,-1,35,38,39,-1,36,37,38,-1,37,39,38,-1})
          .setCoord(new Coordinate().setPoint(new MFVec3f(new double[] {7.42502,1.08827,0.242817,7.42585,1.08827,0.242981,7.42585,1.09527,0.242981,7.42502,1.09527,0.242817,7.4242,1.08827,0.242981,7.42349,1.08827,0.243449,7.42303,1.08827,0.24415,7.42286,1.08827,0.244975,7.42303,1.08827,0.245801,7.4235,1.08827,0.2465,7.4242,1.08827,0.246968,7.42502,1.08827,0.247132,7.42585,1.08827,0.246968,7.42655,1.08827,0.2465,7.42701,1.08827,0.2458,7.42718,1.08827,0.244975,7.42701,1.08827,0.244149,7.42655,1.08827,0.243448,7.4242,1.09527,0.242981,7.42655,1.09527,0.243448,7.42701,1.09527,0.244149,7.42718,1.09527,0.244975,7.42701,1.09527,0.2458,7.42655,1.09527,0.2465,7.42585,1.09527,0.246968,7.42502,1.09527,0.247132,7.4242,1.09527,0.246968,7.4235,1.09527,0.2465,7.42303,1.09527,0.245801,7.42286,1.09527,0.244975,7.42303,1.09527,0.24415,7.42349,1.09527,0.243449,7.42749,1.09183,0.247443,7.42749,1.08976,0.247443,7.42241,1.08976,0.247444,7.42241,1.09183,0.247444,7.42749,1.09183,0.242446,7.42749,1.08976,0.242446,7.42241,1.09183,0.242447,7.42241,1.08976,0.242447})))
          .setNormal(new Normal().setVector(getNormal_6_312_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_boltBottom4")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,19,-1,3,18,31,-1,3,20,19,-1,3,21,20,-1,3,22,21,-1,3,23,22,-1,3,24,23,-1,3,25,24,-1,3,26,25,-1,3,27,26,-1,3,28,27,-1,3,29,28,-1,3,30,29,-1,3,31,30,-1,4,5,18,-1,5,6,31,-1,5,31,18,-1,6,7,30,-1,6,30,31,-1,7,8,29,-1,7,29,30,-1,8,9,28,-1,8,28,29,-1,9,10,27,-1,9,27,28,-1,10,11,26,-1,10,26,27,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,32,33,37,-1,32,34,33,-1,32,35,34,-1,32,36,38,-1,32,37,36,-1,32,38,35,-1,33,34,39,-1,33,39,37,-1,34,35,39,-1,35,38,39,-1,36,37,38,-1,37,39,38,-1}).setNormalIndex(new int[] {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,19,-1,3,18,31,-1,3,20,19,-1,3,21,20,-1,3,22,21,-1,3,23,22,-1,3,24,23,-1,3,25,24,-1,3,26,25,-1,3,27,26,-1,3,28,27,-1,3,29,28,-1,3,30,29,-1,3,31,30,-1,4,5,18,-1,5,6,31,-1,5,31,18,-1,6,7,30,-1,6,30,31,-1,7,8,29,-1,7,29,30,-1,8,9,28,-1,8,28,29,-1,9,10,27,-1,9,27,28,-1,10,11,26,-1,10,26,27,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,32,33,37,-1,32,34,33,-1,32,35,34,-1,32,36,38,-1,32,37,36,-1,32,38,35,-1,33,34,39,-1,33,39,37,-1,34,35,39,-1,35,38,39,-1,36,37,38,-1,37,39,38,-1})
          .setCoord(new Coordinate().setPoint(new MFVec3f(new double[] {7.45936,1.08827,0.242814,7.46018,1.08827,0.242977,7.46018,1.09527,0.242977,7.45936,1.09527,0.242814,7.45853,1.08827,0.242977,7.45783,1.08827,0.243445,7.45736,1.08827,0.244146,7.4572,1.08827,0.244972,7.45736,1.08827,0.245797,7.45783,1.08827,0.246497,7.45853,1.08827,0.246964,7.45936,1.08827,0.247128,7.46018,1.08827,0.246964,7.46088,1.08827,0.246496,7.46135,1.08827,0.245797,7.46152,1.08827,0.244971,7.46135,1.08827,0.244146,7.46088,1.08827,0.243445,7.45853,1.09527,0.242977,7.46088,1.09527,0.243445,7.46135,1.09527,0.244146,7.46152,1.09527,0.244971,7.46135,1.09527,0.245797,7.46088,1.09527,0.246496,7.46018,1.09527,0.246964,7.45936,1.09527,0.247128,7.45853,1.09527,0.246964,7.45783,1.09527,0.246497,7.45736,1.09527,0.245797,7.4572,1.09527,0.244972,7.45736,1.09527,0.244146,7.45783,1.09527,0.243445,7.46183,1.09183,0.24744,7.46183,1.08976,0.24744,7.45674,1.08976,0.24744,7.45674,1.09183,0.24744,7.46183,1.09183,0.242442,7.46183,1.08976,0.242442,7.45674,1.09183,0.242443,7.45674,1.08976,0.242443})))
          .setNormal(new Normal().setVector(getNormal_6_318_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_mountingPlate")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,19,-1,3,18,31,-1,3,20,19,-1,3,21,20,-1,3,22,21,-1,3,23,22,-1,3,24,23,-1,3,25,24,-1,3,26,25,-1,3,27,26,-1,3,28,27,-1,3,29,28,-1,3,30,29,-1,3,31,30,-1,4,5,18,-1,5,6,31,-1,5,31,18,-1,6,7,30,-1,6,30,31,-1,7,8,29,-1,7,29,30,-1,8,9,28,-1,8,28,29,-1,9,10,27,-1,9,27,28,-1,10,11,26,-1,10,26,27,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1}).setNormalIndex(new int[] {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,19,-1,3,18,31,-1,3,20,19,-1,3,21,20,-1,3,22,21,-1,3,23,22,-1,3,24,23,-1,3,25,24,-1,3,26,25,-1,3,27,26,-1,3,28,27,-1,3,29,28,-1,3,30,29,-1,3,31,30,-1,4,5,18,-1,5,6,31,-1,5,31,18,-1,6,7,30,-1,6,30,31,-1,7,8,29,-1,7,29,30,-1,8,9,28,-1,8,28,29,-1,9,10,27,-1,9,27,28,-1,10,11,26,-1,10,26,27,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1})
          .setCoord(new Coordinate().setPoint(new MFVec3f(new double[] {7.44184,1.13861,0.247553,7.43632,1.13861,0.24865,7.43632,1.12813,0.24865,7.44184,1.12813,0.247553,7.44735,1.13861,0.248649,7.45203,1.13861,0.251774,7.45515,1.13861,0.256448,7.45625,1.13861,0.261964,7.45516,1.13861,0.267481,7.45203,1.13861,0.272156,7.44736,1.13861,0.275281,7.44184,1.13861,0.276378,7.43632,1.13861,0.275283,7.43165,1.13861,0.272158,7.42852,1.13861,0.267483,7.42743,1.13861,0.261967,7.42852,1.13861,0.256451,7.43165,1.13861,0.251776,7.44735,1.12813,0.248649,7.43165,1.12813,0.251776,7.42852,1.12813,0.256451,7.42743,1.12813,0.261967,7.42852,1.12813,0.267483,7.43165,1.12813,0.272158,7.43632,1.12813,0.275283,7.44184,1.12813,0.276378,7.44736,1.12813,0.275281,7.45203,1.12813,0.272156,7.45516,1.12813,0.267481,7.45625,1.12813,0.261964,7.45515,1.12813,0.256448,7.45203,1.12813,0.251774})))
          .setNormal(new Normal().setVector(new MFVec3f(new double[] {-2.82572E-5,0.962906,-0.269836,-0.419678,0.321163,-0.848955,-0.303816,-0.321163,-0.896967,-1.45309E-5,-0.990326,-0.13876,0.340886,0.454194,-0.823107,0.545193,0.561298,-0.622663,0.741894,0.561324,-0.366754,0.825793,0.561304,-0.054806,0.783908,0.561324,0.265338,0.622663,0.561298,0.545193,0.366754,0.561324,0.741894,0.054806,0.561304,0.825793,-0.265338,0.561324,0.783908,-0.545193,0.561298,0.622663,-0.741894,0.561324,0.366754,-0.825793,0.561304,0.054806,-0.783908,0.561324,-0.265338,-0.622663,0.561298,-0.545193,0.370773,-0.247008,-0.895273,-0.545323,-0.561298,-0.622549,-0.741971,-0.561324,-0.366598,-0.825804,-0.561304,-0.054633,-0.783852,-0.561324,0.265502,-0.622549,-0.561298,0.545323,-0.366598,-0.561324,0.741971,-0.054633,-0.561304,0.825804,0.265502,-0.561324,0.783852,0.545323,-0.561298,0.622549,0.741971,-0.561324,0.366598,0.825804,-0.561304,0.054633,0.783852,-0.561324,-0.265502,0.622549,-0.561298,-0.545323})))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_bolt")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,19,-1,3,18,31,-1,3,20,19,-1,3,21,20,-1,3,22,21,-1,3,23,22,-1,3,24,23,-1,3,25,24,-1,3,26,25,-1,3,27,26,-1,3,28,27,-1,3,29,28,-1,3,30,29,-1,3,31,30,-1,4,5,18,-1,5,6,31,-1,5,31,18,-1,6,7,30,-1,6,30,31,-1,7,8,29,-1,7,29,30,-1,8,9,28,-1,8,28,29,-1,9,10,27,-1,9,27,28,-1,10,11,26,-1,10,26,27,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,32,33,37,-1,32,34,33,-1,32,35,34,-1,32,36,38,-1,32,37,36,-1,32,38,35,-1,33,34,39,-1,33,39,37,-1,34,35,39,-1,35,38,39,-1,36,37,38,-1,37,39,38,-1}).setNormalIndex(new int[] {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,19,-1,3,18,31,-1,3,20,19,-1,3,21,20,-1,3,22,21,-1,3,23,22,-1,3,24,23,-1,3,25,24,-1,3,26,25,-1,3,27,26,-1,3,28,27,-1,3,29,28,-1,3,30,29,-1,3,31,30,-1,4,5,18,-1,5,6,31,-1,5,31,18,-1,6,7,30,-1,6,30,31,-1,7,8,29,-1,7,29,30,-1,8,9,28,-1,8,28,29,-1,9,10,27,-1,9,27,28,-1,10,11,26,-1,10,26,27,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,32,33,37,-1,32,34,33,-1,32,35,34,-1,32,36,38,-1,32,37,36,-1,32,38,35,-1,33,34,39,-1,33,39,37,-1,34,35,39,-1,35,38,39,-1,36,37,38,-1,37,39,38,-1})
          .setCoord(new Coordinate().setPoint(new MFVec3f(new double[] {7.425,1.10243,0.277612,7.42417,1.10243,0.277777,7.42417,1.09543,0.277777,7.425,1.09543,0.277612,7.42582,1.10243,0.277777,7.42652,1.10243,0.278245,7.42699,1.10243,0.278944,7.42715,1.10243,0.27977,7.42699,1.10243,0.280595,7.42652,1.10243,0.281295,7.42582,1.10243,0.281762,7.425,1.10243,0.281926,7.42417,1.10243,0.281763,7.42347,1.10243,0.281295,7.423,1.10243,0.280595,7.42284,1.10243,0.27977,7.423,1.10243,0.278945,7.42347,1.10243,0.278245,7.42582,1.09543,0.277777,7.42347,1.09543,0.278245,7.423,1.09543,0.278945,7.42284,1.09543,0.27977,7.423,1.09543,0.280595,7.42347,1.09543,0.281295,7.42417,1.09543,0.281763,7.425,1.09543,0.281926,7.42582,1.09543,0.281762,7.42652,1.09543,0.281295,7.42699,1.09543,0.280595,7.42715,1.09543,0.27977,7.42699,1.09543,0.278944,7.42652,1.09543,0.278245,7.42252,1.09887,0.282239,7.42252,1.10094,0.282239,7.42761,1.10094,0.282238,7.42761,1.09887,0.282238,7.42252,1.09887,0.277241,7.42252,1.10094,0.277241,7.42761,1.09887,0.277241,7.42761,1.10094,0.277241})))
          .setNormal(new Normal().setVector(getNormal_6_330_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_bolt3")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,19,-1,3,18,31,-1,3,20,19,-1,3,21,20,-1,3,22,21,-1,3,23,22,-1,3,24,23,-1,3,25,24,-1,3,26,25,-1,3,27,26,-1,3,28,27,-1,3,29,28,-1,3,30,29,-1,3,31,30,-1,4,5,18,-1,5,6,31,-1,5,31,18,-1,6,7,30,-1,6,30,31,-1,7,8,29,-1,7,29,30,-1,8,9,28,-1,8,28,29,-1,9,10,27,-1,9,27,28,-1,10,11,26,-1,10,26,27,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,32,33,37,-1,32,34,33,-1,32,35,34,-1,32,36,38,-1,32,37,36,-1,32,38,35,-1,33,34,39,-1,33,39,37,-1,34,35,39,-1,35,38,39,-1,36,37,38,-1,37,39,38,-1}).setNormalIndex(new int[] {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,19,-1,3,18,31,-1,3,20,19,-1,3,21,20,-1,3,22,21,-1,3,23,22,-1,3,24,23,-1,3,25,24,-1,3,26,25,-1,3,27,26,-1,3,28,27,-1,3,29,28,-1,3,30,29,-1,3,31,30,-1,4,5,18,-1,5,6,31,-1,5,31,18,-1,6,7,30,-1,6,30,31,-1,7,8,29,-1,7,29,30,-1,8,9,28,-1,8,28,29,-1,9,10,27,-1,9,27,28,-1,10,11,26,-1,10,26,27,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,32,33,37,-1,32,34,33,-1,32,35,34,-1,32,36,38,-1,32,37,36,-1,32,38,35,-1,33,34,39,-1,33,39,37,-1,34,35,39,-1,35,38,39,-1,36,37,38,-1,37,39,38,-1})
          .setCoord(new Coordinate().setPoint(new MFVec3f(new double[] {7.45933,1.10243,0.277608,7.45851,1.10243,0.277773,7.45851,1.09543,0.277773,7.45933,1.09543,0.277608,7.46016,1.10243,0.277773,7.46086,1.10243,0.278241,7.46133,1.10243,0.278941,7.46149,1.10243,0.279766,7.46133,1.10243,0.280591,7.46086,1.10243,0.281291,7.46016,1.10243,0.281759,7.45933,1.10243,0.281923,7.45851,1.10243,0.281759,7.45781,1.10243,0.281292,7.45734,1.10243,0.280592,7.45718,1.10243,0.279766,7.45734,1.10243,0.278941,7.45781,1.10243,0.278241,7.46016,1.09543,0.277773,7.45781,1.09543,0.278241,7.45734,1.09543,0.278941,7.45718,1.09543,0.279766,7.45734,1.09543,0.280592,7.45781,1.09543,0.281292,7.45851,1.09543,0.281759,7.45933,1.09543,0.281923,7.46016,1.09543,0.281759,7.46086,1.09543,0.281291,7.46133,1.09543,0.280591,7.46149,1.09543,0.279766,7.46133,1.09543,0.278941,7.46086,1.09543,0.278241,7.45686,1.09887,0.282235,7.45686,1.10094,0.282235,7.46195,1.10094,0.282234,7.46195,1.09887,0.282234,7.45686,1.09887,0.277238,7.45686,1.10094,0.277238,7.46195,1.09887,0.277237,7.46195,1.10094,0.277237})))
          .setNormal(new Normal().setVector(getNormal_6_336_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_boltBottom1")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,19,-1,3,18,31,-1,3,20,19,-1,3,21,20,-1,3,22,21,-1,3,23,22,-1,3,24,23,-1,3,25,24,-1,3,26,25,-1,3,27,26,-1,3,28,27,-1,3,29,28,-1,3,30,29,-1,3,31,30,-1,4,5,18,-1,5,6,31,-1,5,31,18,-1,6,7,30,-1,6,30,31,-1,7,8,29,-1,7,29,30,-1,8,9,28,-1,8,28,29,-1,9,10,27,-1,9,27,28,-1,10,11,26,-1,10,26,27,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,32,33,37,-1,32,34,33,-1,32,35,34,-1,32,36,38,-1,32,37,36,-1,32,38,35,-1,33,34,39,-1,33,39,37,-1,34,35,39,-1,35,38,39,-1,36,37,38,-1,37,39,38,-1}).setNormalIndex(new int[] {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,19,-1,3,18,31,-1,3,20,19,-1,3,21,20,-1,3,22,21,-1,3,23,22,-1,3,24,23,-1,3,25,24,-1,3,26,25,-1,3,27,26,-1,3,28,27,-1,3,29,28,-1,3,30,29,-1,3,31,30,-1,4,5,18,-1,5,6,31,-1,5,31,18,-1,6,7,30,-1,6,30,31,-1,7,8,29,-1,7,29,30,-1,8,9,28,-1,8,28,29,-1,9,10,27,-1,9,27,28,-1,10,11,26,-1,10,26,27,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,32,33,37,-1,32,34,33,-1,32,35,34,-1,32,36,38,-1,32,37,36,-1,32,38,35,-1,33,34,39,-1,33,39,37,-1,34,35,39,-1,35,38,39,-1,36,37,38,-1,37,39,38,-1})
          .setCoord(new Coordinate().setPoint(new MFVec3f(new double[] {7.42502,1.08827,0.277612,7.42585,1.08827,0.277777,7.42585,1.09527,0.277777,7.42502,1.09527,0.277612,7.4242,1.08827,0.277777,7.4235,1.08827,0.278245,7.42303,1.08827,0.278945,7.42287,1.08827,0.27977,7.42303,1.08827,0.280595,7.4235,1.08827,0.281295,7.4242,1.08827,0.281763,7.42503,1.08827,0.281926,7.42585,1.08827,0.281762,7.42655,1.08827,0.281295,7.42702,1.08827,0.280595,7.42718,1.08827,0.27977,7.42702,1.08827,0.278944,7.42655,1.08827,0.278244,7.4242,1.09527,0.277777,7.42655,1.09527,0.278244,7.42702,1.09527,0.278944,7.42718,1.09527,0.27977,7.42702,1.09527,0.280595,7.42655,1.09527,0.281295,7.42585,1.09527,0.281762,7.42503,1.09527,0.281926,7.4242,1.09527,0.281763,7.4235,1.09527,0.281295,7.42303,1.09527,0.280595,7.42287,1.09527,0.27977,7.42303,1.09527,0.278945,7.4235,1.09527,0.278245,7.4275,1.09183,0.282238,7.4275,1.08976,0.282238,7.42241,1.08976,0.282239,7.42241,1.09183,0.282239,7.4275,1.09183,0.277241,7.4275,1.08976,0.277241,7.42241,1.09183,0.277241,7.42241,1.08976,0.277241})))
          .setNormal(new Normal().setVector(getNormal_6_342_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_anglePlate2")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,1,5,-1,0,2,1,-1,0,3,2,-1,0,4,6,-1,0,5,4,-1,0,6,3,-1,1,2,7,-1,1,7,5,-1,2,3,7,-1,3,6,7,-1,4,5,8,-1,4,8,11,-1,4,11,6,-1,5,7,10,-1,5,9,8,-1,5,10,9,-1,6,11,7,-1,7,11,10,-1,8,9,11,-1,9,10,11,-1}).setNormalIndex(new int[] {0,1,5,-1,0,2,1,-1,0,3,2,-1,0,4,6,-1,0,5,4,-1,0,6,3,-1,1,2,7,-1,1,7,5,-1,2,3,7,-1,3,6,7,-1,4,5,8,-1,4,8,11,-1,4,11,6,-1,5,7,10,-1,5,9,8,-1,5,10,9,-1,6,11,7,-1,7,11,10,-1,8,9,11,-1,9,10,11,-1})
          .setCoord(new Coordinate().setPoint(new MFVec3f(new double[] {7.44917,1.03142,0.278012,7.44917,1.09239,0.278012,7.45234,1.09239,0.276176,7.45234,1.03142,0.276176,7.44249,1.03142,0.266469,7.44249,1.09239,0.266469,7.44567,1.03142,0.264633,7.44567,1.09239,0.264633,7.44028,1.03142,0.262647,7.44028,1.09239,0.262647,7.44346,1.09239,0.260811,7.44346,1.03142,0.260811})))
          .setNormal(new Normal().setVector(new MFVec3f(new double[] {-0.210816,-0.577347,0.788814,-0.14907,0.816494,0.557777,0.762124,0.408252,0.502492,0.911193,-0.408252,-0.0552965,-0.480208,-0.83205,0.277655,-0.692566,0.6,0.40044,0.480207,-0.83205,-0.277658,0.692564,0.6,-0.400444,-0.911195,-0.408255,0.055246,-0.762088,0.408255,-0.502543,0.149103,0.81649,-0.557775,0.210861,-0.577341,-0.788806})))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_anglePlate3")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,1,5,-1,0,2,1,-1,0,3,2,-1,0,4,7,-1,0,5,4,-1,0,6,8,-1,0,7,6,-1,0,8,3,-1,1,2,11,-1,1,9,5,-1,1,10,9,-1,1,11,10,-1,2,3,11,-1,3,8,11,-1,4,5,7,-1,5,9,7,-1,6,7,9,-1,6,9,10,-1,6,10,11,-1,6,11,8,-1}).setNormalIndex(new int[] {0,1,5,-1,0,2,1,-1,0,3,2,-1,0,4,7,-1,0,5,4,-1,0,6,8,-1,0,7,6,-1,0,8,3,-1,1,2,11,-1,1,9,5,-1,1,10,9,-1,1,11,10,-1,2,3,11,-1,3,8,11,-1,4,5,7,-1,5,9,7,-1,6,7,9,-1,6,9,10,-1,6,10,11,-1,6,11,8,-1})
          .setCoord(new Coordinate().setPoint(new MFVec3f(new double[] {7.44447,1.03142,0.259804,7.44447,1.09239,0.259804,7.44227,1.09239,0.263627,7.44227,1.03142,0.263627,7.45114,1.03142,0.248256,7.45114,1.09239,0.248256,7.44765,1.03142,0.261638,7.45432,1.03142,0.25009,7.44544,1.03142,0.265461,7.45432,1.09239,0.25009,7.44765,1.09239,0.261638,7.44544,1.09239,0.265461})))
          .setNormal(new Normal().setVector(new MFVec3f(new double[] {-0.612392,-0.707107,-0.35352,-0.38731,0.894427,-0.223586,-0.911221,0.408271,-0.0546903,-0.761741,-0.408271,0.503057,-0.211433,-0.57735,-0.788646,-0.244142,0.333333,-0.91065,0.77463,-0.447214,0.447156,0.621951,-0.66667,-0.410765,0.149482,-0.816482,0.557685,0.74402,0.66667,0.0445675,0.612399,0.707107,0.353508,0.211395,0.57733,0.788671})))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_anglePlate1")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,1,5,-1,0,2,1,-1,0,3,2,-1,0,4,7,-1,0,5,4,-1,0,6,8,-1,0,7,6,-1,0,8,3,-1,1,2,11,-1,1,9,5,-1,1,10,9,-1,1,11,10,-1,2,3,11,-1,3,8,11,-1,4,5,7,-1,5,9,7,-1,6,7,9,-1,6,9,10,-1,6,10,11,-1,6,11,8,-1}).setNormalIndex(new int[] {0,1,5,-1,0,2,1,-1,0,3,2,-1,0,4,7,-1,0,5,4,-1,0,6,8,-1,0,7,6,-1,0,8,3,-1,1,2,11,-1,1,9,5,-1,1,10,9,-1,1,11,10,-1,2,3,11,-1,3,8,11,-1,4,5,7,-1,5,9,7,-1,6,7,9,-1,6,9,10,-1,6,10,11,-1,6,11,8,-1})
          .setCoord(new Coordinate().setPoint(new MFVec3f(new double[] {7.44103,1.03142,0.265623,7.44103,1.09239,0.265623,7.44544,1.09239,0.2654,7.44544,1.03142,0.2654,7.42771,1.03142,0.266294,7.42771,1.09239,0.266294,7.44085,1.03142,0.261958,7.42753,1.03142,0.26263,7.44526,1.03142,0.261736,7.42753,1.09239,0.26263,7.44085,1.09239,0.261958,7.44526,1.09239,0.261736})))
          .setNormal(new Normal().setVector(new MFVec3f(new double[] {0.0356533,-0.707107,0.706207,0.0225491,0.894427,0.446645,0.448915,0.408189,0.794894,0.835973,-0.408189,0.366784,-0.547614,-0.577399,0.605583,-0.632347,0.33337,0.699286,-0.0450109,-0.447214,-0.893294,-0.682586,-0.666615,-0.2995,0.387243,-0.816516,-0.428188,-0.366504,0.666615,-0.649075,-0.0355842,0.707107,-0.706211,0.547657,0.577378,-0.605564})))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_IndexedFaceSet4")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,2,1,-1,0,3,2,-1,0,4,3,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1}).setNormalIndex(new int[] {0,2,1,-1,0,3,2,-1,0,4,3,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1})
          .setCoord(new Coordinate().setPoint(new MFVec3f(new double[] {7.48306,1.17825,0.24845,7.48306,1.18342,0.249479,7.48306,1.1878,0.252407,7.48306,1.19073,0.256791,7.48306,1.19176,0.261962,7.48306,1.19073,0.267132,7.48306,1.1878,0.271516,7.48306,1.18342,0.274444,7.48306,1.17825,0.275473,7.48306,1.17308,0.274444,7.48306,1.16869,0.271516,7.48306,1.16576,0.267132,7.48306,1.16474,0.261962,7.48306,1.16576,0.256791,7.48306,1.16869,0.252407,7.48306,1.17308,0.249479})))
          .setNormal(new Normal().setVector(new MFVec3f(new double[] {-1.0,-9.32397E-15,1.0472E-4,-1.0,0.0,1.0472E-4,-1.0,-1.14501E-13,1.0472E-4,-1.0,-1.14501E-13,1.0472E-4,-1.0,-1.65696E-13,1.0472E-4,-1.0,-1.65696E-13,1.0472E-4,-1.0,0.0,1.0472E-4,-1.0,1.98607E-13,1.0472E-4,-1.0,-5.83898E-17,1.0472E-4,-1.0,1.6322E-14,1.0472E-4,-1.0,2.14987E-13,1.0472E-4,-1.0,0.0,1.0472E-4,-1.0,0.0,1.0472E-4,-1.0,0.0,1.0472E-4,-1.0,0.0,1.0472E-4,-1.0,0.0,1.0472E-4})))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_mainGun")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,2,1,-1,0,3,2,-1,1,2,7,-1,1,5,4,-1,1,6,5,-1,1,7,6,-1,2,3,9,-1,2,9,10,-1,2,10,11,-1,2,11,7,-1,4,5,11,-1,4,9,8,-1,4,10,9,-1,4,11,10,-1,5,6,11,-1,6,7,11,-1}).setNormalIndex(new int[] {0,2,1,-1,0,3,2,-1,1,2,7,-1,1,5,4,-1,1,6,5,-1,1,7,6,-1,2,3,9,-1,2,9,10,-1,2,10,11,-1,2,11,7,-1,4,5,11,-1,4,9,8,-1,4,10,9,-1,4,11,10,-1,5,6,11,-1,6,7,11,-1})
          .setCoord(new Coordinate().setPoint(new MFVec3f(new double[] {7.29632,1.16071,0.246227,7.42647,1.16071,0.246213,7.42647,1.19578,0.246213,7.29632,1.19578,0.246227,7.42647,1.16071,0.277722,7.48306,1.16071,0.277716,7.48306,1.16071,0.246207,7.48306,1.19578,0.246207,7.29632,1.16071,0.277735,7.29632,1.19578,0.277735,7.42647,1.19578,0.277722,7.48306,1.19578,0.277716})))
          .setNormal(new Normal().setVector(new MFVec3f(new double[] {-1.0472E-4,0.0,-1.0,-8.71321E-5,-0.5547,-0.83205,-6.28319E-5,0.8,-0.6,-7.4048E-5,0.707107,-0.707107,1.01593E-4,-0.242536,0.970142,0.408291,-0.816497,0.408206,0.816454,-0.408248,-0.408334,0.408163,0.408248,-0.816539,1.0472E-4,0.0,1.0,7.4048E-5,0.707107,0.707107,7.4048E-5,0.707107,0.707107,0.577411,0.57735,0.57729})))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_ammoCan")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,2,1,-1,0,3,2,-1,1,2,7,-1,1,5,4,-1,1,6,5,-1,1,7,6,-1,2,3,7,-1,3,6,7,-1,3,8,6,-1,3,9,8,-1,5,6,8,-1,5,8,10,-1}).setNormalIndex(new int[] {0,2,1,-1,0,3,2,-1,1,2,7,-1,1,5,4,-1,1,6,5,-1,1,7,6,-1,2,3,7,-1,3,6,7,-1,3,8,6,-1,3,9,8,-1,5,6,8,-1,5,8,10,-1})
          .setCoord(new Coordinate().setPoint(new MFVec3f(new double[] {7.42476,1.16035,0.366309,7.39095,1.16035,0.366312,7.39095,1.19918,0.366312,7.42476,1.19918,0.366309,7.39094,1.16035,0.287486,7.39094,1.16035,0.278876,7.39094,1.19918,0.278876,7.39094,1.19918,0.287486,7.42476,1.19918,0.278872,7.42476,1.19918,0.287482,7.42476,1.16035,0.278872})))
          .setNormal(new Normal().setVector(new MFVec3f(new double[] {1.0472E-4,0.0,1.0,-0.94865,0.0,0.316327,-0.408163,0.408248,0.816539,3.31153E-5,0.948683,0.316228,0.0,0.0,0.0,-0.447307,0.0,-0.89438,-0.666702,0.666667,-0.333264,-0.707107,0.707107,7.4048E-5,-9.36642E-5,0.447214,-0.894427,0.0,0.0,0.0,-1.0472E-4,0.0,-1.0})))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_IndexedFaceSet8")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,2,1,-1,0,3,2,-1,0,4,3,-1,0,5,4,-1,4,5,10,-1,4,10,11,-1,6,8,7,-1,6,9,8,-1,7,8,11,-1,7,11,10,-1}).setNormalIndex(new int[] {0,2,1,-1,0,3,2,-1,0,4,3,-1,0,5,4,-1,4,5,10,-1,4,10,11,-1,6,8,7,-1,6,9,8,-1,7,8,11,-1,7,11,10,-1})
          .setCoord(new Coordinate().setPoint(new MFVec3f(new double[] {7.45529,0.847865,0.341015,7.45258,0.848066,0.341516,7.45258,0.834923,0.346759,7.45529,0.834722,0.346259,7.458,0.834923,0.346759,7.458,0.848066,0.341515,7.46236,0.850487,0.347585,7.46183,0.849485,0.345071,7.46183,0.836341,0.350315,7.46237,0.837344,0.352829,7.46029,0.848633,0.342939,7.46029,0.83549,0.348183})))
          .setNormal(new Normal().setVector(new MFVec3f(new double[] {-6.50083E-5,-0.370555,-0.92881,-0.195401,-0.36341,-0.910907,-0.195352,-0.363423,-0.910912,-6.50157E-5,-0.370565,-0.928807,0.382604,-0.342344,-0.858146,0.38262,-0.342336,-0.858142,0.98077,-0.0722828,-0.181291,0.896446,-0.164175,-0.411619,0.947125,-0.118858,-0.298038,0.980771,-0.0722818,-0.181285,0.658563,-0.278825,-0.698965,0.752159,-0.244157,-0.612081})))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_IndexedFaceSet7")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,2,1,-1,0,3,2,-1,1,2,5,-1,1,5,4,-1,4,5,7,-1,4,7,6,-1,6,7,9,-1,6,9,8,-1}).setNormalIndex(new int[] {0,2,1,-1,0,3,2,-1,1,2,5,-1,1,5,4,-1,4,5,7,-1,4,7,6,-1,6,7,9,-1,6,9,8,-1})
          .setCoord(new Coordinate().setPoint(new MFVec3f(new double[] {7.45505,0.848066,0.185027,7.45734,0.848633,0.183603,7.45734,0.83549,0.178359,7.45505,0.834923,0.179784,7.45888,0.849485,0.181471,7.45888,0.836341,0.176227,7.45942,0.850487,0.178956,7.45941,0.837344,0.173712,7.45888,0.851491,0.176441,7.45888,0.838348,0.171197})))
          .setNormal(new Normal().setVector(new MFVec3f(new double[] {0.555476,-0.30816,0.772324,0.752443,-0.244097,0.611757,0.658771,-0.278819,0.698771,0.55549,-0.308153,0.772316,0.947223,-0.11882,0.297741,0.896642,-0.164091,0.411226,0.997805,0.0245041,-0.0615252,0.997814,-0.0245188,0.0613602,0.980773,0.072279,-0.181274,0.980764,0.072304,-0.181312})))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_IndexedFaceSet3")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,8,1,-1,1,7,2,-1,1,8,7,-1,2,7,3,-1,3,7,4,-1,4,7,5,-1,5,7,6,-1,9,11,10,-1,9,12,11,-1,9,13,12,-1,9,14,13,-1,9,15,14,-1}).setNormalIndex(new int[] {0,8,1,-1,1,7,2,-1,1,8,7,-1,2,7,3,-1,3,7,4,-1,4,7,5,-1,5,7,6,-1,9,11,10,-1,9,12,11,-1,9,13,12,-1,9,14,13,-1,9,15,14,-1})
          .setCoord(new Coordinate().setPoint(new MFVec3f(new double[] {7.41538,1.1738,0.246338,7.41345,1.17323,0.246344,7.41056,1.17285,0.24635,7.40715,1.17271,0.246351,7.40374,1.17285,0.24635,7.40085,1.17323,0.246345,7.39892,1.1738,0.246339,7.39892,1.17382,0.248065,7.41538,1.17382,0.248063,7.40877,1.1998,0.242727,7.40839,1.19923,0.242734,7.40782,1.19885,0.242739,7.40715,1.19871,0.24274,7.40647,1.19885,0.242739,7.4059,1.19923,0.242734,7.40552,1.1998,0.242727})))
          .setNormal(new Normal().setVector(new MFVec3f(new double[] {0.283474,-0.958909,0.0116272,0.130629,-0.896192,0.423999,0.053371,-0.668314,0.741962,-0.00271619,-0.845516,0.533943,-0.0831068,-0.948556,0.305508,-0.20782,-0.972869,0.101667,-0.283636,-0.958861,0.011686,-0.0605607,-0.90261,0.426179,0.145039,-0.974261,0.172568,4.09346E-4,0.0119304,0.999929,0.00227945,0.0102563,0.999945,7.79794E-4,0.0117534,0.999931,-8.34787E-5,0.0122985,0.999924,1.91214E-4,0.0122187,0.999925,-3.28831E-5,0.0123992,0.999923,1.04713E-4,0.0117076,0.999931}))))))
    .addChild(new Transform("unnamed_object6_copy8")
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_gunBack")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,2,1,-1,0,3,2,-1,4,6,5,-1,4,7,6,-1,5,6,9,-1,5,9,8,-1}).setNormalIndex(new int[] {0,2,1,-1,0,3,2,-1,4,6,5,-1,4,7,6,-1,5,6,9,-1,5,9,8,-1})
          .setCoord(new Coordinate().setPoint(new MFVec3f(new double[] {-7.84691,1.13097,1.45364,-7.84691,1.14787,1.45364,-7.84496,1.14787,1.45364,-7.84496,1.13097,1.45364,-7.84496,1.16043,1.24014,-7.85072,1.16071,1.24014,-7.88223,1.16071,1.24014,-7.888,1.16043,1.24014,-7.85072,1.19578,1.24014,-7.88223,1.19578,1.24014})))
          .setNormal(new Normal().setVector(new MFVec3f(new double[] {0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0})))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_IndexedFaceSet5")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(getIndexedFaceSet_5_408_coordIndex()).setNormalIndex(getIndexedFaceSet_5_408_normalIndex())
          .setCoord(new Coordinate().setPoint(getCoordinate_6_408_point()))
          .setNormal(new Normal().setVector(getNormal_6_409_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_IndexedFaceSet1")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(getIndexedFaceSet_5_414_coordIndex()).setNormalIndex(getIndexedFaceSet_5_414_normalIndex())
          .setCoord(new Coordinate().setPoint(getCoordinate_6_414_point()))
          .setNormal(new Normal().setVector(getNormal_6_415_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_shield")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(getIndexedFaceSet_5_420_coordIndex()).setNormalIndex(getIndexedFaceSet_5_420_normalIndex())
          .setCoord(new Coordinate().setPoint(getCoordinate_6_420_point()))
          .setNormal(new Normal().setVector(getNormal_6_421_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_gunStand")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(getIndexedFaceSet_5_426_coordIndex()).setNormalIndex(getIndexedFaceSet_5_426_normalIndex())
          .setCoord(new Coordinate().setPoint(getCoordinate_6_426_point()))
          .setNormal(new Normal().setVector(getNormal_6_427_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_bottomPlate")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(getIndexedFaceSet_5_432_coordIndex()).setNormalIndex(getIndexedFaceSet_5_432_normalIndex())
          .setCoord(new Coordinate().setPoint(getCoordinate_6_432_point()))
          .setNormal(new Normal().setVector(getNormal_6_433_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_middlePlate")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(getIndexedFaceSet_5_438_coordIndex()).setNormalIndex(getIndexedFaceSet_5_438_normalIndex())
          .setCoord(new Coordinate().setPoint(getCoordinate_6_438_point()))
          .setNormal(new Normal().setVector(getNormal_6_439_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_leg1")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(getIndexedFaceSet_5_444_coordIndex()).setNormalIndex(getIndexedFaceSet_5_444_normalIndex())
          .setCoord(new Coordinate().setPoint(getCoordinate_6_444_point()))
          .setNormal(new Normal().setVector(getNormal_6_445_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_IndexedFaceSet6")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(getIndexedFaceSet_5_450_coordIndex()).setNormalIndex(getIndexedFaceSet_5_450_normalIndex())
          .setCoord(new Coordinate().setPoint(getCoordinate_6_450_point()))
          .setNormal(new Normal().setVector(getNormal_6_451_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_IndexedFaceSet9")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(getIndexedFaceSet_5_456_coordIndex()).setNormalIndex(getIndexedFaceSet_5_456_normalIndex())
          .setCoord(new Coordinate().setPoint(getCoordinate_6_456_point()))
          .setNormal(new Normal().setVector(getNormal_6_457_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_handle1")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(getIndexedFaceSet_5_462_coordIndex()).setNormalIndex(getIndexedFaceSet_5_462_normalIndex())
          .setCoord(new Coordinate().setPoint(getCoordinate_6_462_point()))
          .setNormal(new Normal().setVector(getNormal_6_463_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_handle2")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(getIndexedFaceSet_5_468_coordIndex()).setNormalIndex(getIndexedFaceSet_5_468_normalIndex())
          .setCoord(new Coordinate().setPoint(getCoordinate_6_468_point()))
          .setNormal(new Normal().setVector(getNormal_6_469_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_baseStand")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(getIndexedFaceSet_5_474_coordIndex()).setNormalIndex(getIndexedFaceSet_5_474_normalIndex())
          .setCoord(new Coordinate().setPoint(getCoordinate_6_474_point()))
          .setNormal(new Normal().setVector(getNormal_6_475_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_IndexedFaceSet2")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,2,1,-1,0,3,2,-1,0,4,3,-1,0,5,4,-1,1,2,7,-1,1,7,6,-1,2,3,7,-1,3,4,35,-1,3,9,7,-1,3,11,9,-1,3,13,11,-1,3,29,30,-1,3,30,13,-1,3,33,29,-1,3,35,33,-1,4,5,34,-1,4,34,35,-1,6,7,9,-1,6,9,8,-1,8,9,11,-1,8,11,10,-1,10,11,13,-1,10,13,12,-1,12,13,17,-1,12,15,14,-1,12,16,15,-1,12,17,16,-1,13,30,31,-1,13,31,17,-1,14,15,19,-1,14,19,18,-1,15,16,36,-1,15,36,39,-1,15,39,19,-1,16,17,38,-1,16,37,36,-1,16,38,37,-1,17,31,38,-1,18,19,21,-1,18,21,20,-1,19,39,40,-1,19,40,21,-1,20,21,23,-1,20,23,22,-1,21,40,41,-1,21,41,23,-1,22,23,25,-1,22,25,24,-1,23,41,42,-1,23,42,25,-1,24,25,27,-1,24,27,26,-1,25,42,43,-1,25,43,27,-1,26,27,31,-1,26,29,28,-1,26,30,29,-1,26,31,30,-1,27,43,44,-1,27,44,31,-1,28,29,33,-1,28,33,32,-1,31,44,38,-1,32,33,35,-1,32,35,34,-1}).setNormalIndex(new int[] {0,2,1,-1,0,3,2,-1,0,4,3,-1,0,5,4,-1,1,2,7,-1,1,7,6,-1,2,3,7,-1,3,4,35,-1,3,9,7,-1,3,11,9,-1,3,13,11,-1,3,29,30,-1,3,30,13,-1,3,33,29,-1,3,35,33,-1,4,5,34,-1,4,34,35,-1,6,7,9,-1,6,9,8,-1,8,9,11,-1,8,11,10,-1,10,11,13,-1,10,13,12,-1,12,13,17,-1,12,15,14,-1,12,16,15,-1,12,17,16,-1,13,30,31,-1,13,31,17,-1,14,15,19,-1,14,19,18,-1,15,16,36,-1,15,36,39,-1,15,39,19,-1,16,17,38,-1,16,37,36,-1,16,38,37,-1,17,31,38,-1,18,19,21,-1,18,21,20,-1,19,39,40,-1,19,40,21,-1,20,21,23,-1,20,23,22,-1,21,40,41,-1,21,41,23,-1,22,23,25,-1,22,25,24,-1,23,41,42,-1,23,42,25,-1,24,25,27,-1,24,27,26,-1,25,42,43,-1,25,43,27,-1,26,27,31,-1,26,29,28,-1,26,30,29,-1,26,31,30,-1,27,43,44,-1,27,44,31,-1,28,29,33,-1,28,33,32,-1,31,44,38,-1,32,33,35,-1,32,35,34,-1})
          .setCoord(new Coordinate().setPoint(getCoordinate_6_480_point()))
          .setNormal(new Normal().setVector(getNormal_6_481_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_boltBottom3")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,19,-1,3,18,32,-1,3,20,19,-1,3,21,20,-1,3,22,21,-1,3,23,22,-1,3,24,23,-1,3,25,24,-1,3,26,25,-1,3,28,26,-1,3,29,28,-1,3,30,29,-1,3,31,30,-1,3,32,31,-1,4,5,18,-1,5,6,32,-1,5,32,18,-1,6,7,31,-1,6,31,32,-1,7,8,30,-1,7,30,31,-1,8,9,29,-1,8,29,30,-1,9,10,27,-1,9,27,28,-1,9,28,29,-1,10,11,26,-1,10,26,28,-1,10,28,27,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,33,34,38,-1,33,35,34,-1,33,36,35,-1,33,37,39,-1,33,38,37,-1,33,39,36,-1,34,35,40,-1,34,40,38,-1,35,36,40,-1,36,39,40,-1,37,38,39,-1,38,40,39,-1}).setNormalIndex(new int[] {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,19,-1,3,18,32,-1,3,20,19,-1,3,21,20,-1,3,22,21,-1,3,23,22,-1,3,24,23,-1,3,25,24,-1,3,26,25,-1,3,28,26,-1,3,29,28,-1,3,30,29,-1,3,31,30,-1,3,32,31,-1,4,5,18,-1,5,6,32,-1,5,32,18,-1,6,7,31,-1,6,31,32,-1,7,8,30,-1,7,30,31,-1,8,9,29,-1,8,29,30,-1,9,10,27,-1,9,27,28,-1,9,28,29,-1,10,11,26,-1,10,26,28,-1,10,28,27,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,33,34,38,-1,33,35,34,-1,33,36,35,-1,33,37,39,-1,33,38,37,-1,33,39,36,-1,34,35,40,-1,34,40,38,-1,35,36,40,-1,36,39,40,-1,37,38,39,-1,38,40,39,-1})
          .setCoord(new Coordinate().setPoint(getCoordinate_6_486_point()))
          .setNormal(new Normal().setVector(getNormal_6_487_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_bolt2")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,19,-1,3,18,31,-1,3,20,19,-1,3,21,20,-1,3,22,21,-1,3,23,22,-1,3,24,23,-1,3,25,24,-1,3,26,25,-1,3,27,26,-1,3,28,27,-1,3,29,28,-1,3,30,29,-1,3,31,30,-1,4,5,18,-1,5,6,31,-1,5,31,18,-1,6,7,30,-1,6,30,31,-1,7,8,29,-1,7,29,30,-1,8,9,28,-1,8,28,29,-1,9,10,27,-1,9,27,28,-1,10,11,26,-1,10,26,27,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,32,33,37,-1,32,34,33,-1,32,35,34,-1,32,36,38,-1,32,37,36,-1,32,38,35,-1,33,34,39,-1,33,39,37,-1,34,35,39,-1,35,38,39,-1,36,37,38,-1,37,39,38,-1}).setNormalIndex(new int[] {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,19,-1,3,18,31,-1,3,20,19,-1,3,21,20,-1,3,22,21,-1,3,23,22,-1,3,24,23,-1,3,25,24,-1,3,26,25,-1,3,27,26,-1,3,28,27,-1,3,29,28,-1,3,30,29,-1,3,31,30,-1,4,5,18,-1,5,6,31,-1,5,31,18,-1,6,7,30,-1,6,30,31,-1,7,8,29,-1,7,29,30,-1,8,9,28,-1,8,28,29,-1,9,10,27,-1,9,27,28,-1,10,11,26,-1,10,26,27,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,32,33,37,-1,32,34,33,-1,32,35,34,-1,32,36,38,-1,32,37,36,-1,32,38,35,-1,33,34,39,-1,33,39,37,-1,34,35,39,-1,35,38,39,-1,36,37,38,-1,37,39,38,-1})
          .setCoord(new Coordinate().setPoint(new MFVec3f(new double[] {-7.84733,1.10243,1.36881,-7.84749,1.10243,1.36798,-7.84749,1.09543,1.36798,-7.84733,1.09543,1.36881,-7.84749,1.10243,1.36964,-7.84796,1.10243,1.37034,-7.84866,1.10243,1.3708,-7.84949,1.10243,1.37097,-7.85031,1.10243,1.3708,-7.85101,1.10243,1.37034,-7.85148,1.10243,1.36964,-7.85164,1.10243,1.36881,-7.85148,1.10243,1.36798,-7.85101,1.10243,1.36728,-7.85031,1.10243,1.36682,-7.84949,1.10243,1.36665,-7.84866,1.10243,1.36682,-7.84796,1.10243,1.36728,-7.84749,1.09543,1.36964,-7.84796,1.09543,1.36728,-7.84866,1.09543,1.36682,-7.84949,1.09543,1.36665,-7.85031,1.09543,1.36682,-7.85101,1.09543,1.36728,-7.85148,1.09543,1.36798,-7.85164,1.09543,1.36881,-7.85148,1.09543,1.36964,-7.85101,1.09543,1.37034,-7.85031,1.09543,1.3708,-7.84949,1.09543,1.37097,-7.84866,1.09543,1.3708,-7.84796,1.09543,1.37034,-7.85196,1.09887,1.36634,-7.85196,1.10094,1.36634,-7.85196,1.10094,1.37142,-7.85196,1.09887,1.37142,-7.84696,1.09887,1.36634,-7.84696,1.10094,1.36634,-7.84696,1.09887,1.37142,-7.84696,1.10094,1.37142})))
          .setNormal(new Normal().setVector(getNormal_6_493_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_bolt4")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,19,-1,3,18,31,-1,3,20,19,-1,3,21,20,-1,3,22,21,-1,3,23,22,-1,3,24,23,-1,3,25,24,-1,3,26,25,-1,3,27,26,-1,3,28,27,-1,3,29,28,-1,3,30,29,-1,3,31,30,-1,4,5,18,-1,5,6,31,-1,5,31,18,-1,6,7,30,-1,6,30,31,-1,7,8,29,-1,7,29,30,-1,8,9,28,-1,8,28,29,-1,9,10,27,-1,9,27,28,-1,10,11,26,-1,10,26,27,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,32,33,37,-1,32,34,33,-1,32,35,34,-1,32,36,38,-1,32,37,36,-1,32,38,35,-1,33,34,39,-1,33,39,37,-1,34,35,39,-1,35,38,39,-1,36,37,38,-1,37,39,38,-1}).setNormalIndex(new int[] {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,19,-1,3,18,31,-1,3,20,19,-1,3,21,20,-1,3,22,21,-1,3,23,22,-1,3,24,23,-1,3,25,24,-1,3,26,25,-1,3,27,26,-1,3,28,27,-1,3,29,28,-1,3,30,29,-1,3,31,30,-1,4,5,18,-1,5,6,31,-1,5,31,18,-1,6,7,30,-1,6,30,31,-1,7,8,29,-1,7,29,30,-1,8,9,28,-1,8,28,29,-1,9,10,27,-1,9,27,28,-1,10,11,26,-1,10,26,27,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,32,33,37,-1,32,34,33,-1,32,35,34,-1,32,36,38,-1,32,37,36,-1,32,38,35,-1,33,34,39,-1,33,39,37,-1,34,35,39,-1,35,38,39,-1,36,37,38,-1,37,39,38,-1})
          .setCoord(new Coordinate().setPoint(new MFVec3f(new double[] {-7.84733,1.10243,1.40315,-7.84749,1.10243,1.40232,-7.84749,1.09543,1.40232,-7.84733,1.09543,1.40315,-7.84749,1.10243,1.40397,-7.84796,1.10243,1.40467,-7.84866,1.10243,1.40514,-7.84949,1.10243,1.4053,-7.85031,1.10243,1.40514,-7.85101,1.10243,1.40467,-7.85148,1.10243,1.40397,-7.85164,1.10243,1.40315,-7.85148,1.10243,1.40232,-7.85101,1.10243,1.40162,-7.85031,1.10243,1.40115,-7.84949,1.10243,1.40099,-7.84866,1.10243,1.40115,-7.84796,1.10243,1.40162,-7.84749,1.09543,1.40397,-7.84796,1.09543,1.40162,-7.84866,1.09543,1.40115,-7.84949,1.09543,1.40099,-7.85031,1.09543,1.40115,-7.85101,1.09543,1.40162,-7.85148,1.09543,1.40232,-7.85164,1.09543,1.40315,-7.85148,1.09543,1.40397,-7.85101,1.09543,1.40467,-7.85031,1.09543,1.40514,-7.84949,1.09543,1.4053,-7.84866,1.09543,1.40514,-7.84796,1.09543,1.40467,-7.85196,1.09887,1.40068,-7.85196,1.10094,1.40068,-7.85196,1.10094,1.40576,-7.85196,1.09887,1.40576,-7.84696,1.09887,1.40068,-7.84696,1.10094,1.40068,-7.84696,1.09887,1.40576,-7.84696,1.10094,1.40576})))
          .setNormal(new Normal().setVector(getNormal_6_499_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_boltBottom2")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,19,-1,3,18,31,-1,3,20,19,-1,3,21,20,-1,3,22,21,-1,3,23,22,-1,3,24,23,-1,3,25,24,-1,3,26,25,-1,3,27,26,-1,3,28,27,-1,3,29,28,-1,3,30,29,-1,3,31,30,-1,4,5,18,-1,5,6,31,-1,5,31,18,-1,6,7,30,-1,6,30,31,-1,7,8,29,-1,7,29,30,-1,8,9,28,-1,8,28,29,-1,9,10,27,-1,9,27,28,-1,10,11,26,-1,10,26,27,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,32,33,37,-1,32,34,33,-1,32,35,34,-1,32,36,38,-1,32,37,36,-1,32,38,35,-1,33,34,39,-1,33,39,37,-1,34,35,39,-1,35,38,39,-1,36,37,38,-1,37,39,38,-1}).setNormalIndex(new int[] {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,19,-1,3,18,31,-1,3,20,19,-1,3,21,20,-1,3,22,21,-1,3,23,22,-1,3,24,23,-1,3,25,24,-1,3,26,25,-1,3,27,26,-1,3,28,27,-1,3,29,28,-1,3,30,29,-1,3,31,30,-1,4,5,18,-1,5,6,31,-1,5,31,18,-1,6,7,30,-1,6,30,31,-1,7,8,29,-1,7,29,30,-1,8,9,28,-1,8,28,29,-1,9,10,27,-1,9,27,28,-1,10,11,26,-1,10,26,27,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,32,33,37,-1,32,34,33,-1,32,35,34,-1,32,36,38,-1,32,37,36,-1,32,38,35,-1,33,34,39,-1,33,39,37,-1,34,35,39,-1,35,38,39,-1,36,37,38,-1,37,39,38,-1})
          .setCoord(new Coordinate().setPoint(new MFVec3f(new double[] {-7.84733,1.08827,1.36884,-7.84749,1.08827,1.36966,-7.84749,1.09527,1.36966,-7.84733,1.09527,1.36884,-7.84749,1.08827,1.36801,-7.84796,1.08827,1.36731,-7.84866,1.08827,1.36684,-7.84949,1.08827,1.36668,-7.85031,1.08827,1.36684,-7.85101,1.08827,1.36731,-7.85148,1.08827,1.36801,-7.85164,1.08827,1.36884,-7.85148,1.08827,1.36966,-7.85101,1.08827,1.37036,-7.85031,1.08827,1.37083,-7.84949,1.08827,1.371,-7.84866,1.08827,1.37083,-7.84796,1.08827,1.37036,-7.84749,1.09527,1.36801,-7.84796,1.09527,1.37036,-7.84866,1.09527,1.37083,-7.84949,1.09527,1.371,-7.85031,1.09527,1.37083,-7.85101,1.09527,1.37036,-7.85148,1.09527,1.36966,-7.85164,1.09527,1.36884,-7.85148,1.09527,1.36801,-7.85101,1.09527,1.36731,-7.85031,1.09527,1.36684,-7.84949,1.09527,1.36668,-7.84866,1.09527,1.36684,-7.84796,1.09527,1.36731,-7.85196,1.09183,1.37131,-7.85196,1.08976,1.37131,-7.85196,1.08976,1.36622,-7.85196,1.09183,1.36622,-7.84696,1.09183,1.37131,-7.84696,1.08976,1.37131,-7.84696,1.09183,1.36622,-7.84696,1.08976,1.36622})))
          .setNormal(new Normal().setVector(getNormal_6_505_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_boltBottom4")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,19,-1,3,18,31,-1,3,20,19,-1,3,21,20,-1,3,22,21,-1,3,23,22,-1,3,24,23,-1,3,25,24,-1,3,26,25,-1,3,27,26,-1,3,28,27,-1,3,29,28,-1,3,30,29,-1,3,31,30,-1,4,5,18,-1,5,6,31,-1,5,31,18,-1,6,7,30,-1,6,30,31,-1,7,8,29,-1,7,29,30,-1,8,9,28,-1,8,28,29,-1,9,10,27,-1,9,27,28,-1,10,11,26,-1,10,26,27,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,32,33,37,-1,32,34,33,-1,32,35,34,-1,32,36,38,-1,32,37,36,-1,32,38,35,-1,33,34,39,-1,33,39,37,-1,34,35,39,-1,35,38,39,-1,36,37,38,-1,37,39,38,-1}).setNormalIndex(new int[] {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,19,-1,3,18,31,-1,3,20,19,-1,3,21,20,-1,3,22,21,-1,3,23,22,-1,3,24,23,-1,3,25,24,-1,3,26,25,-1,3,27,26,-1,3,28,27,-1,3,29,28,-1,3,30,29,-1,3,31,30,-1,4,5,18,-1,5,6,31,-1,5,31,18,-1,6,7,30,-1,6,30,31,-1,7,8,29,-1,7,29,30,-1,8,9,28,-1,8,28,29,-1,9,10,27,-1,9,27,28,-1,10,11,26,-1,10,26,27,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,32,33,37,-1,32,34,33,-1,32,35,34,-1,32,36,38,-1,32,37,36,-1,32,38,35,-1,33,34,39,-1,33,39,37,-1,34,35,39,-1,35,38,39,-1,36,37,38,-1,37,39,38,-1})
          .setCoord(new Coordinate().setPoint(new MFVec3f(new double[] {-7.84733,1.08827,1.40318,-7.84749,1.08827,1.404,-7.84749,1.09527,1.404,-7.84733,1.09527,1.40318,-7.84749,1.08827,1.40235,-7.84796,1.08827,1.40165,-7.84866,1.08827,1.40118,-7.84949,1.08827,1.40102,-7.85031,1.08827,1.40118,-7.85101,1.08827,1.40165,-7.85148,1.08827,1.40235,-7.85164,1.08827,1.40318,-7.85148,1.08827,1.404,-7.85101,1.08827,1.4047,-7.85031,1.08827,1.40517,-7.84949,1.08827,1.40533,-7.84866,1.08827,1.40517,-7.84796,1.08827,1.4047,-7.84749,1.09527,1.40235,-7.84796,1.09527,1.4047,-7.84866,1.09527,1.40517,-7.84949,1.09527,1.40533,-7.85031,1.09527,1.40517,-7.85101,1.09527,1.4047,-7.85148,1.09527,1.404,-7.85164,1.09527,1.40318,-7.85148,1.09527,1.40235,-7.85101,1.09527,1.40165,-7.85031,1.09527,1.40118,-7.84949,1.09527,1.40102,-7.84866,1.09527,1.40118,-7.84796,1.09527,1.40165,-7.85196,1.09183,1.40565,-7.85196,1.08976,1.40565,-7.85196,1.08976,1.40056,-7.85196,1.09183,1.40056,-7.84696,1.09183,1.40565,-7.84696,1.08976,1.40565,-7.84696,1.09183,1.40056,-7.84696,1.08976,1.40056})))
          .setNormal(new Normal().setVector(getNormal_6_511_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_mountingPlate")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,19,-1,3,18,31,-1,3,20,19,-1,3,21,20,-1,3,22,21,-1,3,23,22,-1,3,24,23,-1,3,25,24,-1,3,26,25,-1,3,27,26,-1,3,28,27,-1,3,29,28,-1,3,30,29,-1,3,31,30,-1,4,5,18,-1,5,6,31,-1,5,31,18,-1,6,7,30,-1,6,30,31,-1,7,8,29,-1,7,29,30,-1,8,9,28,-1,8,28,29,-1,9,10,27,-1,9,27,28,-1,10,11,26,-1,10,26,27,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1}).setNormalIndex(new int[] {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,19,-1,3,18,31,-1,3,20,19,-1,3,21,20,-1,3,22,21,-1,3,23,22,-1,3,24,23,-1,3,25,24,-1,3,26,25,-1,3,27,26,-1,3,28,27,-1,3,29,28,-1,3,30,29,-1,3,31,30,-1,4,5,18,-1,5,6,31,-1,5,31,18,-1,6,7,30,-1,6,30,31,-1,7,8,29,-1,7,29,30,-1,8,9,28,-1,8,28,29,-1,9,10,27,-1,9,27,28,-1,10,11,26,-1,10,26,27,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1})
          .setCoord(new Coordinate().setPoint(new MFVec3f(new double[] {-7.85207,1.13861,1.38565,-7.85316,1.13861,1.38014,-7.85316,1.12813,1.38014,-7.85207,1.12813,1.38565,-7.85316,1.13861,1.39117,-7.85629,1.13861,1.39585,-7.86096,1.13861,1.39897,-7.86648,1.13861,1.40007,-7.872,1.13861,1.39897,-7.87667,1.13861,1.39585,-7.8798,1.13861,1.39117,-7.88089,1.13861,1.38565,-7.8798,1.13861,1.38014,-7.87667,1.13861,1.37546,-7.872,1.13861,1.37234,-7.86648,1.13861,1.37124,-7.86096,1.13861,1.37234,-7.85629,1.13861,1.37546,-7.85316,1.12813,1.39117,-7.85629,1.12813,1.37546,-7.86096,1.12813,1.37234,-7.86648,1.12813,1.37124,-7.872,1.12813,1.37234,-7.87667,1.12813,1.37546,-7.8798,1.12813,1.38014,-7.88089,1.12813,1.38565,-7.8798,1.12813,1.39117,-7.87667,1.12813,1.39585,-7.872,1.12813,1.39897,-7.86648,1.12813,1.40007,-7.86096,1.12813,1.39897,-7.85629,1.12813,1.39585})))
          .setNormal(new Normal().setVector(new MFVec3f(new double[] {0.269836,0.962906,-2.96659E-15,0.848999,0.321163,-0.41959,0.896999,-0.321163,-0.303722,0.13876,-0.990326,3.34205E-15,0.823071,0.454194,0.340972,0.622606,0.561298,0.545258,0.366676,0.561324,0.741933,0.0547195,0.561304,0.825798,-0.26542,0.561324,0.78388,-0.545258,0.561298,0.622606,-0.741933,0.561324,0.366676,-0.825798,0.561304,0.0547195,-0.78388,0.561324,-0.26542,-0.622606,0.561298,-0.545258,-0.366676,0.561324,-0.741933,-0.0547195,0.561304,-0.825798,0.26542,0.561324,-0.78388,0.545258,0.561298,-0.622606,0.895234,-0.247008,0.370867,0.622606,-0.561298,-0.545258,0.366676,-0.561324,-0.741933,0.0547195,-0.561304,-0.825798,-0.26542,-0.561324,-0.78388,-0.545258,-0.561298,-0.622606,-0.741933,-0.561324,-0.366676,-0.825798,-0.561304,-0.0547195,-0.78388,-0.561324,0.26542,-0.622606,-0.561298,0.545258,-0.366676,-0.561324,0.741933,-0.0547195,-0.561304,0.825798,0.26542,-0.561324,0.78388,0.545258,-0.561298,0.622606})))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_bolt")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,19,-1,3,18,31,-1,3,20,19,-1,3,21,20,-1,3,22,21,-1,3,23,22,-1,3,24,23,-1,3,25,24,-1,3,26,25,-1,3,27,26,-1,3,28,27,-1,3,29,28,-1,3,30,29,-1,3,31,30,-1,4,5,18,-1,5,6,31,-1,5,31,18,-1,6,7,30,-1,6,30,31,-1,7,8,29,-1,7,29,30,-1,8,9,28,-1,8,28,29,-1,9,10,27,-1,9,27,28,-1,10,11,26,-1,10,26,27,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,32,33,37,-1,32,34,33,-1,32,35,34,-1,32,36,38,-1,32,37,36,-1,32,38,35,-1,33,34,39,-1,33,39,37,-1,34,35,39,-1,35,38,39,-1,36,37,38,-1,37,39,38,-1}).setNormalIndex(new int[] {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,19,-1,3,18,31,-1,3,20,19,-1,3,21,20,-1,3,22,21,-1,3,23,22,-1,3,24,23,-1,3,25,24,-1,3,26,25,-1,3,27,26,-1,3,28,27,-1,3,29,28,-1,3,30,29,-1,3,31,30,-1,4,5,18,-1,5,6,31,-1,5,31,18,-1,6,7,30,-1,6,30,31,-1,7,8,29,-1,7,29,30,-1,8,9,28,-1,8,28,29,-1,9,10,27,-1,9,27,28,-1,10,11,26,-1,10,26,27,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,32,33,37,-1,32,34,33,-1,32,35,34,-1,32,36,38,-1,32,37,36,-1,32,38,35,-1,33,34,39,-1,33,39,37,-1,34,35,39,-1,35,38,39,-1,36,37,38,-1,37,39,38,-1})
          .setCoord(new Coordinate().setPoint(new MFVec3f(new double[] {-7.88212,1.10243,1.36881,-7.88229,1.10243,1.36798,-7.88229,1.09543,1.36798,-7.88212,1.09543,1.36881,-7.88229,1.10243,1.36964,-7.88276,1.10243,1.37034,-7.88346,1.10243,1.3708,-7.88428,1.10243,1.37097,-7.88511,1.10243,1.3708,-7.88581,1.10243,1.37034,-7.88627,1.10243,1.36964,-7.88644,1.10243,1.36881,-7.88627,1.10243,1.36798,-7.88581,1.10243,1.36728,-7.88511,1.10243,1.36682,-7.88428,1.10243,1.36665,-7.88346,1.10243,1.36682,-7.88276,1.10243,1.36728,-7.88229,1.09543,1.36964,-7.88276,1.09543,1.36728,-7.88346,1.09543,1.36682,-7.88428,1.09543,1.36665,-7.88511,1.09543,1.36682,-7.88581,1.09543,1.36728,-7.88627,1.09543,1.36798,-7.88644,1.09543,1.36881,-7.88627,1.09543,1.36964,-7.88581,1.09543,1.37034,-7.88511,1.09543,1.3708,-7.88428,1.09543,1.37097,-7.88346,1.09543,1.3708,-7.88276,1.09543,1.37034,-7.88675,1.09887,1.36634,-7.88675,1.10094,1.36634,-7.88675,1.10094,1.37142,-7.88675,1.09887,1.37142,-7.88175,1.09887,1.36634,-7.88175,1.10094,1.36634,-7.88175,1.09887,1.37142,-7.88175,1.10094,1.37142})))
          .setNormal(new Normal().setVector(getNormal_6_523_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_bolt3")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,19,-1,3,18,31,-1,3,20,19,-1,3,21,20,-1,3,22,21,-1,3,23,22,-1,3,24,23,-1,3,25,24,-1,3,26,25,-1,3,27,26,-1,3,28,27,-1,3,29,28,-1,3,30,29,-1,3,31,30,-1,4,5,18,-1,5,6,31,-1,5,31,18,-1,6,7,30,-1,6,30,31,-1,7,8,29,-1,7,29,30,-1,8,9,28,-1,8,28,29,-1,9,10,27,-1,9,27,28,-1,10,11,26,-1,10,26,27,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,32,33,37,-1,32,34,33,-1,32,35,34,-1,32,36,38,-1,32,37,36,-1,32,38,35,-1,33,34,39,-1,33,39,37,-1,34,35,39,-1,35,38,39,-1,36,37,38,-1,37,39,38,-1}).setNormalIndex(new int[] {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,19,-1,3,18,31,-1,3,20,19,-1,3,21,20,-1,3,22,21,-1,3,23,22,-1,3,24,23,-1,3,25,24,-1,3,26,25,-1,3,27,26,-1,3,28,27,-1,3,29,28,-1,3,30,29,-1,3,31,30,-1,4,5,18,-1,5,6,31,-1,5,31,18,-1,6,7,30,-1,6,30,31,-1,7,8,29,-1,7,29,30,-1,8,9,28,-1,8,28,29,-1,9,10,27,-1,9,27,28,-1,10,11,26,-1,10,26,27,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,32,33,37,-1,32,34,33,-1,32,35,34,-1,32,36,38,-1,32,37,36,-1,32,38,35,-1,33,34,39,-1,33,39,37,-1,34,35,39,-1,35,38,39,-1,36,37,38,-1,37,39,38,-1})
          .setCoord(new Coordinate().setPoint(new MFVec3f(new double[] {-7.88212,1.10243,1.40315,-7.88229,1.10243,1.40232,-7.88229,1.09543,1.40232,-7.88212,1.09543,1.40315,-7.88229,1.10243,1.40397,-7.88276,1.10243,1.40467,-7.88346,1.10243,1.40514,-7.88428,1.10243,1.4053,-7.88511,1.10243,1.40514,-7.88581,1.10243,1.40467,-7.88627,1.10243,1.40397,-7.88644,1.10243,1.40315,-7.88627,1.10243,1.40232,-7.88581,1.10243,1.40162,-7.88511,1.10243,1.40115,-7.88428,1.10243,1.40099,-7.88346,1.10243,1.40115,-7.88276,1.10243,1.40162,-7.88229,1.09543,1.40397,-7.88276,1.09543,1.40162,-7.88346,1.09543,1.40115,-7.88428,1.09543,1.40099,-7.88511,1.09543,1.40115,-7.88581,1.09543,1.40162,-7.88627,1.09543,1.40232,-7.88644,1.09543,1.40315,-7.88627,1.09543,1.40397,-7.88581,1.09543,1.40467,-7.88511,1.09543,1.40514,-7.88428,1.09543,1.4053,-7.88346,1.09543,1.40514,-7.88276,1.09543,1.40467,-7.88675,1.09887,1.40068,-7.88675,1.10094,1.40068,-7.88675,1.10094,1.40576,-7.88675,1.09887,1.40576,-7.88175,1.09887,1.40068,-7.88175,1.10094,1.40068,-7.88175,1.09887,1.40576,-7.88175,1.10094,1.40576})))
          .setNormal(new Normal().setVector(getNormal_6_529_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_boltBottom1")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,19,-1,3,18,31,-1,3,20,19,-1,3,21,20,-1,3,22,21,-1,3,23,22,-1,3,24,23,-1,3,25,24,-1,3,26,25,-1,3,27,26,-1,3,28,27,-1,3,29,28,-1,3,30,29,-1,3,31,30,-1,4,5,18,-1,5,6,31,-1,5,31,18,-1,6,7,30,-1,6,30,31,-1,7,8,29,-1,7,29,30,-1,8,9,28,-1,8,28,29,-1,9,10,27,-1,9,27,28,-1,10,11,26,-1,10,26,27,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,32,33,37,-1,32,34,33,-1,32,35,34,-1,32,36,38,-1,32,37,36,-1,32,38,35,-1,33,34,39,-1,33,39,37,-1,34,35,39,-1,35,38,39,-1,36,37,38,-1,37,39,38,-1}).setNormalIndex(new int[] {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,19,-1,3,18,31,-1,3,20,19,-1,3,21,20,-1,3,22,21,-1,3,23,22,-1,3,24,23,-1,3,25,24,-1,3,26,25,-1,3,27,26,-1,3,28,27,-1,3,29,28,-1,3,30,29,-1,3,31,30,-1,4,5,18,-1,5,6,31,-1,5,31,18,-1,6,7,30,-1,6,30,31,-1,7,8,29,-1,7,29,30,-1,8,9,28,-1,8,28,29,-1,9,10,27,-1,9,27,28,-1,10,11,26,-1,10,26,27,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,32,33,37,-1,32,34,33,-1,32,35,34,-1,32,36,38,-1,32,37,36,-1,32,38,35,-1,33,34,39,-1,33,39,37,-1,34,35,39,-1,35,38,39,-1,36,37,38,-1,37,39,38,-1})
          .setCoord(new Coordinate().setPoint(new MFVec3f(new double[] {-7.88212,1.08827,1.36884,-7.88229,1.08827,1.36966,-7.88229,1.09527,1.36966,-7.88212,1.09527,1.36884,-7.88229,1.08827,1.36801,-7.88276,1.08827,1.36731,-7.88346,1.08827,1.36684,-7.88428,1.08827,1.36668,-7.88511,1.08827,1.36684,-7.88581,1.08827,1.36731,-7.88627,1.08827,1.36801,-7.88644,1.08827,1.36884,-7.88627,1.08827,1.36966,-7.88581,1.08827,1.37036,-7.88511,1.08827,1.37083,-7.88428,1.08827,1.371,-7.88346,1.08827,1.37083,-7.88276,1.08827,1.37036,-7.88229,1.09527,1.36801,-7.88276,1.09527,1.37036,-7.88346,1.09527,1.37083,-7.88428,1.09527,1.371,-7.88511,1.09527,1.37083,-7.88581,1.09527,1.37036,-7.88627,1.09527,1.36966,-7.88644,1.09527,1.36884,-7.88627,1.09527,1.36801,-7.88581,1.09527,1.36731,-7.88511,1.09527,1.36684,-7.88428,1.09527,1.36668,-7.88346,1.09527,1.36684,-7.88276,1.09527,1.36731,-7.88675,1.09183,1.37131,-7.88675,1.08976,1.37131,-7.88675,1.08976,1.36622,-7.88675,1.09183,1.36622,-7.88175,1.09183,1.37131,-7.88175,1.08976,1.37131,-7.88175,1.09183,1.36622,-7.88175,1.08976,1.36622})))
          .setNormal(new Normal().setVector(getNormal_6_535_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_anglePlate2")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,1,5,-1,0,2,1,-1,0,3,2,-1,0,4,6,-1,0,5,4,-1,0,6,3,-1,1,2,7,-1,1,7,5,-1,2,3,7,-1,3,6,7,-1,4,5,8,-1,4,8,11,-1,4,11,6,-1,5,7,10,-1,5,9,8,-1,5,10,9,-1,6,11,7,-1,7,11,10,-1,8,9,11,-1,9,10,11,-1}).setNormalIndex(new int[] {0,1,5,-1,0,2,1,-1,0,3,2,-1,0,4,6,-1,0,5,4,-1,0,6,3,-1,1,2,7,-1,1,7,5,-1,2,3,7,-1,3,6,7,-1,4,5,8,-1,4,8,11,-1,4,11,6,-1,5,7,10,-1,5,9,8,-1,5,10,9,-1,6,11,7,-1,7,11,10,-1,8,9,11,-1,9,10,11,-1})
          .setCoord(new Coordinate().setPoint(new MFVec3f(new double[] {-7.88253,1.03142,1.39298,-7.88253,1.09239,1.39298,-7.88069,1.09239,1.39616,-7.88069,1.03142,1.39616,-7.87098,1.03142,1.38631,-7.87098,1.09239,1.38631,-7.86915,1.03142,1.38948,-7.86915,1.09239,1.38948,-7.86716,1.03142,1.3841,-7.86716,1.09239,1.3841,-7.86532,1.09239,1.38728,-7.86532,1.03142,1.38728})))
          .setNormal(new Normal().setVector(new MFVec3f(new double[] {-0.788792,-0.577347,-0.210899,-0.557762,0.816494,-0.149128,-0.502571,0.408252,0.762071,0.0552011,-0.408252,0.911199,-0.277605,-0.83205,-0.480237,-0.400367,0.6,-0.692608,0.277607,-0.83205,0.480236,0.400371,0.6,0.692606,-0.0551505,-0.408255,-0.9112,0.502622,0.408255,-0.762036,0.557759,0.81649,0.149161,0.788784,-0.577341,0.210944})))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_anglePlate3")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,1,5,-1,0,2,1,-1,0,3,2,-1,0,4,7,-1,0,5,4,-1,0,6,8,-1,0,7,6,-1,0,8,3,-1,1,2,11,-1,1,9,5,-1,1,10,9,-1,1,11,10,-1,2,3,11,-1,3,8,11,-1,4,5,7,-1,5,9,7,-1,6,7,9,-1,6,9,10,-1,6,10,11,-1,6,11,8,-1}).setNormalIndex(new int[] {0,1,5,-1,0,2,1,-1,0,3,2,-1,0,4,7,-1,0,5,4,-1,0,6,8,-1,0,7,6,-1,0,8,3,-1,1,2,11,-1,1,9,5,-1,1,10,9,-1,1,11,10,-1,2,3,11,-1,3,8,11,-1,4,5,7,-1,5,9,7,-1,6,7,9,-1,6,9,10,-1,6,10,11,-1,6,11,8,-1})
          .setCoord(new Coordinate().setPoint(new MFVec3f(new double[] {-7.86432,1.03142,1.38829,-7.86432,1.09239,1.38829,-7.86814,1.09239,1.38608,-7.86814,1.03142,1.38608,-7.85277,1.03142,1.39496,-7.85277,1.09239,1.39496,-7.86615,1.03142,1.39147,-7.8546,1.03142,1.39813,-7.86997,1.03142,1.38926,-7.8546,1.09239,1.39813,-7.86615,1.09239,1.39147,-7.86997,1.09239,1.38926})))
          .setNormal(new Normal().setVector(new MFVec3f(new double[] {0.353584,-0.707107,-0.612355,0.223626,0.894427,-0.387287,0.0547857,0.408271,-0.911215,-0.502977,-0.408271,-0.761793,0.788668,-0.57735,-0.211351,0.910676,0.333333,-0.244047,-0.447237,-0.447214,0.774583,0.4107,-0.66667,0.621994,-0.557701,-0.816482,0.149423,-0.0446454,0.66667,0.744015,-0.353572,0.707107,0.612362,-0.788694,0.57733,0.211313})))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_anglePlate1")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,1,5,-1,0,2,1,-1,0,3,2,-1,0,4,7,-1,0,5,4,-1,0,6,8,-1,0,7,6,-1,0,8,3,-1,1,2,11,-1,1,9,5,-1,1,10,9,-1,1,11,10,-1,2,3,11,-1,3,8,11,-1,4,5,7,-1,5,9,7,-1,6,7,9,-1,6,9,10,-1,6,10,11,-1,6,11,8,-1}).setNormalIndex(new int[] {0,1,5,-1,0,2,1,-1,0,3,2,-1,0,4,7,-1,0,5,4,-1,0,6,8,-1,0,7,6,-1,0,8,3,-1,1,2,11,-1,1,9,5,-1,1,10,9,-1,1,11,10,-1,2,3,11,-1,3,8,11,-1,4,5,7,-1,5,9,7,-1,6,7,9,-1,6,9,10,-1,6,10,11,-1,6,11,8,-1})
          .setCoord(new Coordinate().setPoint(new MFVec3f(new double[] {-7.87014,1.03142,1.38485,-7.87014,1.09239,1.38485,-7.86991,1.09239,1.38926,-7.86991,1.03142,1.38926,-7.87081,1.03142,1.37153,-7.87081,1.09239,1.37153,-7.86647,1.03142,1.38466,-7.86714,1.03142,1.37135,-7.86625,1.03142,1.38907,-7.86714,1.09239,1.37135,-7.86647,1.09239,1.38466,-7.86625,1.09239,1.38907})))
          .setNormal(new Normal().setVector(new MFVec3f(new double[] {-0.706211,-0.707107,0.0355793,-0.446647,0.894427,0.0225023,-0.794941,0.408189,0.448831,-0.366872,-0.408189,0.835935,-0.605525,-0.577399,-0.547677,-0.69922,0.33337,-0.632421,0.893299,-0.447214,-0.0449173,0.299571,-0.666615,-0.682555,0.428148,-0.816516,0.387287,0.649114,0.666615,-0.366437,0.706215,0.707107,-0.0355102,0.605506,0.577378,0.54772})))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_IndexedFaceSet4")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,2,1,-1,0,3,2,-1,0,4,3,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1}).setNormalIndex(new int[] {0,2,1,-1,0,3,2,-1,0,4,3,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1})
          .setCoord(new Coordinate().setPoint(new MFVec3f(new double[] {-7.85297,1.17825,1.42688,-7.854,1.18342,1.42688,-7.85692,1.1878,1.42688,-7.86131,1.19073,1.42688,-7.86648,1.19176,1.42688,-7.87165,1.19073,1.42688,-7.87603,1.1878,1.42688,-7.87896,1.18342,1.42688,-7.87999,1.17825,1.42688,-7.87896,1.17308,1.42688,-7.87603,1.16869,1.42688,-7.87165,1.16576,1.42688,-7.86648,1.16474,1.42688,-7.86131,1.16576,1.42688,-7.85692,1.16869,1.42688,-7.854,1.17308,1.42688})))
          .setNormal(new Normal().setVector(new MFVec3f(new double[] {3.80016E-14,0.0,-1.0,1.63117E-13,0.0,-1.0,1.38809E-13,0.0,-1.0,5.72505E-14,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,-1.34412E-14,0.0,-1.0,-1.34412E-14,0.0,-1.0,0.0,0.0,-1.0,-6.71836E-15,0.0,-1.0,-2.25709E-14,0.0,-1.0,-1.58526E-14,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,1.63214E-13,0.0,-1.0,3.26428E-13,0.0,-1.0})))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_mainGun")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,2,1,-1,0,3,2,-1,1,2,7,-1,1,5,4,-1,1,6,5,-1,1,7,6,-1,2,3,9,-1,2,9,10,-1,2,10,11,-1,2,11,7,-1,4,5,11,-1,4,9,8,-1,4,10,9,-1,4,11,10,-1,5,6,11,-1,6,7,11,-1}).setNormalIndex(new int[] {0,2,1,-1,0,3,2,-1,1,2,7,-1,1,5,4,-1,1,6,5,-1,1,7,6,-1,2,3,9,-1,2,9,10,-1,2,10,11,-1,2,11,7,-1,4,5,11,-1,4,9,8,-1,4,10,9,-1,4,11,10,-1,5,6,11,-1,6,7,11,-1})
          .setCoord(new Coordinate().setPoint(new MFVec3f(new double[] {-7.85072,1.16071,1.24014,-7.85072,1.16071,1.37028,-7.85072,1.19578,1.37028,-7.85072,1.19578,1.24014,-7.88223,1.16071,1.37028,-7.88223,1.16071,1.42688,-7.85072,1.16071,1.42688,-7.85072,1.19578,1.42688,-7.88223,1.16071,1.24014,-7.88223,1.19578,1.24014,-7.88223,1.19578,1.37028,-7.88223,1.19578,1.42688})))
          .setNormal(new Normal().setVector(new MFVec3f(new double[] {1.0,0.0,0.0,0.83205,-0.5547,0.0,0.6,0.8,0.0,0.707107,0.707107,0.0,-0.970143,-0.242536,0.0,-0.408248,-0.816497,0.408248,0.408248,-0.408248,0.816497,0.816497,0.408248,0.408248,-1.0,0.0,0.0,-0.707107,0.707107,0.0,-0.707107,0.707107,0.0,-0.57735,0.57735,0.57735})))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_ammoCan")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,2,1,-1,0,3,2,-1,1,2,7,-1,1,5,4,-1,1,6,5,-1,1,7,6,-1,2,3,7,-1,3,6,7,-1,3,8,6,-1,3,9,8,-1,5,6,8,-1,5,8,10,-1}).setNormalIndex(new int[] {0,2,1,-1,0,3,2,-1,1,2,7,-1,1,5,4,-1,1,6,5,-1,1,7,6,-1,2,3,7,-1,3,6,7,-1,3,8,6,-1,3,9,8,-1,5,6,8,-1,5,8,10,-1})
          .setCoord(new Coordinate().setPoint(new MFVec3f(new double[] {-7.97082,1.16035,1.36857,-7.97082,1.16035,1.33476,-7.97082,1.19918,1.33476,-7.97082,1.19918,1.36857,-7.89199,1.16035,1.33476,-7.88338,1.16035,1.33476,-7.88338,1.19918,1.33476,-7.89199,1.19918,1.33476,-7.88338,1.19918,1.36857,-7.89199,1.19918,1.36857,-7.88338,1.16035,1.36857})))
          .setNormal(new Normal().setVector(new MFVec3f(new double[] {-1.0,0.0,0.0,-0.316228,0.0,-0.948683,-0.816497,0.408248,-0.408248,-0.316228,0.948683,0.0,0.0,0.0,0.0,0.894427,0.0,-0.447214,0.333333,0.666667,-0.666667,0.0,0.707107,-0.707107,0.894427,0.447214,0.0,0.0,0.0,0.0,1.0,0.0,0.0})))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_IndexedFaceSet8")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,2,1,-1,0,3,2,-1,0,4,3,-1,0,5,4,-1,4,5,10,-1,4,10,11,-1,6,8,7,-1,6,9,8,-1,7,8,11,-1,7,11,10,-1}).setNormalIndex(new int[] {0,2,1,-1,0,3,2,-1,0,4,3,-1,0,5,4,-1,4,5,10,-1,4,10,11,-1,6,8,7,-1,6,9,8,-1,7,8,11,-1,7,11,10,-1})
          .setCoord(new Coordinate().setPoint(new MFVec3f(new double[] {-7.94553,0.847865,1.3991,-7.94603,0.848066,1.39639,-7.95127,0.834923,1.39639,-7.95077,0.834722,1.3991,-7.95127,0.834923,1.4018,-7.94603,0.848066,1.4018,-7.9521,0.850487,1.40617,-7.94959,0.849485,1.40563,-7.95483,0.836341,1.40563,-7.95734,0.837344,1.40617,-7.94745,0.848633,1.4041,-7.9527,0.83549,1.4041})))
          .setNormal(new Normal().setVector(new MFVec3f(new double[] {0.92881,-0.370555,3.22565E-5,0.910927,-0.36341,-0.195306,0.910933,-0.363423,-0.195257,0.928807,-0.370565,3.22487E-5,0.858106,-0.342344,0.382694,0.858102,-0.342336,0.38271,0.181188,-0.0722828,0.980789,0.411526,-0.164175,0.89649,0.297939,-0.118858,0.947156,0.181182,-0.0722818,0.98079,0.698896,-0.278825,0.658636,0.612002,-0.244157,0.752224})))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_IndexedFaceSet7")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,2,1,-1,0,3,2,-1,1,2,5,-1,1,5,4,-1,4,5,7,-1,4,7,6,-1,6,7,9,-1,6,9,8,-1}).setNormalIndex(new int[] {0,2,1,-1,0,3,2,-1,1,2,5,-1,1,5,4,-1,4,5,7,-1,4,7,6,-1,6,7,9,-1,6,9,8,-1})
          .setCoord(new Coordinate().setPoint(new MFVec3f(new double[] {-7.78954,0.848066,1.39887,-7.78812,0.848633,1.40117,-7.78287,0.83549,1.40117,-7.7843,0.834923,1.39887,-7.78599,0.849485,1.4027,-7.78074,0.836341,1.4027,-7.78347,0.850487,1.40324,-7.77823,0.837344,1.40324,-7.78096,0.851491,1.4027,-7.77571,0.838348,1.4027})))
          .setNormal(new Normal().setVector(new MFVec3f(new double[] {-0.772382,-0.30816,0.555395,-0.611836,-0.244097,0.752379,-0.69884,-0.278819,0.658698,-0.772374,-0.308153,0.555409,-0.29784,-0.11882,0.947192,-0.41132,-0.164091,0.896599,0.0614207,0.0245041,0.997811,-0.0614647,-0.0245188,0.997808,0.181171,0.072279,0.980792,0.181209,0.072304,0.980783})))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_IndexedFaceSet3")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,8,1,-1,1,7,2,-1,1,8,7,-1,2,7,3,-1,3,7,4,-1,4,7,5,-1,5,7,6,-1,9,11,10,-1,9,12,11,-1,9,13,12,-1,9,14,13,-1,9,15,14,-1}).setNormalIndex(new int[] {0,8,1,-1,1,7,2,-1,1,8,7,-1,2,7,3,-1,3,7,4,-1,4,7,5,-1,5,7,6,-1,9,11,10,-1,9,12,11,-1,9,13,12,-1,9,14,13,-1,9,15,14,-1})
          .setCoord(new Coordinate().setPoint(new MFVec3f(new double[] {-7.85085,1.1738,1.3592,-7.85085,1.17323,1.35726,-7.85086,1.17285,1.35437,-7.85086,1.17271,1.35096,-7.85086,1.17285,1.34756,-7.85085,1.17323,1.34467,-7.85085,1.1738,1.34273,-7.85257,1.17382,1.34273,-7.85257,1.17382,1.3592,-7.84724,1.1998,1.35259,-7.84724,1.19923,1.35221,-7.84725,1.19885,1.35164,-7.84725,1.19871,1.35096,-7.84725,1.19885,1.35029,-7.84724,1.19923,1.34972,-7.84724,1.1998,1.34934})))
          .setNormal(new Normal().setVector(new MFVec3f(new double[] {-0.0116569,-0.958909,0.283473,-0.424013,-0.896192,0.130584,-0.741968,-0.668314,0.0532933,-0.533942,-0.845516,-0.00277211,-0.305499,-0.948556,-0.0831387,-0.101645,-0.972869,-0.207831,-0.0116563,-0.958861,-0.283637,-0.426172,-0.90261,-0.0606053,-0.172584,-0.974261,0.145021,-0.999929,0.0119304,3.04633E-4,-0.999945,0.0102563,0.00217473,-0.999931,0.0117534,6.75081E-4,-0.999924,0.0122985,-1.8819E-4,-0.999925,0.0122187,8.65025E-5,-0.999923,0.0123992,-1.37595E-4,-0.999931,0.0117076,0.0}))))))
    .addChild(new Transform("unnamed_object6_copy7")
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_gunBack")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,2,1,-1,0,3,2,-1,4,6,5,-1,4,7,6,-1,5,6,9,-1,5,9,8,-1}).setNormalIndex(new int[] {0,2,1,-1,0,3,2,-1,4,6,5,-1,4,7,6,-1,5,6,9,-1,5,9,8,-1})
          .setCoord(new Coordinate().setPoint(new MFVec3f(new double[] {-7.95468,1.13097,0.0263355,-7.95468,1.14787,0.0263355,-7.95468,1.14787,0.0282838,-7.95468,1.13097,0.0282838,-7.74118,1.16043,0.0282689,-7.74118,1.16071,0.0225011,-7.74118,1.16071,-0.00900724,-7.74118,1.16043,-0.014775,-7.74118,1.19578,0.0225011,-7.74118,1.19578,-0.00900724})))
          .setNormal(new Normal().setVector(new MFVec3f(new double[] {-1.0,0.0,6.98132E-5,-1.0,0.0,6.98132E-5,-1.0,0.0,6.98132E-5,-1.0,0.0,6.98132E-5,1.0,1.60804E-12,-6.98132E-5,1.0,1.07202E-12,-6.98132E-5,1.0,1.07202E-12,-6.98132E-5,1.0,0.0,-6.98132E-5,1.0,0.0,-6.98132E-5,1.0,0.0,-6.98132E-5})))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_IndexedFaceSet5")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(getIndexedFaceSet_5_601_coordIndex()).setNormalIndex(getIndexedFaceSet_5_601_normalIndex())
          .setCoord(new Coordinate().setPoint(getCoordinate_6_601_point()))
          .setNormal(new Normal().setVector(getNormal_6_602_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_IndexedFaceSet1")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(getIndexedFaceSet_5_607_coordIndex()).setNormalIndex(getIndexedFaceSet_5_607_normalIndex())
          .setCoord(new Coordinate().setPoint(getCoordinate_6_607_point()))
          .setNormal(new Normal().setVector(getNormal_6_608_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_shield")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(getIndexedFaceSet_5_613_coordIndex()).setNormalIndex(getIndexedFaceSet_5_613_normalIndex())
          .setCoord(new Coordinate().setPoint(getCoordinate_6_613_point()))
          .setNormal(new Normal().setVector(getNormal_6_614_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_gunStand")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(getIndexedFaceSet_5_619_coordIndex()).setNormalIndex(getIndexedFaceSet_5_619_normalIndex())
          .setCoord(new Coordinate().setPoint(getCoordinate_6_619_point()))
          .setNormal(new Normal().setVector(getNormal_6_620_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_bottomPlate")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(getIndexedFaceSet_5_625_coordIndex()).setNormalIndex(getIndexedFaceSet_5_625_normalIndex())
          .setCoord(new Coordinate().setPoint(getCoordinate_6_625_point()))
          .setNormal(new Normal().setVector(getNormal_6_626_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_middlePlate")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(getIndexedFaceSet_5_631_coordIndex()).setNormalIndex(getIndexedFaceSet_5_631_normalIndex())
          .setCoord(new Coordinate().setPoint(getCoordinate_6_631_point()))
          .setNormal(new Normal().setVector(getNormal_6_632_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_leg1")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(getIndexedFaceSet_5_637_coordIndex()).setNormalIndex(getIndexedFaceSet_5_637_normalIndex())
          .setCoord(new Coordinate().setPoint(getCoordinate_6_637_point()))
          .setNormal(new Normal().setVector(getNormal_6_638_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_IndexedFaceSet6")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(getIndexedFaceSet_5_643_coordIndex()).setNormalIndex(getIndexedFaceSet_5_643_normalIndex())
          .setCoord(new Coordinate().setPoint(getCoordinate_6_643_point()))
          .setNormal(new Normal().setVector(getNormal_6_644_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_IndexedFaceSet9")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(getIndexedFaceSet_5_649_coordIndex()).setNormalIndex(getIndexedFaceSet_5_649_normalIndex())
          .setCoord(new Coordinate().setPoint(getCoordinate_6_649_point()))
          .setNormal(new Normal().setVector(getNormal_6_650_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_handle1")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(getIndexedFaceSet_5_655_coordIndex()).setNormalIndex(getIndexedFaceSet_5_655_normalIndex())
          .setCoord(new Coordinate().setPoint(getCoordinate_6_655_point()))
          .setNormal(new Normal().setVector(getNormal_6_656_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_handle2")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(getIndexedFaceSet_5_661_coordIndex()).setNormalIndex(getIndexedFaceSet_5_661_normalIndex())
          .setCoord(new Coordinate().setPoint(getCoordinate_6_661_point()))
          .setNormal(new Normal().setVector(getNormal_6_662_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_baseStand")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(getIndexedFaceSet_5_667_coordIndex()).setNormalIndex(getIndexedFaceSet_5_667_normalIndex())
          .setCoord(new Coordinate().setPoint(getCoordinate_6_667_point()))
          .setNormal(new Normal().setVector(getNormal_6_668_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_IndexedFaceSet2")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,2,1,-1,0,3,2,-1,0,4,3,-1,0,5,4,-1,1,2,7,-1,1,7,6,-1,2,3,7,-1,3,4,35,-1,3,9,7,-1,3,11,9,-1,3,13,11,-1,3,29,30,-1,3,30,13,-1,3,33,29,-1,3,35,33,-1,4,5,34,-1,4,34,35,-1,6,7,9,-1,6,9,8,-1,8,9,11,-1,8,11,10,-1,10,11,13,-1,10,13,12,-1,12,13,17,-1,12,15,14,-1,12,16,15,-1,12,17,16,-1,13,30,31,-1,13,31,17,-1,14,15,19,-1,14,19,18,-1,15,16,36,-1,15,36,39,-1,15,39,19,-1,16,17,38,-1,16,37,36,-1,16,38,37,-1,17,31,38,-1,18,19,21,-1,18,21,20,-1,19,39,40,-1,19,40,21,-1,20,21,23,-1,20,23,22,-1,21,40,41,-1,21,41,23,-1,22,23,25,-1,22,25,24,-1,23,41,42,-1,23,42,25,-1,24,25,27,-1,24,27,26,-1,25,42,43,-1,25,43,27,-1,26,27,31,-1,26,29,28,-1,26,30,29,-1,26,31,30,-1,27,43,44,-1,27,44,31,-1,28,29,33,-1,28,33,32,-1,31,44,38,-1,32,33,35,-1,32,35,34,-1}).setNormalIndex(new int[] {0,2,1,-1,0,3,2,-1,0,4,3,-1,0,5,4,-1,1,2,7,-1,1,7,6,-1,2,3,7,-1,3,4,35,-1,3,9,7,-1,3,11,9,-1,3,13,11,-1,3,29,30,-1,3,30,13,-1,3,33,29,-1,3,35,33,-1,4,5,34,-1,4,34,35,-1,6,7,9,-1,6,9,8,-1,8,9,11,-1,8,11,10,-1,10,11,13,-1,10,13,12,-1,12,13,17,-1,12,15,14,-1,12,16,15,-1,12,17,16,-1,13,30,31,-1,13,31,17,-1,14,15,19,-1,14,19,18,-1,15,16,36,-1,15,36,39,-1,15,39,19,-1,16,17,38,-1,16,37,36,-1,16,38,37,-1,17,31,38,-1,18,19,21,-1,18,21,20,-1,19,39,40,-1,19,40,21,-1,20,21,23,-1,20,23,22,-1,21,40,41,-1,21,41,23,-1,22,23,25,-1,22,25,24,-1,23,41,42,-1,23,42,25,-1,24,25,27,-1,24,27,26,-1,25,42,43,-1,25,43,27,-1,26,27,31,-1,26,29,28,-1,26,30,29,-1,26,31,30,-1,27,43,44,-1,27,44,31,-1,28,29,33,-1,28,33,32,-1,31,44,38,-1,32,33,35,-1,32,35,34,-1})
          .setCoord(new Coordinate().setPoint(getCoordinate_6_673_point()))
          .setNormal(new Normal().setVector(getNormal_6_674_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_boltBottom3")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,19,-1,3,18,32,-1,3,20,19,-1,3,21,20,-1,3,22,21,-1,3,23,22,-1,3,24,23,-1,3,25,24,-1,3,26,25,-1,3,28,26,-1,3,29,28,-1,3,30,29,-1,3,31,30,-1,3,32,31,-1,4,5,18,-1,5,6,32,-1,5,32,18,-1,6,7,31,-1,6,31,32,-1,7,8,30,-1,7,30,31,-1,8,9,29,-1,8,29,30,-1,9,10,27,-1,9,27,28,-1,9,28,29,-1,10,11,26,-1,10,26,28,-1,10,28,27,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,33,34,38,-1,33,35,34,-1,33,36,35,-1,33,37,39,-1,33,38,37,-1,33,39,36,-1,34,35,40,-1,34,40,38,-1,35,36,40,-1,36,39,40,-1,37,38,39,-1,38,40,39,-1}).setNormalIndex(new int[] {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,19,-1,3,18,32,-1,3,20,19,-1,3,21,20,-1,3,22,21,-1,3,23,22,-1,3,24,23,-1,3,25,24,-1,3,26,25,-1,3,28,26,-1,3,29,28,-1,3,30,29,-1,3,31,30,-1,3,32,31,-1,4,5,18,-1,5,6,32,-1,5,32,18,-1,6,7,31,-1,6,31,32,-1,7,8,30,-1,7,30,31,-1,8,9,29,-1,8,29,30,-1,9,10,27,-1,9,27,28,-1,9,28,29,-1,10,11,26,-1,10,26,28,-1,10,28,27,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,33,34,38,-1,33,35,34,-1,33,36,35,-1,33,37,39,-1,33,38,37,-1,33,39,36,-1,34,35,40,-1,34,40,38,-1,35,36,40,-1,36,39,40,-1,37,38,39,-1,38,40,39,-1})
          .setCoord(new Coordinate().setPoint(getCoordinate_6_679_point()))
          .setNormal(new Normal().setVector(getNormal_6_680_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_bolt2")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,19,-1,3,18,31,-1,3,20,19,-1,3,21,20,-1,3,22,21,-1,3,23,22,-1,3,24,23,-1,3,25,24,-1,3,26,25,-1,3,27,26,-1,3,28,27,-1,3,29,28,-1,3,30,29,-1,3,31,30,-1,4,5,18,-1,5,6,31,-1,5,31,18,-1,6,7,30,-1,6,30,31,-1,7,8,29,-1,7,29,30,-1,8,9,28,-1,8,28,29,-1,9,10,27,-1,9,27,28,-1,10,11,26,-1,10,26,27,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,32,33,37,-1,32,34,33,-1,32,35,34,-1,32,36,38,-1,32,37,36,-1,32,38,35,-1,33,34,39,-1,33,39,37,-1,34,35,39,-1,35,38,39,-1,36,37,38,-1,37,39,38,-1}).setNormalIndex(new int[] {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,19,-1,3,18,31,-1,3,20,19,-1,3,21,20,-1,3,22,21,-1,3,23,22,-1,3,24,23,-1,3,25,24,-1,3,26,25,-1,3,27,26,-1,3,28,27,-1,3,29,28,-1,3,30,29,-1,3,31,30,-1,4,5,18,-1,5,6,31,-1,5,31,18,-1,6,7,30,-1,6,30,31,-1,7,8,29,-1,7,29,30,-1,8,9,28,-1,8,28,29,-1,9,10,27,-1,9,27,28,-1,10,11,26,-1,10,26,27,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,32,33,37,-1,32,34,33,-1,32,35,34,-1,32,36,38,-1,32,37,36,-1,32,38,35,-1,33,34,39,-1,33,39,37,-1,34,35,39,-1,35,38,39,-1,36,37,38,-1,37,39,38,-1})
          .setCoord(new Coordinate().setPoint(getCoordinate_6_685_point()))
          .setNormal(new Normal().setVector(getNormal_6_686_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_bolt4")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,19,-1,3,18,31,-1,3,20,19,-1,3,21,20,-1,3,22,21,-1,3,23,22,-1,3,24,23,-1,3,25,24,-1,3,26,25,-1,3,27,26,-1,3,28,27,-1,3,29,28,-1,3,30,29,-1,3,31,30,-1,4,5,18,-1,5,6,31,-1,5,31,18,-1,6,7,30,-1,6,30,31,-1,7,8,29,-1,7,29,30,-1,8,9,28,-1,8,28,29,-1,9,10,27,-1,9,27,28,-1,10,11,26,-1,10,26,27,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,32,33,37,-1,32,34,33,-1,32,35,34,-1,32,36,38,-1,32,37,36,-1,32,38,35,-1,33,34,39,-1,33,39,37,-1,34,35,39,-1,35,38,39,-1,36,37,38,-1,37,39,38,-1}).setNormalIndex(new int[] {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,19,-1,3,18,31,-1,3,20,19,-1,3,21,20,-1,3,22,21,-1,3,23,22,-1,3,24,23,-1,3,25,24,-1,3,26,25,-1,3,27,26,-1,3,28,27,-1,3,29,28,-1,3,30,29,-1,3,31,30,-1,4,5,18,-1,5,6,31,-1,5,31,18,-1,6,7,30,-1,6,30,31,-1,7,8,29,-1,7,29,30,-1,8,9,28,-1,8,28,29,-1,9,10,27,-1,9,27,28,-1,10,11,26,-1,10,26,27,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,32,33,37,-1,32,34,33,-1,32,35,34,-1,32,36,38,-1,32,37,36,-1,32,38,35,-1,33,34,39,-1,33,39,37,-1,34,35,39,-1,35,38,39,-1,36,37,38,-1,37,39,38,-1})
          .setCoord(new Coordinate().setPoint(getCoordinate_6_691_point()))
          .setNormal(new Normal().setVector(getNormal_6_692_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_boltBottom2")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,19,-1,3,18,31,-1,3,20,19,-1,3,21,20,-1,3,22,21,-1,3,23,22,-1,3,24,23,-1,3,25,24,-1,3,26,25,-1,3,27,26,-1,3,28,27,-1,3,29,28,-1,3,30,29,-1,3,31,30,-1,4,5,18,-1,5,6,31,-1,5,31,18,-1,6,7,30,-1,6,30,31,-1,7,8,29,-1,7,29,30,-1,8,9,28,-1,8,28,29,-1,9,10,27,-1,9,27,28,-1,10,11,26,-1,10,26,27,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,32,33,37,-1,32,34,33,-1,32,35,34,-1,32,36,38,-1,32,37,36,-1,32,38,35,-1,33,34,39,-1,33,39,37,-1,34,35,39,-1,35,38,39,-1,36,37,38,-1,37,39,38,-1}).setNormalIndex(new int[] {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,19,-1,3,18,31,-1,3,20,19,-1,3,21,20,-1,3,22,21,-1,3,23,22,-1,3,24,23,-1,3,25,24,-1,3,26,25,-1,3,27,26,-1,3,28,27,-1,3,29,28,-1,3,30,29,-1,3,31,30,-1,4,5,18,-1,5,6,31,-1,5,31,18,-1,6,7,30,-1,6,30,31,-1,7,8,29,-1,7,29,30,-1,8,9,28,-1,8,28,29,-1,9,10,27,-1,9,27,28,-1,10,11,26,-1,10,26,27,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,32,33,37,-1,32,34,33,-1,32,35,34,-1,32,36,38,-1,32,37,36,-1,32,38,35,-1,33,34,39,-1,33,39,37,-1,34,35,39,-1,35,38,39,-1,36,37,38,-1,37,39,38,-1})
          .setCoord(new Coordinate().setPoint(getCoordinate_6_697_point()))
          .setNormal(new Normal().setVector(getNormal_6_698_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_boltBottom4")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,19,-1,3,18,31,-1,3,20,19,-1,3,21,20,-1,3,22,21,-1,3,23,22,-1,3,24,23,-1,3,25,24,-1,3,26,25,-1,3,27,26,-1,3,28,27,-1,3,29,28,-1,3,30,29,-1,3,31,30,-1,4,5,18,-1,5,6,31,-1,5,31,18,-1,6,7,30,-1,6,30,31,-1,7,8,29,-1,7,29,30,-1,8,9,28,-1,8,28,29,-1,9,10,27,-1,9,27,28,-1,10,11,26,-1,10,26,27,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,32,33,37,-1,32,34,33,-1,32,35,34,-1,32,36,38,-1,32,37,36,-1,32,38,35,-1,33,34,39,-1,33,39,37,-1,34,35,39,-1,35,38,39,-1,36,37,38,-1,37,39,38,-1}).setNormalIndex(new int[] {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,19,-1,3,18,31,-1,3,20,19,-1,3,21,20,-1,3,22,21,-1,3,23,22,-1,3,24,23,-1,3,25,24,-1,3,26,25,-1,3,27,26,-1,3,28,27,-1,3,29,28,-1,3,30,29,-1,3,31,30,-1,4,5,18,-1,5,6,31,-1,5,31,18,-1,6,7,30,-1,6,30,31,-1,7,8,29,-1,7,29,30,-1,8,9,28,-1,8,28,29,-1,9,10,27,-1,9,27,28,-1,10,11,26,-1,10,26,27,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,32,33,37,-1,32,34,33,-1,32,35,34,-1,32,36,38,-1,32,37,36,-1,32,38,35,-1,33,34,39,-1,33,39,37,-1,34,35,39,-1,35,38,39,-1,36,37,38,-1,37,39,38,-1})
          .setCoord(new Coordinate().setPoint(getCoordinate_6_703_point()))
          .setNormal(new Normal().setVector(getNormal_6_704_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_mountingPlate")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,19,-1,3,18,31,-1,3,20,19,-1,3,21,20,-1,3,22,21,-1,3,23,22,-1,3,24,23,-1,3,25,24,-1,3,26,25,-1,3,27,26,-1,3,28,27,-1,3,29,28,-1,3,30,29,-1,3,31,30,-1,4,5,18,-1,5,6,31,-1,5,31,18,-1,6,7,30,-1,6,30,31,-1,7,8,29,-1,7,29,30,-1,8,9,28,-1,8,28,29,-1,9,10,27,-1,9,27,28,-1,10,11,26,-1,10,26,27,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1}).setNormalIndex(new int[] {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,19,-1,3,18,31,-1,3,20,19,-1,3,21,20,-1,3,22,21,-1,3,23,22,-1,3,24,23,-1,3,25,24,-1,3,26,25,-1,3,27,26,-1,3,28,27,-1,3,29,28,-1,3,30,29,-1,3,31,30,-1,4,5,18,-1,5,6,31,-1,5,31,18,-1,6,7,30,-1,6,30,31,-1,7,8,29,-1,7,29,30,-1,8,9,28,-1,8,28,29,-1,9,10,27,-1,9,27,28,-1,10,11,26,-1,10,26,27,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1})
          .setCoord(new Coordinate().setPoint(new MFVec3f(new double[] {-7.8867,1.13861,0.0211697,-7.88118,1.13861,0.0200728,-7.88118,1.12813,0.0200728,-7.8867,1.12813,0.0211697,-7.89221,1.13861,0.0200736,-7.89689,1.13861,0.0169488,-7.90002,1.13861,0.0122741,-7.90111,1.13861,0.00675812,-7.90002,1.13861,0.00124196,-7.89689,1.13861,-0.00343317,-7.89222,1.13861,-0.00655862,-7.8867,1.13861,-0.00765553,-7.88118,1.13861,-0.00655939,-7.87651,1.13861,-0.00343459,-7.87338,1.13861,0.0012401,-7.87229,1.13861,0.0067561,-7.87338,1.13861,0.0122723,-7.87651,1.13861,0.0169474,-7.89221,1.12813,0.0200736,-7.87651,1.12813,0.0169474,-7.87338,1.12813,0.0122723,-7.87229,1.12813,0.0067561,-7.87338,1.12813,0.0012401,-7.87651,1.12813,-0.00343459,-7.88118,1.12813,-0.00655939,-7.8867,1.12813,-0.00765553,-7.89222,1.12813,-0.00655862,-7.89689,1.12813,-0.00343317,-7.90002,1.12813,0.00124196,-7.90111,1.12813,0.00675812,-7.90002,1.12813,0.0122741,-7.89689,1.12813,0.0169488})))
          .setNormal(new Normal().setVector(new MFVec3f(new double[] {1.88381E-5,0.962906,0.269836,0.419649,0.321163,0.848969,0.303784,-0.321163,0.896978,9.68728E-6,-0.990326,0.13876,-0.340915,0.454194,0.823095,-0.545215,0.561298,0.622644,-0.741907,0.561324,0.366728,-0.825795,0.561304,0.0547771,-0.783898,0.561324,-0.265365,-0.622644,0.561298,-0.545215,-0.366728,0.561324,-0.741907,-0.0547771,0.561304,-0.825795,0.265365,0.561324,-0.783898,0.545215,0.561298,-0.622644,0.741907,0.561324,-0.366728,0.825795,0.561304,-0.0547771,0.783898,0.561324,0.265365,0.622644,0.561298,0.545215,-0.370805,-0.247008,0.89526,0.545302,-0.561298,0.622568,0.741958,-0.561324,0.366624,0.825802,-0.561304,0.0546618,0.783861,-0.561324,-0.265475,0.622568,-0.561298,-0.545302,0.366624,-0.561324,-0.741958,0.0546618,-0.561304,-0.825802,-0.265475,-0.561324,-0.783861,-0.545302,-0.561298,-0.622568,-0.741958,-0.561324,-0.366624,-0.825802,-0.561304,-0.0546618,-0.783861,-0.561324,0.265475,-0.622568,-0.561298,0.545302})))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_bolt")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,19,-1,3,18,31,-1,3,20,19,-1,3,21,20,-1,3,22,21,-1,3,23,22,-1,3,24,23,-1,3,25,24,-1,3,26,25,-1,3,27,26,-1,3,28,27,-1,3,29,28,-1,3,30,29,-1,3,31,30,-1,4,5,18,-1,5,6,31,-1,5,31,18,-1,6,7,30,-1,6,30,31,-1,7,8,29,-1,7,29,30,-1,8,9,28,-1,8,28,29,-1,9,10,27,-1,9,27,28,-1,10,11,26,-1,10,26,27,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,32,33,37,-1,32,34,33,-1,32,35,34,-1,32,36,38,-1,32,37,36,-1,32,38,35,-1,33,34,39,-1,33,39,37,-1,34,35,39,-1,35,38,39,-1,36,37,38,-1,37,39,38,-1}).setNormalIndex(new int[] {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,19,-1,3,18,31,-1,3,20,19,-1,3,21,20,-1,3,22,21,-1,3,23,22,-1,3,24,23,-1,3,25,24,-1,3,26,25,-1,3,27,26,-1,3,28,27,-1,3,29,28,-1,3,30,29,-1,3,31,30,-1,4,5,18,-1,5,6,31,-1,5,31,18,-1,6,7,30,-1,6,30,31,-1,7,8,29,-1,7,29,30,-1,8,9,28,-1,8,28,29,-1,9,10,27,-1,9,27,28,-1,10,11,26,-1,10,26,27,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,32,33,37,-1,32,34,33,-1,32,35,34,-1,32,36,38,-1,32,37,36,-1,32,38,35,-1,33,34,39,-1,33,39,37,-1,34,35,39,-1,35,38,39,-1,36,37,38,-1,37,39,38,-1})
          .setCoord(new Coordinate().setPoint(getCoordinate_6_715_point()))
          .setNormal(new Normal().setVector(getNormal_6_716_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_bolt3")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,19,-1,3,18,31,-1,3,20,19,-1,3,21,20,-1,3,22,21,-1,3,23,22,-1,3,24,23,-1,3,25,24,-1,3,26,25,-1,3,27,26,-1,3,28,27,-1,3,29,28,-1,3,30,29,-1,3,31,30,-1,4,5,18,-1,5,6,31,-1,5,31,18,-1,6,7,30,-1,6,30,31,-1,7,8,29,-1,7,29,30,-1,8,9,28,-1,8,28,29,-1,9,10,27,-1,9,27,28,-1,10,11,26,-1,10,26,27,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,32,33,37,-1,32,34,33,-1,32,35,34,-1,32,36,38,-1,32,37,36,-1,32,38,35,-1,33,34,39,-1,33,39,37,-1,34,35,39,-1,35,38,39,-1,36,37,38,-1,37,39,38,-1}).setNormalIndex(new int[] {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,19,-1,3,18,31,-1,3,20,19,-1,3,21,20,-1,3,22,21,-1,3,23,22,-1,3,24,23,-1,3,25,24,-1,3,26,25,-1,3,27,26,-1,3,28,27,-1,3,29,28,-1,3,30,29,-1,3,31,30,-1,4,5,18,-1,5,6,31,-1,5,31,18,-1,6,7,30,-1,6,30,31,-1,7,8,29,-1,7,29,30,-1,8,9,28,-1,8,28,29,-1,9,10,27,-1,9,27,28,-1,10,11,26,-1,10,26,27,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,32,33,37,-1,32,34,33,-1,32,35,34,-1,32,36,38,-1,32,37,36,-1,32,38,35,-1,33,34,39,-1,33,39,37,-1,34,35,39,-1,35,38,39,-1,36,37,38,-1,37,39,38,-1})
          .setCoord(new Coordinate().setPoint(getCoordinate_6_721_point()))
          .setNormal(new Normal().setVector(getNormal_6_722_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_boltBottom1")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,19,-1,3,18,31,-1,3,20,19,-1,3,21,20,-1,3,22,21,-1,3,23,22,-1,3,24,23,-1,3,25,24,-1,3,26,25,-1,3,27,26,-1,3,28,27,-1,3,29,28,-1,3,30,29,-1,3,31,30,-1,4,5,18,-1,5,6,31,-1,5,31,18,-1,6,7,30,-1,6,30,31,-1,7,8,29,-1,7,29,30,-1,8,9,28,-1,8,28,29,-1,9,10,27,-1,9,27,28,-1,10,11,26,-1,10,26,27,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,32,33,37,-1,32,34,33,-1,32,35,34,-1,32,36,38,-1,32,37,36,-1,32,38,35,-1,33,34,39,-1,33,39,37,-1,34,35,39,-1,35,38,39,-1,36,37,38,-1,37,39,38,-1}).setNormalIndex(new int[] {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,19,-1,3,18,31,-1,3,20,19,-1,3,21,20,-1,3,22,21,-1,3,23,22,-1,3,24,23,-1,3,25,24,-1,3,26,25,-1,3,27,26,-1,3,28,27,-1,3,29,28,-1,3,30,29,-1,3,31,30,-1,4,5,18,-1,5,6,31,-1,5,31,18,-1,6,7,30,-1,6,30,31,-1,7,8,29,-1,7,29,30,-1,8,9,28,-1,8,28,29,-1,9,10,27,-1,9,27,28,-1,10,11,26,-1,10,26,27,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,32,33,37,-1,32,34,33,-1,32,35,34,-1,32,36,38,-1,32,37,36,-1,32,38,35,-1,33,34,39,-1,33,39,37,-1,34,35,39,-1,35,38,39,-1,36,37,38,-1,37,39,38,-1})
          .setCoord(new Coordinate().setPoint(getCoordinate_6_727_point()))
          .setNormal(new Normal().setVector(getNormal_6_728_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_anglePlate2")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,1,5,-1,0,2,1,-1,0,3,2,-1,0,4,6,-1,0,5,4,-1,0,6,3,-1,1,2,7,-1,1,7,5,-1,2,3,7,-1,3,6,7,-1,4,5,8,-1,4,8,11,-1,4,11,6,-1,5,7,10,-1,5,9,8,-1,5,10,9,-1,6,11,7,-1,7,11,10,-1,8,9,11,-1,9,10,11,-1}).setNormalIndex(new int[] {0,1,5,-1,0,2,1,-1,0,3,2,-1,0,4,6,-1,0,5,4,-1,0,6,3,-1,1,2,7,-1,1,7,5,-1,2,3,7,-1,3,6,7,-1,4,5,8,-1,4,8,11,-1,4,11,6,-1,5,7,10,-1,5,9,8,-1,5,10,9,-1,6,11,7,-1,7,11,10,-1,8,9,11,-1,9,10,11,-1})
          .setCoord(new Coordinate().setPoint(new MFVec3f(new double[] {-7.89403,1.03142,-0.00928902,-7.89403,1.09239,-0.00928902,-7.8972,1.09239,-0.00745294,-7.8972,1.03142,-0.00745294,-7.88735,1.03142,0.002254,-7.88735,1.09239,0.002254,-7.89053,1.03142,0.00408978,-7.89053,1.09239,0.00408978,-7.88514,1.03142,0.00607574,-7.88514,1.09239,0.00607574,-7.88832,1.09239,0.00791151,-7.88832,1.03142,0.00791151})))
          .setNormal(new Normal().setVector(new MFVec3f(new double[] {0.210843,-0.577347,-0.788806,0.149089,0.816494,-0.557772,-0.762106,0.408252,-0.502518,-0.911195,-0.408252,0.0552647,0.480218,-0.83205,-0.277638,0.69258,0.6,-0.400416,-0.480216,-0.83205,0.277641,-0.692578,0.6,0.400419,0.911197,-0.408255,-0.0552141,0.762071,0.408255,0.502569,-0.149122,0.81649,0.55777,-0.210889,-0.577341,0.788799})))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_anglePlate3")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,1,5,-1,0,2,1,-1,0,3,2,-1,0,4,7,-1,0,5,4,-1,0,6,8,-1,0,7,6,-1,0,8,3,-1,1,2,11,-1,1,9,5,-1,1,10,9,-1,1,11,10,-1,2,3,11,-1,3,8,11,-1,4,5,7,-1,5,9,7,-1,6,7,9,-1,6,9,10,-1,6,10,11,-1,6,11,8,-1}).setNormalIndex(new int[] {0,1,5,-1,0,2,1,-1,0,3,2,-1,0,4,7,-1,0,5,4,-1,0,6,8,-1,0,7,6,-1,0,8,3,-1,1,2,11,-1,1,9,5,-1,1,10,9,-1,1,11,10,-1,2,3,11,-1,3,8,11,-1,4,5,7,-1,5,9,7,-1,6,7,9,-1,6,9,10,-1,6,10,11,-1,6,11,8,-1})
          .setCoord(new Coordinate().setPoint(new MFVec3f(new double[] {-7.88934,1.03142,0.00891904,-7.88934,1.09239,0.00891904,-7.88713,1.09239,0.00509578,-7.88713,1.03142,0.00509578,-7.896,1.03142,0.0204669,-7.896,1.09239,0.0204669,-7.89251,1.03142,0.00708492,-7.89918,1.03142,0.0186328,-7.89031,1.03142,0.00326167,-7.89918,1.09239,0.0186328,-7.89251,1.09239,0.00708492,-7.89031,1.09239,0.00326167})))
          .setNormal(new Normal().setVector(new MFVec3f(new double[] {0.612379,-0.707107,0.353542,0.387303,0.894427,0.223599,0.911219,0.408271,0.0547221,0.761758,-0.408271,-0.50303,0.211406,-0.57735,0.788654,0.244111,0.333333,0.910659,-0.774614,-0.447214,-0.447183,-0.621966,-0.66667,0.410744,-0.149462,-0.816482,-0.55769,-0.744018,0.66667,-0.0445935,-0.612386,0.707107,-0.353529,-0.211368,0.57733,-0.788679})))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_anglePlate1")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,1,5,-1,0,2,1,-1,0,3,2,-1,0,4,7,-1,0,5,4,-1,0,6,8,-1,0,7,6,-1,0,8,3,-1,1,2,11,-1,1,9,5,-1,1,10,9,-1,1,11,10,-1,2,3,11,-1,3,8,11,-1,4,5,7,-1,5,9,7,-1,6,7,9,-1,6,9,10,-1,6,10,11,-1,6,11,8,-1}).setNormalIndex(new int[] {0,1,5,-1,0,2,1,-1,0,3,2,-1,0,4,7,-1,0,5,4,-1,0,6,8,-1,0,7,6,-1,0,8,3,-1,1,2,11,-1,1,9,5,-1,1,10,9,-1,1,11,10,-1,2,3,11,-1,3,8,11,-1,4,5,7,-1,5,9,7,-1,6,7,9,-1,6,9,10,-1,6,10,11,-1,6,11,8,-1})
          .setCoord(new Coordinate().setPoint(new MFVec3f(new double[] {-7.88589,1.03142,0.00310024,-7.88589,1.09239,0.00310024,-7.8903,1.09239,0.00332307,-7.8903,1.03142,0.00332307,-7.87258,1.03142,0.0024296,-7.87258,1.09239,0.0024296,-7.88571,1.03142,0.00676494,-7.87239,1.03142,0.00609309,-7.89012,1.03142,0.00698656,-7.87239,1.09239,0.00609309,-7.88571,1.09239,0.00676494,-7.89012,1.09239,0.00698656})))
          .setNormal(new Normal().setVector(new MFVec3f(new double[] {-0.0356286,-0.707107,-0.706209,-0.0225335,0.894427,-0.446646,-0.448887,0.408189,-0.79491,-0.83596,-0.408189,-0.366814,0.547635,-0.577399,-0.605563,0.632372,0.33337,-0.699264,0.0449797,-0.447214,0.893295,0.682576,-0.666615,0.299524,-0.387258,-0.816516,0.428175,0.366482,0.666615,0.649088,0.0355596,0.707107,0.706212,-0.547678,0.577378,0.605545})))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_IndexedFaceSet4")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,2,1,-1,0,3,2,-1,0,4,3,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1}).setNormalIndex(new int[] {0,2,1,-1,0,3,2,-1,0,4,3,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1})
          .setCoord(new Coordinate().setPoint(new MFVec3f(new double[] {-7.92792,1.17825,0.0202713,-7.92792,1.18342,0.0192425,-7.92792,1.1878,0.0163144,-7.92792,1.19073,0.0119301,-7.92792,1.19176,0.00675999,-7.92792,1.19073,0.00158986,-7.92792,1.1878,-0.00279443,-7.92792,1.18342,-0.00572256,-7.92792,1.17825,-0.00675129,-7.92792,1.17308,-0.00572256,-7.92792,1.16869,-0.00279443,-7.92792,1.16576,0.00158986,-7.92792,1.16474,0.00675999,-7.92792,1.16576,0.0119301,-7.92792,1.16869,0.0163144,-7.92792,1.17308,0.0192425})))
          .setNormal(new Normal().setVector(new MFVec3f(new double[] {1.0,-2.36708E-14,-6.98132E-5,1.0,0.0,-6.98132E-5,1.0,0.0,-6.98132E-5,1.0,0.0,-6.98132E-5,1.0,-1.65696E-13,-6.98132E-5,1.0,-1.65696E-13,-6.98132E-5,1.0,0.0,-6.98132E-5,1.0,0.0,-6.98132E-5,1.0,0.0,-6.98132E-5,1.0,0.0,-6.98132E-5,1.0,0.0,-6.98132E-5,1.0,0.0,-6.98132E-5,1.0,0.0,-6.98132E-5,1.0,0.0,-6.98132E-5,1.0,0.0,-6.98132E-5,1.0,0.0,-6.98132E-5})))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_mainGun")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,2,1,-1,0,3,2,-1,1,2,7,-1,1,5,4,-1,1,6,5,-1,1,7,6,-1,2,3,9,-1,2,9,10,-1,2,10,11,-1,2,11,7,-1,4,5,11,-1,4,9,8,-1,4,10,9,-1,4,11,10,-1,5,6,11,-1,6,7,11,-1}).setNormalIndex(new int[] {0,2,1,-1,0,3,2,-1,1,2,7,-1,1,5,4,-1,1,6,5,-1,1,7,6,-1,2,3,9,-1,2,9,10,-1,2,10,11,-1,2,11,7,-1,4,5,11,-1,4,9,8,-1,4,10,9,-1,4,11,10,-1,5,6,11,-1,6,7,11,-1})
          .setCoord(new Coordinate().setPoint(new MFVec3f(new double[] {-7.74118,1.16071,0.0225011,-7.87133,1.16071,0.0225102,-7.87133,1.19578,0.0225102,-7.74118,1.19578,0.0225011,-7.87133,1.16071,-0.00899816,-7.92792,1.16071,-0.0089942,-7.92792,1.16071,0.0225142,-7.92792,1.19578,0.0225142,-7.74118,1.16071,-0.00900724,-7.74118,1.19578,-0.00900724,-7.87133,1.19578,-0.00899816,-7.92792,1.19578,-0.0089942})))
          .setNormal(new Normal().setVector(new MFVec3f(new double[] {6.98132E-5,0.0,1.0,5.80881E-5,-0.5547,0.83205,4.18879E-5,0.8,0.6,4.93654E-5,0.707107,0.707107,-6.77287E-5,-0.242536,-0.970142,-0.408277,-0.816497,-0.40822,-0.816468,-0.408248,0.408305,-0.408191,0.408248,0.816525,-6.98132E-5,0.0,-1.0,-4.93654E-5,0.707107,-0.707107,-4.93654E-5,0.707107,-0.707107,-0.577391,0.57735,-0.57731})))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_ammoCan")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,2,1,-1,0,3,2,-1,1,2,7,-1,1,5,4,-1,1,6,5,-1,1,7,6,-1,2,3,7,-1,3,6,7,-1,3,8,6,-1,3,9,8,-1,5,6,8,-1,5,8,10,-1}).setNormalIndex(new int[] {0,2,1,-1,0,3,2,-1,1,2,7,-1,1,5,4,-1,1,6,5,-1,1,7,6,-1,2,3,7,-1,3,6,7,-1,3,8,6,-1,3,9,8,-1,5,6,8,-1,5,8,10,-1})
          .setCoord(new Coordinate().setPoint(new MFVec3f(new double[] {-7.86962,1.16035,-0.0975851,-7.83581,1.16035,-0.0975875,-7.83581,1.19918,-0.0975875,-7.86962,1.19918,-0.0975851,-7.8358,1.16035,-0.0187609,-7.8358,1.16035,-0.0101513,-7.8358,1.19918,-0.0101513,-7.8358,1.19918,-0.0187609,-7.86962,1.19918,-0.0101489,-7.86962,1.19918,-0.0187585,-7.86962,1.16035,-0.0101489})))
          .setNormal(new Normal().setVector(new MFVec3f(new double[] {-6.98132E-5,0.0,-1.0,0.948661,-2.10019E-13,-0.316294,0.408191,0.408248,-0.816525,-2.20769E-5,0.948683,-0.316228,0.0,0.0,0.0,0.447276,0.0,0.894396,0.66669,0.666667,0.333287,0.707107,0.707107,-4.93654E-5,6.24428E-5,0.447214,0.894427,0.0,0.0,0.0,6.98132E-5,0.0,1.0})))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_IndexedFaceSet8")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,2,1,-1,0,3,2,-1,0,4,3,-1,0,5,4,-1,4,5,10,-1,4,10,11,-1,6,8,7,-1,6,9,8,-1,7,8,11,-1,7,11,10,-1}).setNormalIndex(new int[] {0,2,1,-1,0,3,2,-1,0,4,3,-1,0,5,4,-1,4,5,10,-1,4,10,11,-1,6,8,7,-1,6,9,8,-1,7,8,11,-1,7,11,10,-1})
          .setCoord(new Coordinate().setPoint(new MFVec3f(new double[] {-7.90015,0.847865,-0.0722926,-7.89744,0.848066,-0.0727935,-7.89744,0.834923,-0.0780369,-7.90015,0.834722,-0.0775363,-7.90285,0.834923,-0.0780365,-7.90285,0.848066,-0.0727931,-7.90722,0.850487,-0.0788631,-7.90668,0.849485,-0.0763487,-7.90668,0.836341,-0.0815924,-7.90722,0.837344,-0.0841064,-7.90515,0.848633,-0.0742172,-7.90515,0.83549,-0.0794606})))
          .setNormal(new Normal().setVector(new MFVec3f(new double[] {3.25867E-5,-0.370555,0.92881,0.195369,-0.36341,0.910914,0.19532,-0.363423,0.910919,3.25943E-5,-0.370565,0.928807,-0.382634,-0.342344,0.858132,-0.38265,-0.342336,0.858129,-0.980776,-0.0722828,0.181256,-0.896461,-0.164175,0.411588,-0.947136,-0.118858,0.298005,-0.980777,-0.0722818,0.181251,-0.658587,-0.278825,0.698942,-0.752181,-0.244157,0.612055})))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_IndexedFaceSet7")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,2,1,-1,0,3,2,-1,1,2,5,-1,1,5,4,-1,4,5,7,-1,4,7,6,-1,6,7,9,-1,6,9,8,-1}).setNormalIndex(new int[] {0,2,1,-1,0,3,2,-1,1,2,5,-1,1,5,4,-1,4,5,7,-1,4,7,6,-1,6,7,9,-1,6,9,8,-1})
          .setCoord(new Coordinate().setPoint(new MFVec3f(new double[] {-7.89991,0.848066,0.0836953,-7.90221,0.848633,0.0851197,-7.90221,0.83549,0.0903634,-7.89991,0.834923,0.088939,-7.90374,0.849485,0.0872517,-7.90374,0.836341,0.0924951,-7.90428,0.850487,0.0897658,-7.90428,0.837344,0.0950108,-7.90374,0.851491,0.0922817,-7.90374,0.838348,0.0975251})))
          .setNormal(new Normal().setVector(new MFVec3f(new double[] {-0.555449,-0.30816,-0.772343,-0.752421,-0.244097,-0.611784,-0.658747,-0.278819,-0.698794,-0.555463,-0.308153,-0.772336,-0.947213,-0.11882,-0.297774,-0.896628,-0.164091,-0.411257,-0.997807,0.0245041,0.0614904,-0.997812,-0.0245188,-0.0613951,-0.980779,0.072279,0.181239,-0.98077,0.072304,0.181278})))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_IndexedFaceSet3")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,8,1,-1,1,7,2,-1,1,8,7,-1,2,7,3,-1,3,7,4,-1,4,7,5,-1,5,7,6,-1,9,11,10,-1,9,12,11,-1,9,13,12,-1,9,14,13,-1,9,15,14,-1}).setNormalIndex(new int[] {0,8,1,-1,1,7,2,-1,1,8,7,-1,2,7,3,-1,3,7,4,-1,4,7,5,-1,5,7,6,-1,9,11,10,-1,9,12,11,-1,9,13,12,-1,9,14,13,-1,9,15,14,-1})
          .setCoord(new Coordinate().setPoint(new MFVec3f(new double[] {-7.86024,1.1738,0.0223863,-7.85831,1.17323,0.0223798,-7.85542,1.17285,0.0223744,-7.85201,1.17271,0.0223727,-7.8486,1.17285,0.022374,-7.84571,1.17323,0.0223789,-7.84378,1.1738,0.0223852,-7.84378,1.17382,0.0206597,-7.86024,1.17382,0.0206608,-7.85364,1.1998,0.0259971,-7.85325,1.19923,0.0259904,-7.85268,1.19885,0.0259852,-7.85201,1.19871,0.0259839,-7.85134,1.19885,0.0259851,-7.85076,1.19923,0.0259902,-7.85038,1.1998,0.0259969})))
          .setNormal(new Normal().setVector(new MFVec3f(new double[] {-0.283473,-0.958909,-0.0116371,-0.130614,-0.896192,-0.424004,-0.0533451,-0.668314,-0.741964,0.00273483,-0.845516,-0.533943,0.0831174,-0.948556,-0.305505,0.207823,-0.972869,-0.101659,0.283636,-0.958861,-0.0116761,0.0605756,-0.90261,-0.426177,-0.145033,-0.974261,-0.172573,-3.74441E-4,0.0119304,-0.999929,-0.00224454,0.0102563,-0.999945,-7.4489E-4,0.0117534,-0.999931,1.18383E-4,0.0122985,-0.999924,-1.5631E-4,0.0122187,-0.999925,6.7787E-5,0.0123992,-0.999923,-6.98084E-5,0.0117076,-0.999931}))))))
    .addChild(new Transform("unnamed_object6")
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_gunBack")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,1,2,-1,0,2,3,-1,4,5,6,-1,4,6,7,-1,5,8,9,-1,5,9,6,-1}).setNormalIndex(new int[] {0,1,2,-1,0,2,3,-1,4,5,6,-1,4,6,7,-1,5,8,9,-1,5,9,6,-1})
          .setCoord(new Coordinate().setPoint(new MFVec3f(new double[] {-7.84691,1.13097,-1.47691,-7.84691,1.14787,-1.47691,-7.84496,1.14787,-1.47691,-7.84496,1.13097,-1.47691,-7.84496,1.16043,-1.26341,-7.85072,1.16071,-1.26341,-7.88223,1.16071,-1.26341,-7.888,1.16043,-1.26341,-7.85072,1.19578,-1.26341,-7.88223,1.19578,-1.26341})))
          .setNormal(new Normal().setVector(new MFVec3f(new double[] {0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0})))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_IndexedFaceSet5")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(getIndexedFaceSet_5_794_coordIndex()).setNormalIndex(getIndexedFaceSet_5_794_normalIndex())
          .setCoord(new Coordinate().setPoint(getCoordinate_6_794_point()))
          .setNormal(new Normal().setVector(getNormal_6_795_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_IndexedFaceSet1")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(getIndexedFaceSet_5_800_coordIndex()).setNormalIndex(getIndexedFaceSet_5_800_normalIndex())
          .setCoord(new Coordinate().setPoint(getCoordinate_6_800_point()))
          .setNormal(new Normal().setVector(getNormal_6_801_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_shield")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(getIndexedFaceSet_5_806_coordIndex()).setNormalIndex(getIndexedFaceSet_5_806_normalIndex())
          .setCoord(new Coordinate().setPoint(getCoordinate_6_806_point()))
          .setNormal(new Normal().setVector(getNormal_6_807_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_gunStand")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(getIndexedFaceSet_5_812_coordIndex()).setNormalIndex(getIndexedFaceSet_5_812_normalIndex())
          .setCoord(new Coordinate().setPoint(getCoordinate_6_812_point()))
          .setNormal(new Normal().setVector(getNormal_6_813_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_bottomPlate")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(getIndexedFaceSet_5_818_coordIndex()).setNormalIndex(getIndexedFaceSet_5_818_normalIndex())
          .setCoord(new Coordinate().setPoint(getCoordinate_6_818_point()))
          .setNormal(new Normal().setVector(getNormal_6_819_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_middlePlate")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(getIndexedFaceSet_5_824_coordIndex()).setNormalIndex(getIndexedFaceSet_5_824_normalIndex())
          .setCoord(new Coordinate().setPoint(getCoordinate_6_824_point()))
          .setNormal(new Normal().setVector(getNormal_6_825_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_leg1")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(getIndexedFaceSet_5_830_coordIndex()).setNormalIndex(getIndexedFaceSet_5_830_normalIndex())
          .setCoord(new Coordinate().setPoint(getCoordinate_6_830_point()))
          .setNormal(new Normal().setVector(getNormal_6_831_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_IndexedFaceSet6")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(getIndexedFaceSet_5_836_coordIndex()).setNormalIndex(getIndexedFaceSet_5_836_normalIndex())
          .setCoord(new Coordinate().setPoint(getCoordinate_6_836_point()))
          .setNormal(new Normal().setVector(getNormal_6_837_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_IndexedFaceSet9")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(getIndexedFaceSet_5_842_coordIndex()).setNormalIndex(getIndexedFaceSet_5_842_normalIndex())
          .setCoord(new Coordinate().setPoint(getCoordinate_6_842_point()))
          .setNormal(new Normal().setVector(getNormal_6_843_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_handle1")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(getIndexedFaceSet_5_848_coordIndex()).setNormalIndex(getIndexedFaceSet_5_848_normalIndex())
          .setCoord(new Coordinate().setPoint(getCoordinate_6_848_point()))
          .setNormal(new Normal().setVector(getNormal_6_849_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_handle2")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(getIndexedFaceSet_5_854_coordIndex()).setNormalIndex(getIndexedFaceSet_5_854_normalIndex())
          .setCoord(new Coordinate().setPoint(getCoordinate_6_854_point()))
          .setNormal(new Normal().setVector(getNormal_6_855_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_baseStand")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(getIndexedFaceSet_5_860_coordIndex()).setNormalIndex(getIndexedFaceSet_5_860_normalIndex())
          .setCoord(new Coordinate().setPoint(getCoordinate_6_860_point()))
          .setNormal(new Normal().setVector(getNormal_6_861_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_IndexedFaceSet2")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,1,2,-1,0,2,3,-1,0,3,4,-1,0,4,5,-1,1,6,7,-1,1,7,2,-1,2,7,3,-1,3,7,9,-1,3,9,11,-1,3,11,13,-1,3,13,30,-1,3,29,33,-1,3,30,29,-1,3,33,35,-1,3,35,4,-1,4,34,5,-1,4,35,34,-1,6,8,9,-1,6,9,7,-1,8,10,11,-1,8,11,9,-1,10,12,13,-1,10,13,11,-1,12,14,15,-1,12,15,16,-1,12,16,17,-1,12,17,13,-1,13,17,31,-1,13,31,30,-1,14,18,19,-1,14,19,15,-1,15,19,39,-1,15,36,16,-1,15,39,36,-1,16,36,37,-1,16,37,38,-1,16,38,17,-1,17,38,31,-1,18,20,21,-1,18,21,19,-1,19,21,40,-1,19,40,39,-1,20,22,23,-1,20,23,21,-1,21,23,41,-1,21,41,40,-1,22,24,25,-1,22,25,23,-1,23,25,42,-1,23,42,41,-1,24,26,27,-1,24,27,25,-1,25,27,43,-1,25,43,42,-1,26,28,29,-1,26,29,30,-1,26,30,31,-1,26,31,27,-1,27,31,44,-1,27,44,43,-1,28,32,33,-1,28,33,29,-1,31,38,44,-1,32,34,35,-1,32,35,33,-1}).setNormalIndex(new int[] {0,1,2,-1,0,2,3,-1,0,3,4,-1,0,4,5,-1,1,6,7,-1,1,7,2,-1,2,7,3,-1,3,7,9,-1,3,9,11,-1,3,11,13,-1,3,13,30,-1,3,29,33,-1,3,30,29,-1,3,33,35,-1,3,35,4,-1,4,34,5,-1,4,35,34,-1,6,8,9,-1,6,9,7,-1,8,10,11,-1,8,11,9,-1,10,12,13,-1,10,13,11,-1,12,14,15,-1,12,15,16,-1,12,16,17,-1,12,17,13,-1,13,17,31,-1,13,31,30,-1,14,18,19,-1,14,19,15,-1,15,19,39,-1,15,36,16,-1,15,39,36,-1,16,36,37,-1,16,37,38,-1,16,38,17,-1,17,38,31,-1,18,20,21,-1,18,21,19,-1,19,21,40,-1,19,40,39,-1,20,22,23,-1,20,23,21,-1,21,23,41,-1,21,41,40,-1,22,24,25,-1,22,25,23,-1,23,25,42,-1,23,42,41,-1,24,26,27,-1,24,27,25,-1,25,27,43,-1,25,43,42,-1,26,28,29,-1,26,29,30,-1,26,30,31,-1,26,31,27,-1,27,31,44,-1,27,44,43,-1,28,32,33,-1,28,33,29,-1,31,38,44,-1,32,34,35,-1,32,35,33,-1})
          .setCoord(new Coordinate().setPoint(getCoordinate_6_866_point()))
          .setNormal(new Normal().setVector(getNormal_6_867_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_boltBottom3")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,1,2,-1,0,2,3,-1,0,3,18,-1,0,4,5,-1,0,5,6,-1,0,6,7,-1,0,7,8,-1,0,8,9,-1,0,9,10,-1,0,10,11,-1,0,11,12,-1,0,12,13,-1,0,13,14,-1,0,14,15,-1,0,15,16,-1,0,16,17,-1,0,17,1,-1,0,18,4,-1,1,17,19,-1,1,19,2,-1,2,19,3,-1,3,19,20,-1,3,20,21,-1,3,21,22,-1,3,22,23,-1,3,23,24,-1,3,24,25,-1,3,25,26,-1,3,26,28,-1,3,28,29,-1,3,29,30,-1,3,30,31,-1,3,31,32,-1,3,32,18,-1,4,18,5,-1,5,18,32,-1,5,32,6,-1,6,31,7,-1,6,32,31,-1,7,30,8,-1,7,31,30,-1,8,29,9,-1,8,30,29,-1,9,27,10,-1,9,28,27,-1,9,29,28,-1,10,26,11,-1,10,27,28,-1,10,28,26,-1,11,25,12,-1,11,26,25,-1,12,24,13,-1,12,25,24,-1,13,23,14,-1,13,24,23,-1,14,22,15,-1,14,23,22,-1,15,21,16,-1,15,22,21,-1,16,20,17,-1,16,21,20,-1,17,20,19,-1,33,34,35,-1,33,35,36,-1,33,36,39,-1,33,37,38,-1,33,38,34,-1,33,39,37,-1,34,38,40,-1,34,40,35,-1,35,40,36,-1,36,40,39,-1,37,39,38,-1,38,39,40,-1}).setNormalIndex(new int[] {0,1,2,-1,0,2,3,-1,0,3,18,-1,0,4,5,-1,0,5,6,-1,0,6,7,-1,0,7,8,-1,0,8,9,-1,0,9,10,-1,0,10,11,-1,0,11,12,-1,0,12,13,-1,0,13,14,-1,0,14,15,-1,0,15,16,-1,0,16,17,-1,0,17,1,-1,0,18,4,-1,1,17,19,-1,1,19,2,-1,2,19,3,-1,3,19,20,-1,3,20,21,-1,3,21,22,-1,3,22,23,-1,3,23,24,-1,3,24,25,-1,3,25,26,-1,3,26,28,-1,3,28,29,-1,3,29,30,-1,3,30,31,-1,3,31,32,-1,3,32,18,-1,4,18,5,-1,5,18,32,-1,5,32,6,-1,6,31,7,-1,6,32,31,-1,7,30,8,-1,7,31,30,-1,8,29,9,-1,8,30,29,-1,9,27,10,-1,9,28,27,-1,9,29,28,-1,10,26,11,-1,10,27,28,-1,10,28,26,-1,11,25,12,-1,11,26,25,-1,12,24,13,-1,12,25,24,-1,13,23,14,-1,13,24,23,-1,14,22,15,-1,14,23,22,-1,15,21,16,-1,15,22,21,-1,16,20,17,-1,16,21,20,-1,17,20,19,-1,33,34,35,-1,33,35,36,-1,33,36,39,-1,33,37,38,-1,33,38,34,-1,33,39,37,-1,34,38,40,-1,34,40,35,-1,35,40,36,-1,36,40,39,-1,37,39,38,-1,38,39,40,-1})
          .setCoord(new Coordinate().setPoint(getCoordinate_6_872_point()))
          .setNormal(new Normal().setVector(getNormal_6_873_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_bolt2")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,1,2,-1,0,2,3,-1,0,3,18,-1,0,4,5,-1,0,5,6,-1,0,6,7,-1,0,7,8,-1,0,8,9,-1,0,9,10,-1,0,10,11,-1,0,11,12,-1,0,12,13,-1,0,13,14,-1,0,14,15,-1,0,15,16,-1,0,16,17,-1,0,17,1,-1,0,18,4,-1,1,17,19,-1,1,19,2,-1,2,19,3,-1,3,19,20,-1,3,20,21,-1,3,21,22,-1,3,22,23,-1,3,23,24,-1,3,24,25,-1,3,25,26,-1,3,26,27,-1,3,27,28,-1,3,28,29,-1,3,29,30,-1,3,30,31,-1,3,31,18,-1,4,18,5,-1,5,18,31,-1,5,31,6,-1,6,30,7,-1,6,31,30,-1,7,29,8,-1,7,30,29,-1,8,28,9,-1,8,29,28,-1,9,27,10,-1,9,28,27,-1,10,26,11,-1,10,27,26,-1,11,25,12,-1,11,26,25,-1,12,24,13,-1,12,25,24,-1,13,23,14,-1,13,24,23,-1,14,22,15,-1,14,23,22,-1,15,21,16,-1,15,22,21,-1,16,20,17,-1,16,21,20,-1,17,20,19,-1,32,33,34,-1,32,34,35,-1,32,35,38,-1,32,36,37,-1,32,37,33,-1,32,38,36,-1,33,37,39,-1,33,39,34,-1,34,39,35,-1,35,39,38,-1,36,38,37,-1,37,38,39,-1}).setNormalIndex(new int[] {0,1,2,-1,0,2,3,-1,0,3,18,-1,0,4,5,-1,0,5,6,-1,0,6,7,-1,0,7,8,-1,0,8,9,-1,0,9,10,-1,0,10,11,-1,0,11,12,-1,0,12,13,-1,0,13,14,-1,0,14,15,-1,0,15,16,-1,0,16,17,-1,0,17,1,-1,0,18,4,-1,1,17,19,-1,1,19,2,-1,2,19,3,-1,3,19,20,-1,3,20,21,-1,3,21,22,-1,3,22,23,-1,3,23,24,-1,3,24,25,-1,3,25,26,-1,3,26,27,-1,3,27,28,-1,3,28,29,-1,3,29,30,-1,3,30,31,-1,3,31,18,-1,4,18,5,-1,5,18,31,-1,5,31,6,-1,6,30,7,-1,6,31,30,-1,7,29,8,-1,7,30,29,-1,8,28,9,-1,8,29,28,-1,9,27,10,-1,9,28,27,-1,10,26,11,-1,10,27,26,-1,11,25,12,-1,11,26,25,-1,12,24,13,-1,12,25,24,-1,13,23,14,-1,13,24,23,-1,14,22,15,-1,14,23,22,-1,15,21,16,-1,15,22,21,-1,16,20,17,-1,16,21,20,-1,17,20,19,-1,32,33,34,-1,32,34,35,-1,32,35,38,-1,32,36,37,-1,32,37,33,-1,32,38,36,-1,33,37,39,-1,33,39,34,-1,34,39,35,-1,35,39,38,-1,36,38,37,-1,37,38,39,-1})
          .setCoord(new Coordinate().setPoint(getCoordinate_6_878_point()))
          .setNormal(new Normal().setVector(getNormal_6_879_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_bolt4")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,1,2,-1,0,2,3,-1,0,3,18,-1,0,4,5,-1,0,5,6,-1,0,6,7,-1,0,7,8,-1,0,8,9,-1,0,9,10,-1,0,10,11,-1,0,11,12,-1,0,12,13,-1,0,13,14,-1,0,14,15,-1,0,15,16,-1,0,16,17,-1,0,17,1,-1,0,18,4,-1,1,17,19,-1,1,19,2,-1,2,19,3,-1,3,19,20,-1,3,20,21,-1,3,21,22,-1,3,22,23,-1,3,23,24,-1,3,24,25,-1,3,25,26,-1,3,26,27,-1,3,27,28,-1,3,28,29,-1,3,29,30,-1,3,30,31,-1,3,31,18,-1,4,18,5,-1,5,18,31,-1,5,31,6,-1,6,30,7,-1,6,31,30,-1,7,29,8,-1,7,30,29,-1,8,28,9,-1,8,29,28,-1,9,27,10,-1,9,28,27,-1,10,26,11,-1,10,27,26,-1,11,25,12,-1,11,26,25,-1,12,24,13,-1,12,25,24,-1,13,23,14,-1,13,24,23,-1,14,22,15,-1,14,23,22,-1,15,21,16,-1,15,22,21,-1,16,20,17,-1,16,21,20,-1,17,20,19,-1,32,33,34,-1,32,34,35,-1,32,35,38,-1,32,36,37,-1,32,37,33,-1,32,38,36,-1,33,37,39,-1,33,39,34,-1,34,39,35,-1,35,39,38,-1,36,38,37,-1,37,38,39,-1}).setNormalIndex(new int[] {0,1,2,-1,0,2,3,-1,0,3,18,-1,0,4,5,-1,0,5,6,-1,0,6,7,-1,0,7,8,-1,0,8,9,-1,0,9,10,-1,0,10,11,-1,0,11,12,-1,0,12,13,-1,0,13,14,-1,0,14,15,-1,0,15,16,-1,0,16,17,-1,0,17,1,-1,0,18,4,-1,1,17,19,-1,1,19,2,-1,2,19,3,-1,3,19,20,-1,3,20,21,-1,3,21,22,-1,3,22,23,-1,3,23,24,-1,3,24,25,-1,3,25,26,-1,3,26,27,-1,3,27,28,-1,3,28,29,-1,3,29,30,-1,3,30,31,-1,3,31,18,-1,4,18,5,-1,5,18,31,-1,5,31,6,-1,6,30,7,-1,6,31,30,-1,7,29,8,-1,7,30,29,-1,8,28,9,-1,8,29,28,-1,9,27,10,-1,9,28,27,-1,10,26,11,-1,10,27,26,-1,11,25,12,-1,11,26,25,-1,12,24,13,-1,12,25,24,-1,13,23,14,-1,13,24,23,-1,14,22,15,-1,14,23,22,-1,15,21,16,-1,15,22,21,-1,16,20,17,-1,16,21,20,-1,17,20,19,-1,32,33,34,-1,32,34,35,-1,32,35,38,-1,32,36,37,-1,32,37,33,-1,32,38,36,-1,33,37,39,-1,33,39,34,-1,34,39,35,-1,35,39,38,-1,36,38,37,-1,37,38,39,-1})
          .setCoord(new Coordinate().setPoint(getCoordinate_6_884_point()))
          .setNormal(new Normal().setVector(getNormal_6_885_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_boltBottom2")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,1,2,-1,0,2,3,-1,0,3,18,-1,0,4,5,-1,0,5,6,-1,0,6,7,-1,0,7,8,-1,0,8,9,-1,0,9,10,-1,0,10,11,-1,0,11,12,-1,0,12,13,-1,0,13,14,-1,0,14,15,-1,0,15,16,-1,0,16,17,-1,0,17,1,-1,0,18,4,-1,1,17,19,-1,1,19,2,-1,2,19,3,-1,3,19,20,-1,3,20,21,-1,3,21,22,-1,3,22,23,-1,3,23,24,-1,3,24,25,-1,3,25,26,-1,3,26,27,-1,3,27,28,-1,3,28,29,-1,3,29,30,-1,3,30,31,-1,3,31,18,-1,4,18,5,-1,5,18,31,-1,5,31,6,-1,6,30,7,-1,6,31,30,-1,7,29,8,-1,7,30,29,-1,8,28,9,-1,8,29,28,-1,9,27,10,-1,9,28,27,-1,10,26,11,-1,10,27,26,-1,11,25,12,-1,11,26,25,-1,12,24,13,-1,12,25,24,-1,13,23,14,-1,13,24,23,-1,14,22,15,-1,14,23,22,-1,15,21,16,-1,15,22,21,-1,16,20,17,-1,16,21,20,-1,17,20,19,-1,32,33,34,-1,32,34,35,-1,32,35,38,-1,32,36,37,-1,32,37,33,-1,32,38,36,-1,33,37,39,-1,33,39,34,-1,34,39,35,-1,35,39,38,-1,36,38,37,-1,37,38,39,-1}).setNormalIndex(new int[] {0,1,2,-1,0,2,3,-1,0,3,18,-1,0,4,5,-1,0,5,6,-1,0,6,7,-1,0,7,8,-1,0,8,9,-1,0,9,10,-1,0,10,11,-1,0,11,12,-1,0,12,13,-1,0,13,14,-1,0,14,15,-1,0,15,16,-1,0,16,17,-1,0,17,1,-1,0,18,4,-1,1,17,19,-1,1,19,2,-1,2,19,3,-1,3,19,20,-1,3,20,21,-1,3,21,22,-1,3,22,23,-1,3,23,24,-1,3,24,25,-1,3,25,26,-1,3,26,27,-1,3,27,28,-1,3,28,29,-1,3,29,30,-1,3,30,31,-1,3,31,18,-1,4,18,5,-1,5,18,31,-1,5,31,6,-1,6,30,7,-1,6,31,30,-1,7,29,8,-1,7,30,29,-1,8,28,9,-1,8,29,28,-1,9,27,10,-1,9,28,27,-1,10,26,11,-1,10,27,26,-1,11,25,12,-1,11,26,25,-1,12,24,13,-1,12,25,24,-1,13,23,14,-1,13,24,23,-1,14,22,15,-1,14,23,22,-1,15,21,16,-1,15,22,21,-1,16,20,17,-1,16,21,20,-1,17,20,19,-1,32,33,34,-1,32,34,35,-1,32,35,38,-1,32,36,37,-1,32,37,33,-1,32,38,36,-1,33,37,39,-1,33,39,34,-1,34,39,35,-1,35,39,38,-1,36,38,37,-1,37,38,39,-1})
          .setCoord(new Coordinate().setPoint(getCoordinate_6_890_point()))
          .setNormal(new Normal().setVector(getNormal_6_891_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_boltBottom4")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,1,2,-1,0,2,3,-1,0,3,18,-1,0,4,5,-1,0,5,6,-1,0,6,7,-1,0,7,8,-1,0,8,9,-1,0,9,10,-1,0,10,11,-1,0,11,12,-1,0,12,13,-1,0,13,14,-1,0,14,15,-1,0,15,16,-1,0,16,17,-1,0,17,1,-1,0,18,4,-1,1,17,19,-1,1,19,2,-1,2,19,3,-1,3,19,20,-1,3,20,21,-1,3,21,22,-1,3,22,23,-1,3,23,24,-1,3,24,25,-1,3,25,26,-1,3,26,27,-1,3,27,28,-1,3,28,29,-1,3,29,30,-1,3,30,31,-1,3,31,18,-1,4,18,5,-1,5,18,31,-1,5,31,6,-1,6,30,7,-1,6,31,30,-1,7,29,8,-1,7,30,29,-1,8,28,9,-1,8,29,28,-1,9,27,10,-1,9,28,27,-1,10,26,11,-1,10,27,26,-1,11,25,12,-1,11,26,25,-1,12,24,13,-1,12,25,24,-1,13,23,14,-1,13,24,23,-1,14,22,15,-1,14,23,22,-1,15,21,16,-1,15,22,21,-1,16,20,17,-1,16,21,20,-1,17,20,19,-1,32,33,34,-1,32,34,35,-1,32,35,38,-1,32,36,37,-1,32,37,33,-1,32,38,36,-1,33,37,39,-1,33,39,34,-1,34,39,35,-1,35,39,38,-1,36,38,37,-1,37,38,39,-1}).setNormalIndex(new int[] {0,1,2,-1,0,2,3,-1,0,3,18,-1,0,4,5,-1,0,5,6,-1,0,6,7,-1,0,7,8,-1,0,8,9,-1,0,9,10,-1,0,10,11,-1,0,11,12,-1,0,12,13,-1,0,13,14,-1,0,14,15,-1,0,15,16,-1,0,16,17,-1,0,17,1,-1,0,18,4,-1,1,17,19,-1,1,19,2,-1,2,19,3,-1,3,19,20,-1,3,20,21,-1,3,21,22,-1,3,22,23,-1,3,23,24,-1,3,24,25,-1,3,25,26,-1,3,26,27,-1,3,27,28,-1,3,28,29,-1,3,29,30,-1,3,30,31,-1,3,31,18,-1,4,18,5,-1,5,18,31,-1,5,31,6,-1,6,30,7,-1,6,31,30,-1,7,29,8,-1,7,30,29,-1,8,28,9,-1,8,29,28,-1,9,27,10,-1,9,28,27,-1,10,26,11,-1,10,27,26,-1,11,25,12,-1,11,26,25,-1,12,24,13,-1,12,25,24,-1,13,23,14,-1,13,24,23,-1,14,22,15,-1,14,23,22,-1,15,21,16,-1,15,22,21,-1,16,20,17,-1,16,21,20,-1,17,20,19,-1,32,33,34,-1,32,34,35,-1,32,35,38,-1,32,36,37,-1,32,37,33,-1,32,38,36,-1,33,37,39,-1,33,39,34,-1,34,39,35,-1,35,39,38,-1,36,38,37,-1,37,38,39,-1})
          .setCoord(new Coordinate().setPoint(getCoordinate_6_896_point()))
          .setNormal(new Normal().setVector(getNormal_6_897_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_mountingPlate")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,1,2,-1,0,2,3,-1,0,3,18,-1,0,4,5,-1,0,5,6,-1,0,6,7,-1,0,7,8,-1,0,8,9,-1,0,9,10,-1,0,10,11,-1,0,11,12,-1,0,12,13,-1,0,13,14,-1,0,14,15,-1,0,15,16,-1,0,16,17,-1,0,17,1,-1,0,18,4,-1,1,17,19,-1,1,19,2,-1,2,19,3,-1,3,19,20,-1,3,20,21,-1,3,21,22,-1,3,22,23,-1,3,23,24,-1,3,24,25,-1,3,25,26,-1,3,26,27,-1,3,27,28,-1,3,28,29,-1,3,29,30,-1,3,30,31,-1,3,31,18,-1,4,18,5,-1,5,18,31,-1,5,31,6,-1,6,30,7,-1,6,31,30,-1,7,29,8,-1,7,30,29,-1,8,28,9,-1,8,29,28,-1,9,27,10,-1,9,28,27,-1,10,26,11,-1,10,27,26,-1,11,25,12,-1,11,26,25,-1,12,24,13,-1,12,25,24,-1,13,23,14,-1,13,24,23,-1,14,22,15,-1,14,23,22,-1,15,21,16,-1,15,22,21,-1,16,20,17,-1,16,21,20,-1,17,20,19,-1}).setNormalIndex(new int[] {0,1,2,-1,0,2,3,-1,0,3,18,-1,0,4,5,-1,0,5,6,-1,0,6,7,-1,0,7,8,-1,0,8,9,-1,0,9,10,-1,0,10,11,-1,0,11,12,-1,0,12,13,-1,0,13,14,-1,0,14,15,-1,0,15,16,-1,0,16,17,-1,0,17,1,-1,0,18,4,-1,1,17,19,-1,1,19,2,-1,2,19,3,-1,3,19,20,-1,3,20,21,-1,3,21,22,-1,3,22,23,-1,3,23,24,-1,3,24,25,-1,3,25,26,-1,3,26,27,-1,3,27,28,-1,3,28,29,-1,3,29,30,-1,3,30,31,-1,3,31,18,-1,4,18,5,-1,5,18,31,-1,5,31,6,-1,6,30,7,-1,6,31,30,-1,7,29,8,-1,7,30,29,-1,8,28,9,-1,8,29,28,-1,9,27,10,-1,9,28,27,-1,10,26,11,-1,10,27,26,-1,11,25,12,-1,11,26,25,-1,12,24,13,-1,12,25,24,-1,13,23,14,-1,13,24,23,-1,14,22,15,-1,14,23,22,-1,15,21,16,-1,15,22,21,-1,16,20,17,-1,16,21,20,-1,17,20,19,-1})
          .setCoord(new Coordinate().setPoint(new MFVec3f(new double[] {-7.85207,1.13861,-1.40893,-7.85316,1.13861,-1.40341,-7.85316,1.12813,-1.40341,-7.85207,1.12813,-1.40893,-7.85316,1.13861,-1.41444,-7.85629,1.13861,-1.41912,-7.86096,1.13861,-1.42224,-7.86648,1.13861,-1.42334,-7.872,1.13861,-1.42224,-7.87667,1.13861,-1.41912,-7.8798,1.13861,-1.41444,-7.88089,1.13861,-1.40893,-7.8798,1.13861,-1.40341,-7.87667,1.13861,-1.39874,-7.872,1.13861,-1.39561,-7.86648,1.13861,-1.39452,-7.86096,1.13861,-1.39561,-7.85629,1.13861,-1.39874,-7.85316,1.12813,-1.41444,-7.85629,1.12813,-1.39874,-7.86096,1.12813,-1.39561,-7.86648,1.12813,-1.39452,-7.872,1.12813,-1.39561,-7.87667,1.12813,-1.39874,-7.8798,1.12813,-1.40341,-7.88089,1.12813,-1.40893,-7.8798,1.12813,-1.41444,-7.87667,1.12813,-1.41912,-7.872,1.12813,-1.42224,-7.86648,1.12813,-1.42334,-7.86096,1.12813,-1.42224,-7.85629,1.12813,-1.41912})))
          .setNormal(new Normal().setVector(new MFVec3f(new double[] {0.269836,0.962906,3.73973E-15,0.848999,0.321163,0.41959,0.896999,-0.321163,0.303722,0.13876,-0.990326,-2.54689E-15,0.823071,0.454194,-0.340972,0.622606,0.561298,-0.545258,0.366676,0.561324,-0.741933,0.0547195,0.561304,-0.825798,-0.26542,0.561324,-0.78388,-0.545258,0.561298,-0.622606,-0.741933,0.561324,-0.366676,-0.825798,0.561304,-0.0547195,-0.78388,0.561324,0.26542,-0.622606,0.561298,0.545258,-0.366676,0.561324,0.741933,-0.0547195,0.561304,0.825798,0.26542,0.561324,0.78388,0.545258,0.561298,0.622606,0.895234,-0.247008,-0.370867,0.622606,-0.561298,0.545258,0.366676,-0.561324,0.741933,0.0547195,-0.561304,0.825798,-0.26542,-0.561324,0.78388,-0.545258,-0.561298,0.622606,-0.741933,-0.561324,0.366676,-0.825798,-0.561304,0.0547195,-0.78388,-0.561324,-0.26542,-0.622606,-0.561298,-0.545258,-0.366676,-0.561324,-0.741933,-0.0547195,-0.561304,-0.825798,0.26542,-0.561324,-0.78388,0.545258,-0.561298,-0.622606})))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_bolt")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,1,2,-1,0,2,3,-1,0,3,18,-1,0,4,5,-1,0,5,6,-1,0,6,7,-1,0,7,8,-1,0,8,9,-1,0,9,10,-1,0,10,11,-1,0,11,12,-1,0,12,13,-1,0,13,14,-1,0,14,15,-1,0,15,16,-1,0,16,17,-1,0,17,1,-1,0,18,4,-1,1,17,19,-1,1,19,2,-1,2,19,3,-1,3,19,20,-1,3,20,21,-1,3,21,22,-1,3,22,23,-1,3,23,24,-1,3,24,25,-1,3,25,26,-1,3,26,27,-1,3,27,28,-1,3,28,29,-1,3,29,30,-1,3,30,31,-1,3,31,18,-1,4,18,5,-1,5,18,31,-1,5,31,6,-1,6,30,7,-1,6,31,30,-1,7,29,8,-1,7,30,29,-1,8,28,9,-1,8,29,28,-1,9,27,10,-1,9,28,27,-1,10,26,11,-1,10,27,26,-1,11,25,12,-1,11,26,25,-1,12,24,13,-1,12,25,24,-1,13,23,14,-1,13,24,23,-1,14,22,15,-1,14,23,22,-1,15,21,16,-1,15,22,21,-1,16,20,17,-1,16,21,20,-1,17,20,19,-1,32,33,34,-1,32,34,35,-1,32,35,38,-1,32,36,37,-1,32,37,33,-1,32,38,36,-1,33,37,39,-1,33,39,34,-1,34,39,35,-1,35,39,38,-1,36,38,37,-1,37,38,39,-1}).setNormalIndex(new int[] {0,1,2,-1,0,2,3,-1,0,3,18,-1,0,4,5,-1,0,5,6,-1,0,6,7,-1,0,7,8,-1,0,8,9,-1,0,9,10,-1,0,10,11,-1,0,11,12,-1,0,12,13,-1,0,13,14,-1,0,14,15,-1,0,15,16,-1,0,16,17,-1,0,17,1,-1,0,18,4,-1,1,17,19,-1,1,19,2,-1,2,19,3,-1,3,19,20,-1,3,20,21,-1,3,21,22,-1,3,22,23,-1,3,23,24,-1,3,24,25,-1,3,25,26,-1,3,26,27,-1,3,27,28,-1,3,28,29,-1,3,29,30,-1,3,30,31,-1,3,31,18,-1,4,18,5,-1,5,18,31,-1,5,31,6,-1,6,30,7,-1,6,31,30,-1,7,29,8,-1,7,30,29,-1,8,28,9,-1,8,29,28,-1,9,27,10,-1,9,28,27,-1,10,26,11,-1,10,27,26,-1,11,25,12,-1,11,26,25,-1,12,24,13,-1,12,25,24,-1,13,23,14,-1,13,24,23,-1,14,22,15,-1,14,23,22,-1,15,21,16,-1,15,22,21,-1,16,20,17,-1,16,21,20,-1,17,20,19,-1,32,33,34,-1,32,34,35,-1,32,35,38,-1,32,36,37,-1,32,37,33,-1,32,38,36,-1,33,37,39,-1,33,39,34,-1,34,39,35,-1,35,39,38,-1,36,38,37,-1,37,38,39,-1})
          .setCoord(new Coordinate().setPoint(getCoordinate_6_908_point()))
          .setNormal(new Normal().setVector(getNormal_6_909_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_bolt3")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,1,2,-1,0,2,3,-1,0,3,18,-1,0,4,5,-1,0,5,6,-1,0,6,7,-1,0,7,8,-1,0,8,9,-1,0,9,10,-1,0,10,11,-1,0,11,12,-1,0,12,13,-1,0,13,14,-1,0,14,15,-1,0,15,16,-1,0,16,17,-1,0,17,1,-1,0,18,4,-1,1,17,19,-1,1,19,2,-1,2,19,3,-1,3,19,20,-1,3,20,21,-1,3,21,22,-1,3,22,23,-1,3,23,24,-1,3,24,25,-1,3,25,26,-1,3,26,27,-1,3,27,28,-1,3,28,29,-1,3,29,30,-1,3,30,31,-1,3,31,18,-1,4,18,5,-1,5,18,31,-1,5,31,6,-1,6,30,7,-1,6,31,30,-1,7,29,8,-1,7,30,29,-1,8,28,9,-1,8,29,28,-1,9,27,10,-1,9,28,27,-1,10,26,11,-1,10,27,26,-1,11,25,12,-1,11,26,25,-1,12,24,13,-1,12,25,24,-1,13,23,14,-1,13,24,23,-1,14,22,15,-1,14,23,22,-1,15,21,16,-1,15,22,21,-1,16,20,17,-1,16,21,20,-1,17,20,19,-1,32,33,34,-1,32,34,35,-1,32,35,38,-1,32,36,37,-1,32,37,33,-1,32,38,36,-1,33,37,39,-1,33,39,34,-1,34,39,35,-1,35,39,38,-1,36,38,37,-1,37,38,39,-1}).setNormalIndex(new int[] {0,1,2,-1,0,2,3,-1,0,3,18,-1,0,4,5,-1,0,5,6,-1,0,6,7,-1,0,7,8,-1,0,8,9,-1,0,9,10,-1,0,10,11,-1,0,11,12,-1,0,12,13,-1,0,13,14,-1,0,14,15,-1,0,15,16,-1,0,16,17,-1,0,17,1,-1,0,18,4,-1,1,17,19,-1,1,19,2,-1,2,19,3,-1,3,19,20,-1,3,20,21,-1,3,21,22,-1,3,22,23,-1,3,23,24,-1,3,24,25,-1,3,25,26,-1,3,26,27,-1,3,27,28,-1,3,28,29,-1,3,29,30,-1,3,30,31,-1,3,31,18,-1,4,18,5,-1,5,18,31,-1,5,31,6,-1,6,30,7,-1,6,31,30,-1,7,29,8,-1,7,30,29,-1,8,28,9,-1,8,29,28,-1,9,27,10,-1,9,28,27,-1,10,26,11,-1,10,27,26,-1,11,25,12,-1,11,26,25,-1,12,24,13,-1,12,25,24,-1,13,23,14,-1,13,24,23,-1,14,22,15,-1,14,23,22,-1,15,21,16,-1,15,22,21,-1,16,20,17,-1,16,21,20,-1,17,20,19,-1,32,33,34,-1,32,34,35,-1,32,35,38,-1,32,36,37,-1,32,37,33,-1,32,38,36,-1,33,37,39,-1,33,39,34,-1,34,39,35,-1,35,39,38,-1,36,38,37,-1,37,38,39,-1})
          .setCoord(new Coordinate().setPoint(getCoordinate_6_914_point()))
          .setNormal(new Normal().setVector(getNormal_6_915_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_boltBottom1")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,1,2,-1,0,2,3,-1,0,3,18,-1,0,4,5,-1,0,5,6,-1,0,6,7,-1,0,7,8,-1,0,8,9,-1,0,9,10,-1,0,10,11,-1,0,11,12,-1,0,12,13,-1,0,13,14,-1,0,14,15,-1,0,15,16,-1,0,16,17,-1,0,17,1,-1,0,18,4,-1,1,17,19,-1,1,19,2,-1,2,19,3,-1,3,19,20,-1,3,20,21,-1,3,21,22,-1,3,22,23,-1,3,23,24,-1,3,24,25,-1,3,25,26,-1,3,26,27,-1,3,27,28,-1,3,28,29,-1,3,29,30,-1,3,30,31,-1,3,31,18,-1,4,18,5,-1,5,18,31,-1,5,31,6,-1,6,30,7,-1,6,31,30,-1,7,29,8,-1,7,30,29,-1,8,28,9,-1,8,29,28,-1,9,27,10,-1,9,28,27,-1,10,26,11,-1,10,27,26,-1,11,25,12,-1,11,26,25,-1,12,24,13,-1,12,25,24,-1,13,23,14,-1,13,24,23,-1,14,22,15,-1,14,23,22,-1,15,21,16,-1,15,22,21,-1,16,20,17,-1,16,21,20,-1,17,20,19,-1,32,33,34,-1,32,34,35,-1,32,35,38,-1,32,36,37,-1,32,37,33,-1,32,38,36,-1,33,37,39,-1,33,39,34,-1,34,39,35,-1,35,39,38,-1,36,38,37,-1,37,38,39,-1}).setNormalIndex(new int[] {0,1,2,-1,0,2,3,-1,0,3,18,-1,0,4,5,-1,0,5,6,-1,0,6,7,-1,0,7,8,-1,0,8,9,-1,0,9,10,-1,0,10,11,-1,0,11,12,-1,0,12,13,-1,0,13,14,-1,0,14,15,-1,0,15,16,-1,0,16,17,-1,0,17,1,-1,0,18,4,-1,1,17,19,-1,1,19,2,-1,2,19,3,-1,3,19,20,-1,3,20,21,-1,3,21,22,-1,3,22,23,-1,3,23,24,-1,3,24,25,-1,3,25,26,-1,3,26,27,-1,3,27,28,-1,3,28,29,-1,3,29,30,-1,3,30,31,-1,3,31,18,-1,4,18,5,-1,5,18,31,-1,5,31,6,-1,6,30,7,-1,6,31,30,-1,7,29,8,-1,7,30,29,-1,8,28,9,-1,8,29,28,-1,9,27,10,-1,9,28,27,-1,10,26,11,-1,10,27,26,-1,11,25,12,-1,11,26,25,-1,12,24,13,-1,12,25,24,-1,13,23,14,-1,13,24,23,-1,14,22,15,-1,14,23,22,-1,15,21,16,-1,15,22,21,-1,16,20,17,-1,16,21,20,-1,17,20,19,-1,32,33,34,-1,32,34,35,-1,32,35,38,-1,32,36,37,-1,32,37,33,-1,32,38,36,-1,33,37,39,-1,33,39,34,-1,34,39,35,-1,35,39,38,-1,36,38,37,-1,37,38,39,-1})
          .setCoord(new Coordinate().setPoint(getCoordinate_6_920_point()))
          .setNormal(new Normal().setVector(getNormal_6_921_vector()))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_anglePlate2")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,1,2,-1,0,2,3,-1,0,3,6,-1,0,4,5,-1,0,5,1,-1,0,6,4,-1,1,5,7,-1,1,7,2,-1,2,7,3,-1,3,7,6,-1,4,6,11,-1,4,8,5,-1,4,11,8,-1,5,8,9,-1,5,9,10,-1,5,10,7,-1,6,7,11,-1,7,10,11,-1,8,11,9,-1,9,11,10,-1}).setNormalIndex(new int[] {0,1,2,-1,0,2,3,-1,0,3,6,-1,0,4,5,-1,0,5,1,-1,0,6,4,-1,1,5,7,-1,1,7,2,-1,2,7,3,-1,3,7,6,-1,4,6,11,-1,4,8,5,-1,4,11,8,-1,5,8,9,-1,5,9,10,-1,5,10,7,-1,6,7,11,-1,7,10,11,-1,8,11,9,-1,9,11,10,-1})
          .setCoord(new Coordinate().setPoint(new MFVec3f(new double[] {-7.88253,1.03142,-1.41626,-7.88253,1.09239,-1.41626,-7.88069,1.09239,-1.41943,-7.88069,1.03142,-1.41943,-7.87098,1.03142,-1.40958,-7.87098,1.09239,-1.40958,-7.86915,1.03142,-1.41276,-7.86915,1.09239,-1.41276,-7.86716,1.03142,-1.40737,-7.86716,1.09239,-1.40737,-7.86532,1.09239,-1.41055,-7.86532,1.03142,-1.41055})))
          .setNormal(new Normal().setVector(new MFVec3f(new double[] {-0.788792,-0.577347,0.210899,-0.557762,0.816494,0.149128,-0.502571,0.408252,-0.762071,0.0552011,-0.408252,-0.911199,-0.277605,-0.83205,0.480237,-0.400367,0.6,0.692608,0.277607,-0.83205,-0.480236,0.400371,0.6,-0.692606,-0.0551505,-0.408255,0.9112,0.502622,0.408255,0.762036,0.557759,0.81649,-0.149161,0.788784,-0.577341,-0.210944})))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_anglePlate3")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,1,2,-1,0,2,3,-1,0,3,8,-1,0,4,5,-1,0,5,1,-1,0,6,7,-1,0,7,4,-1,0,8,6,-1,1,5,9,-1,1,9,10,-1,1,10,11,-1,1,11,2,-1,2,11,3,-1,3,11,8,-1,4,7,5,-1,5,7,9,-1,6,8,11,-1,6,9,7,-1,6,10,9,-1,6,11,10,-1}).setNormalIndex(new int[] {0,1,2,-1,0,2,3,-1,0,3,8,-1,0,4,5,-1,0,5,1,-1,0,6,7,-1,0,7,4,-1,0,8,6,-1,1,5,9,-1,1,9,10,-1,1,10,11,-1,1,11,2,-1,2,11,3,-1,3,11,8,-1,4,7,5,-1,5,7,9,-1,6,8,11,-1,6,9,7,-1,6,10,9,-1,6,11,10,-1})
          .setCoord(new Coordinate().setPoint(new MFVec3f(new double[] {-7.86432,1.03142,-1.41156,-7.86432,1.09239,-1.41156,-7.86814,1.09239,-1.40936,-7.86814,1.03142,-1.40936,-7.85277,1.03142,-1.41823,-7.85277,1.09239,-1.41823,-7.86615,1.03142,-1.41474,-7.8546,1.03142,-1.42141,-7.86997,1.03142,-1.41253,-7.8546,1.09239,-1.42141,-7.86615,1.09239,-1.41474,-7.86997,1.09239,-1.41253})))
          .setNormal(new Normal().setVector(new MFVec3f(new double[] {0.353584,-0.707107,0.612355,0.223626,0.894427,0.387287,0.0547857,0.408271,0.911215,-0.502977,-0.408271,0.761793,0.788668,-0.57735,0.211351,0.910676,0.333333,0.244047,-0.447237,-0.447214,-0.774583,0.4107,-0.66667,-0.621994,-0.557701,-0.816482,-0.149423,-0.0446454,0.66667,-0.744015,-0.353572,0.707107,-0.612362,-0.788694,0.57733,-0.211313})))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_anglePlate1")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,1,2,-1,0,2,3,-1,0,3,8,-1,0,4,5,-1,0,5,1,-1,0,6,7,-1,0,7,4,-1,0,8,6,-1,1,5,9,-1,1,9,10,-1,1,10,11,-1,1,11,2,-1,2,11,3,-1,3,11,8,-1,4,7,5,-1,5,7,9,-1,6,8,11,-1,6,9,7,-1,6,10,9,-1,6,11,10,-1}).setNormalIndex(new int[] {0,1,2,-1,0,2,3,-1,0,3,8,-1,0,4,5,-1,0,5,1,-1,0,6,7,-1,0,7,4,-1,0,8,6,-1,1,5,9,-1,1,9,10,-1,1,10,11,-1,1,11,2,-1,2,11,3,-1,3,11,8,-1,4,7,5,-1,5,7,9,-1,6,8,11,-1,6,9,7,-1,6,10,9,-1,6,11,10,-1})
          .setCoord(new Coordinate().setPoint(new MFVec3f(new double[] {-7.87014,1.03142,-1.40812,-7.87014,1.09239,-1.40812,-7.86991,1.09239,-1.41253,-7.86991,1.03142,-1.41253,-7.87081,1.03142,-1.3948,-7.87081,1.09239,-1.3948,-7.86647,1.03142,-1.40794,-7.86714,1.03142,-1.39462,-7.86625,1.03142,-1.41235,-7.86714,1.09239,-1.39462,-7.86647,1.09239,-1.40794,-7.86625,1.09239,-1.41235})))
          .setNormal(new Normal().setVector(new MFVec3f(new double[] {-0.706211,-0.707107,-0.0355793,-0.446647,0.894427,-0.0225023,-0.794941,0.408189,-0.448831,-0.366872,-0.408189,-0.835935,-0.605525,-0.577399,0.547677,-0.69922,0.33337,0.632421,0.893299,-0.447214,0.0449173,0.299571,-0.666615,0.682555,0.428148,-0.816516,-0.387287,0.649114,0.666615,0.366437,0.706215,0.707107,0.0355102,0.605506,0.577378,-0.54772})))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_IndexedFaceSet4")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,1,2,-1,0,2,3,-1,0,3,4,-1,0,4,5,-1,0,5,6,-1,0,6,7,-1,0,7,8,-1,0,8,9,-1,0,9,10,-1,0,10,11,-1,0,11,12,-1,0,12,13,-1,0,13,14,-1,0,14,15,-1}).setNormalIndex(new int[] {0,1,2,-1,0,2,3,-1,0,3,4,-1,0,4,5,-1,0,5,6,-1,0,6,7,-1,0,7,8,-1,0,8,9,-1,0,9,10,-1,0,10,11,-1,0,11,12,-1,0,12,13,-1,0,13,14,-1,0,14,15,-1})
          .setCoord(new Coordinate().setPoint(new MFVec3f(new double[] {-7.85297,1.17825,-1.45015,-7.854,1.18342,-1.45015,-7.85692,1.1878,-1.45015,-7.86131,1.19073,-1.45015,-7.86648,1.19176,-1.45015,-7.87165,1.19073,-1.45015,-7.87603,1.1878,-1.45015,-7.87896,1.18342,-1.45015,-7.87999,1.17825,-1.45015,-7.87896,1.17308,-1.45015,-7.87603,1.16869,-1.45015,-7.87165,1.16576,-1.45015,-7.86648,1.16474,-1.45015,-7.86131,1.16576,-1.45015,-7.85692,1.16869,-1.45015,-7.854,1.17308,-1.45015})))
          .setNormal(new Normal().setVector(new MFVec3f(new double[] {1.93825E-14,0.0,1.0,0.0,0.0,1.0,-5.72505E-14,0.0,1.0,-5.72505E-14,0.0,1.0,-4.1424E-14,0.0,1.0,-4.1424E-14,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,-6.71836E-15,0.0,1.0,9.1342E-15,0.0,1.0,1.58526E-14,0.0,1.0,6.20037E-14,0.0,1.0,6.20037E-14,0.0,1.0,1.63214E-13,0.0,1.0,3.26428E-13,0.0,1.0})))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_mainGun")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,1,2,-1,0,2,3,-1,1,4,5,-1,1,5,6,-1,1,6,7,-1,1,7,2,-1,2,7,11,-1,2,9,3,-1,2,10,9,-1,2,11,10,-1,4,8,9,-1,4,9,10,-1,4,10,11,-1,4,11,5,-1,5,11,6,-1,6,11,7,-1}).setNormalIndex(new int[] {0,1,2,-1,0,2,3,-1,1,4,5,-1,1,5,6,-1,1,6,7,-1,1,7,2,-1,2,7,11,-1,2,9,3,-1,2,10,9,-1,2,11,10,-1,4,8,9,-1,4,9,10,-1,4,10,11,-1,4,11,5,-1,5,11,6,-1,6,11,7,-1})
          .setCoord(new Coordinate().setPoint(new MFVec3f(new double[] {-7.85072,1.16071,-1.26341,-7.85072,1.16071,-1.39356,-7.85072,1.19578,-1.39356,-7.85072,1.19578,-1.26341,-7.88223,1.16071,-1.39356,-7.88223,1.16071,-1.45015,-7.85072,1.16071,-1.45015,-7.85072,1.19578,-1.45015,-7.88223,1.16071,-1.26341,-7.88223,1.19578,-1.26341,-7.88223,1.19578,-1.39356,-7.88223,1.19578,-1.45015})))
          .setNormal(new Normal().setVector(new MFVec3f(new double[] {1.0,0.0,0.0,0.83205,-0.5547,0.0,0.6,0.8,0.0,0.707107,0.707107,0.0,-0.970143,-0.242536,0.0,-0.408248,-0.816497,-0.408248,0.408248,-0.408248,-0.816497,0.816497,0.408248,-0.408248,-1.0,0.0,0.0,-0.707107,0.707107,0.0,-0.707107,0.707107,0.0,-0.57735,0.57735,-0.57735})))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_ammoCan")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,1,2,-1,0,2,3,-1,1,4,5,-1,1,5,6,-1,1,6,7,-1,1,7,2,-1,2,7,3,-1,3,6,8,-1,3,7,6,-1,3,8,9,-1,5,8,6,-1,5,10,8,-1}).setNormalIndex(new int[] {0,1,2,-1,0,2,3,-1,1,4,5,-1,1,5,6,-1,1,6,7,-1,1,7,2,-1,2,7,3,-1,3,6,8,-1,3,7,6,-1,3,8,9,-1,5,8,6,-1,5,10,8,-1})
          .setCoord(new Coordinate().setPoint(new MFVec3f(new double[] {-7.97082,1.16035,-1.39184,-7.97082,1.16035,-1.35803,-7.97082,1.19918,-1.35803,-7.97082,1.19918,-1.39184,-7.89199,1.16035,-1.35803,-7.88338,1.16035,-1.35803,-7.88338,1.19918,-1.35803,-7.89199,1.19918,-1.35803,-7.88338,1.19918,-1.39184,-7.89199,1.19918,-1.39184,-7.88338,1.16035,-1.39184})))
          .setNormal(new Normal().setVector(new MFVec3f(new double[] {-1.0,0.0,0.0,-0.316228,0.0,0.948683,-0.816497,0.408248,0.408248,-0.316228,0.948683,0.0,0.0,0.0,0.0,0.894427,0.0,0.447214,0.333333,0.666667,0.666667,0.0,0.707107,0.707107,0.894427,0.447214,0.0,0.0,0.0,0.0,1.0,0.0,0.0})))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_IndexedFaceSet8")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,1,2,-1,0,2,3,-1,0,3,4,-1,0,4,5,-1,4,10,5,-1,4,11,10,-1,6,7,8,-1,6,8,9,-1,7,10,11,-1,7,11,8,-1}).setNormalIndex(new int[] {0,1,2,-1,0,2,3,-1,0,3,4,-1,0,4,5,-1,4,10,5,-1,4,11,10,-1,6,7,8,-1,6,8,9,-1,7,10,11,-1,7,11,8,-1})
          .setCoord(new Coordinate().setPoint(new MFVec3f(new double[] {-7.94553,0.847865,-1.42237,-7.94603,0.848066,-1.41966,-7.95127,0.834923,-1.41966,-7.95077,0.834722,-1.42237,-7.95127,0.834923,-1.42508,-7.94603,0.848066,-1.42508,-7.9521,0.850487,-1.42944,-7.94959,0.849485,-1.42891,-7.95483,0.836341,-1.42891,-7.95734,0.837344,-1.42944,-7.94745,0.848633,-1.42737,-7.9527,0.83549,-1.42737})))
          .setNormal(new Normal().setVector(new MFVec3f(new double[] {0.92881,-0.370555,-3.22565E-5,0.910927,-0.36341,0.195306,0.910933,-0.363423,0.195257,0.928807,-0.370565,-3.22487E-5,0.858106,-0.342344,-0.382694,0.858102,-0.342336,-0.38271,0.181188,-0.0722828,-0.980789,0.411526,-0.164175,-0.89649,0.297939,-0.118858,-0.947156,0.181182,-0.0722818,-0.98079,0.698896,-0.278825,-0.658636,0.612002,-0.244157,-0.752224})))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_IndexedFaceSet7")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,1,2,-1,0,2,3,-1,1,4,5,-1,1,5,2,-1,4,6,7,-1,4,7,5,-1,6,8,9,-1,6,9,7,-1}).setNormalIndex(new int[] {0,1,2,-1,0,2,3,-1,1,4,5,-1,1,5,2,-1,4,6,7,-1,4,7,5,-1,6,8,9,-1,6,9,7,-1})
          .setCoord(new Coordinate().setPoint(new MFVec3f(new double[] {-7.78954,0.848066,-1.42215,-7.78812,0.848633,-1.42444,-7.78287,0.83549,-1.42444,-7.7843,0.834923,-1.42215,-7.78599,0.849485,-1.42597,-7.78074,0.836341,-1.42597,-7.78347,0.850487,-1.42651,-7.77823,0.837344,-1.42651,-7.78096,0.851491,-1.42597,-7.77571,0.838348,-1.42597})))
          .setNormal(new Normal().setVector(new MFVec3f(new double[] {-0.772382,-0.30816,-0.555395,-0.611836,-0.244097,-0.752379,-0.69884,-0.278819,-0.658698,-0.772374,-0.308153,-0.555409,-0.29784,-0.11882,-0.947192,-0.41132,-0.164091,-0.896599,0.0614207,0.0245041,-0.997811,-0.0614647,-0.0245188,-0.997808,0.181171,0.072279,-0.980792,0.181209,0.072304,-0.980783})))))
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("dad_IndexedFaceSet3")))
        .setGeometry(new IndexedFaceSet().setCoordIndex(new int[] {0,1,8,-1,1,2,7,-1,1,7,8,-1,2,3,7,-1,3,4,7,-1,4,5,7,-1,5,6,7,-1,9,10,11,-1,9,11,12,-1,9,12,13,-1,9,13,14,-1,9,14,15,-1}).setNormalIndex(new int[] {0,1,8,-1,1,2,7,-1,1,7,8,-1,2,3,7,-1,3,4,7,-1,4,5,7,-1,5,6,7,-1,9,10,11,-1,9,11,12,-1,9,12,13,-1,9,13,14,-1,9,14,15,-1})
          .setCoord(new Coordinate().setPoint(new MFVec3f(new double[] {-7.85085,1.1738,-1.38247,-7.85085,1.17323,-1.38054,-7.85086,1.17285,-1.37765,-7.85086,1.17271,-1.37424,-7.85086,1.17285,-1.37083,-7.85085,1.17323,-1.36794,-7.85085,1.1738,-1.36601,-7.85257,1.17382,-1.36601,-7.85257,1.17382,-1.38247,-7.84724,1.1998,-1.37587,-7.84724,1.19923,-1.37548,-7.84725,1.19885,-1.37491,-7.84725,1.19871,-1.37424,-7.84725,1.19885,-1.37356,-7.84724,1.19923,-1.37299,-7.84724,1.1998,-1.37261})))
          .setNormal(new Normal().setVector(new MFVec3f(new double[] {-0.0116569,-0.958909,-0.283473,-0.424013,-0.896192,-0.130584,-0.741968,-0.668314,-0.0532933,-0.533942,-0.845516,0.00277211,-0.305499,-0.948556,0.0831387,-0.101645,-0.972869,0.207831,-0.0116563,-0.958861,0.283637,-0.426172,-0.90261,0.0606053,-0.172584,-0.974261,-0.145021,-0.999929,0.0119304,-3.04633E-4,-0.999945,0.0102563,-0.00217473,-0.999931,0.0117534,-6.75081E-4,-0.999924,0.0122985,1.8819E-4,-0.999925,0.0122187,-8.65025E-5,-0.999923,0.0123992,1.37595E-4,-0.999931,0.0117076,0.0}))))))
    .addChild(new Transform("cube1_copy5")
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material("default").setAmbientIntensity(1.0).setDiffuseColor(1.0,1.0,1.0).setShininess(1.0).setSpecularColor(1.0,1.0,1.0)))
        .setGeometry(new IndexedFaceSet().setColorIndex(new int[] {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,2,2,2,2,-1,1,1,1,1,-1,2,2,2,2,-1,1,1,1,1,-1,2,2,2,2,-1,1,1,1,1,-1,2,2,2,2,-1,1,1,1,1,-1}).setCoordIndex(getIndexedFaceSet_5_981_coordIndex()).setNormalIndex(getIndexedFaceSet_5_981_normalIndex())
          .setColor(new Color().setColor(new MFColor(new double[] {0.166667,0.166667,0.166667,0.766667,0.766666,0.766666,0.833333,0.833333,0.833332,1.0,1.0,1.0})))
          .setCoord(new Coordinate().setPoint(getCoordinate_6_982_point()))
          .setNormal(new Normal().setVector(getNormal_6_983_vector())))))
    .addChild(new Transform("cube1_copy4")
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("default")))
        .setGeometry(new IndexedFaceSet().setColorIndex(new int[] {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,2,2,2,2,-1,1,1,1,1,-1,2,2,2,2,-1,1,1,1,1,-1,2,2,2,2,-1,1,1,1,1,-1,2,2,2,2,-1,1,1,1,1,-1}).setCoordIndex(getIndexedFaceSet_5_989_coordIndex()).setNormalIndex(getIndexedFaceSet_5_989_normalIndex())
          .setColor(new Color().setColor(new MFColor(new double[] {0.166667,0.166667,0.166667,0.766667,0.766666,0.766666,0.833333,0.833333,0.833332,1.0,1.0,1.0})))
          .setCoord(new Coordinate().setPoint(getCoordinate_6_990_point()))
          .setNormal(new Normal().setVector(getNormal_6_991_vector())))))
    .addChild(new Transform("cube1_copy3")
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("default")))
        .setGeometry(new IndexedFaceSet().setColorIndex(new int[] {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,2,2,2,2,-1,1,1,1,1,-1,2,2,2,2,-1,1,1,1,1,-1,2,2,2,2,-1,1,1,1,1,-1,2,2,2,2,-1,1,1,1,1,-1}).setCoordIndex(getIndexedFaceSet_5_997_coordIndex()).setNormalIndex(getIndexedFaceSet_5_997_normalIndex())
          .setColor(new Color().setColor(new MFColor(new double[] {0.166667,0.166667,0.166667,0.766667,0.766666,0.766666,0.833333,0.833333,0.833332,1.0,1.0,1.0})))
          .setCoord(new Coordinate().setPoint(getCoordinate_6_998_point()))
          .setNormal(new Normal().setVector(getNormal_6_999_vector())))))
    .addChild(new Transform("cube1_copy2")
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("default")))
        .setGeometry(new IndexedFaceSet().setColorIndex(new int[] {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,2,2,2,2,-1,1,1,1,1,-1,2,2,2,2,-1,1,1,1,1,-1,2,2,2,2,-1,1,1,1,1,-1,2,2,2,2,-1,1,1,1,1,-1}).setCoordIndex(getIndexedFaceSet_5_1005_coordIndex()).setNormalIndex(getIndexedFaceSet_5_1005_normalIndex())
          .setColor(new Color().setColor(new MFColor(new double[] {0.166667,0.166667,0.166667,0.766667,0.766666,0.766666,0.833333,0.833333,0.833332,1.0,1.0,1.0})))
          .setCoord(new Coordinate().setPoint(getCoordinate_6_1006_point()))
          .setNormal(new Normal().setVector(getNormal_6_1007_vector())))))
    .addChild(new Transform("cube1")
      .addChild(new Shape()
        .setAppearance(new Appearance()
          .setMaterial(new Material().setUSE("default")))
        .setGeometry(new IndexedFaceSet().setColorIndex(getIndexedFaceSet_5_1013_colorIndex()).setCoordIndex(getIndexedFaceSet_5_1013_coordIndex()).setNormalIndex(getIndexedFaceSet_5_1013_normalIndex())
          .setColor(new Color().setColor(new MFColor(new double[] {0.166667,0.166667,0.166667,0.22,0.22,0.22,0.256533,0.256533,0.74,0.293333,0.293333,0.626667,0.766667,0.766666,0.766666,0.833333,0.833333,0.833332,1.0,1.0,1.0})))
          .setCoord(new Coordinate().setPoint(getCoordinate_6_1014_point()))
          .setNormal(new Normal().setVector(getNormal_6_1015_vector()))))));
            }
            catch (Exception ex)
            {       
                System.err.println ("*** Further hints on X3DJSAIL errors and exceptions at");
                System.err.println ("*** https://www.web3d.org/specifications/java/X3DJSAIL.html");
                throw (ex);
            }
	}
	// end of initialize() method

		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_22_coordIndex_1()
		{
			int[] value = {0,2,1,-1,0,3,2,-1,0,4,3,-1,0,5,4,-1,1,2,7,-1,1,7,6,-1,2,3,32,-1,2,32,35,-1,2,35,7,-1,3,4,34,-1,3,33,32,-1,3,34,33,-1,4,5,30,-1,4,30,31,-1,4,31,34,-1,6,7,9,-1,6,9,8,-1,7,35,36,-1,7,36,9,-1,8,9,11,-1,8,11,10,-1,9,36,37,-1,9,37,11,-1,10,11,13,-1,10,13,12,-1,11,37,38,-1,11,38,13,-1,12,13,15,-1,12,15,14,-1,13,38,39,-1,13,39,15,-1,14,15,17,-1,14,17,16,-1,15,39,40,-1,15,40,17,-1,16,17,19,-1,16,19,18,-1,17,40,41,-1,17,41,19,-1,18,19,21,-1,18,21,20,-1,19,41,42,-1,19,42,21,-1,20,21,23,-1,20,23,22,-1,21,42,43,-1,21,43,23,-1,22,23,25,-1,22,25,24,-1,23,43,44,-1,23,44,25,-1,24,25,27,-1,24,27,26,-1,25,44,45,-1,25,45,27,-1,26,27,29,-1,26,29,28,-1,27,45,46,-1,27,46,29,-1,28,29,31,-1,28,31,30,-1,29,46,47,-1,29,47,31,-1,31,47,34,-1,32,33,48,-1,32,48,51,-1,32,51,35,-1,33,34,50,-1,33,49,48,-1,33,50,49,-1,34,47,50,-1,35,51,52,-1,35,52,36,-1,36,52,53,-1,36,53,37,-1,37,53,54,-1,37,54,38,-1,38,54,55,-1,38,55,39,-1,39,55,56,-1,39,56,40,-1,40,56,57,-1,40,57,41,-1,41,57,58,-1,41,58,42,-1,42,58,59,-1,42,59,43,-1,43,59,60,-1,43,60,44,-1,44,60,61,-1,44,61,45,-1,45,61,62,-1,45,62,46,-1,46,62,63,-1,46,63,47,-1,47,63,50,-1,48,49,64,-1,48,64,67,-1,48,67,51,-1,49,50,66,-1,49,65,64,-1,49,66,65,-1,50,63,66,-1,51,67,68,-1,51,68,52,-1,52,68,69,-1,52,69,53,-1,53,69,70,-1,53,70,54,-1,54,70,71,-1,54,71,55,-1,55,71,72,-1,55,72,56,-1,56,72,73,-1,56,73,57,-1,57,73,74,-1,57,74,58,-1,58,74,75,-1,58,75,59,-1,59,75,76,-1,59,76,60,-1,60,76,77,-1,60,77,61,-1,61,77,78,-1,61,78,62,-1,62,78,79,-1,62,79,63,-1,63,79,66,-1,64,65,88,-1,64,88,89,-1,64,89,67,-1,65,66,81,-1,65,80,88,-1,65,81,80,-1,66,79,81,-1,67,82,68,-1,67,89,82,-1,68,82,83,-1,68,83,69,-1,69,83,90,-1,69,90,70,-1,70,90,91,-1,70,91,71,-1,71,91,92,-1,71,92,72,-1,72,92,93,-1,72,93,73,-1,73,93,94,-1,73,94,74,-1,74,84,75,-1,74,94,84,-1,75,84,85,-1,75,85,76,-1,76,85,95,-1,76,95,77,-1,77,86,78,-1,77,95,86,-1,78,86,87,-1,78,87,79,-1,79,87,81,-1,80,81,98,-1,80,96,88,-1,80,97,96,-1,80,98,97,-1,81,87,98,-1,82,89,100,-1,82,100,101,-1,82,101,83,-1,83,101,102,-1,83,102,90,-1,84,94,107,-1,84,107,108,-1,84,108,85,-1,85,108,109,-1,85,109,95,-1,86,95,110,-1,86,110,111,-1,86,111,87,-1,87,111,98,-1,88,96,99,-1,88,99,89,-1,89,99,100,-1,90,102,103,-1,90,103,91,-1,91,103,104,-1,91,104,92,-1,92,104,105,-1,92,105,93,-1,93,105,106,-1,93,106,94,-1,94,106,107,-1,95,109,110,-1,96,97,112,-1,96,112,115,-1,96,115,99,-1,97,98,114,-1,97,113,112,-1,97,114,113,-1,98,111,114,-1,99,115,116,-1,99,116,100,-1,100,116,117,-1,100,117,101,-1,101,117,118,-1,101,118,102,-1,102,118,119,-1,102,119,103,-1,103,119,120,-1,103,120,104,-1,104,120,121,-1,104,121,105,-1,105,121,122,-1,105,122,106,-1,106,122,123,-1,106,123,107,-1,107,123,124,-1,107,124,108,-1,108,124,125,-1,108,125,109,-1,109,125,126,-1,109,126,110,-1,110,126,127,-1,110,127,111,-1,111,127,114,-1,112,113,115,-1,113,114,127,-1,113,116,115,-1,113,117,116,-1,113,118,117,-1,113,119,118,-1,113,120,119,-1,113,121,120,-1,113,122,121,-1,113,123,122,-1,113,124,123,-1,113,125,124,-1,113,126,125,-1,113,127,126,-1};
			return value;
		}


		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_22_normalIndex_1()
		{
			int[] value = {0,2,1,-1,0,3,2,-1,0,4,3,-1,0,5,4,-1,1,2,7,-1,1,7,6,-1,2,3,32,-1,2,32,35,-1,2,35,7,-1,3,4,34,-1,3,33,32,-1,3,34,33,-1,4,5,30,-1,4,30,31,-1,4,31,34,-1,6,7,9,-1,6,9,8,-1,7,35,36,-1,7,36,9,-1,8,9,11,-1,8,11,10,-1,9,36,37,-1,9,37,11,-1,10,11,13,-1,10,13,12,-1,11,37,38,-1,11,38,13,-1,12,13,15,-1,12,15,14,-1,13,38,39,-1,13,39,15,-1,14,15,17,-1,14,17,16,-1,15,39,40,-1,15,40,17,-1,16,17,19,-1,16,19,18,-1,17,40,41,-1,17,41,19,-1,18,19,21,-1,18,21,20,-1,19,41,42,-1,19,42,21,-1,20,21,23,-1,20,23,22,-1,21,42,43,-1,21,43,23,-1,22,23,25,-1,22,25,24,-1,23,43,44,-1,23,44,25,-1,24,25,27,-1,24,27,26,-1,25,44,45,-1,25,45,27,-1,26,27,29,-1,26,29,28,-1,27,45,46,-1,27,46,29,-1,28,29,31,-1,28,31,30,-1,29,46,47,-1,29,47,31,-1,31,47,34,-1,32,33,48,-1,32,48,51,-1,32,51,35,-1,33,34,50,-1,33,49,48,-1,33,50,49,-1,34,47,50,-1,35,51,52,-1,35,52,36,-1,36,52,53,-1,36,53,37,-1,37,53,54,-1,37,54,38,-1,38,54,55,-1,38,55,39,-1,39,55,56,-1,39,56,40,-1,40,56,57,-1,40,57,41,-1,41,57,58,-1,41,58,42,-1,42,58,59,-1,42,59,43,-1,43,59,60,-1,43,60,44,-1,44,60,61,-1,44,61,45,-1,45,61,62,-1,45,62,46,-1,46,62,63,-1,46,63,47,-1,47,63,50,-1,48,49,64,-1,48,64,67,-1,48,67,51,-1,49,50,66,-1,49,65,64,-1,49,66,65,-1,50,63,66,-1,51,67,68,-1,51,68,52,-1,52,68,69,-1,52,69,53,-1,53,69,70,-1,53,70,54,-1,54,70,71,-1,54,71,55,-1,55,71,72,-1,55,72,56,-1,56,72,73,-1,56,73,57,-1,57,73,74,-1,57,74,58,-1,58,74,75,-1,58,75,59,-1,59,75,76,-1,59,76,60,-1,60,76,77,-1,60,77,61,-1,61,77,78,-1,61,78,62,-1,62,78,79,-1,62,79,63,-1,63,79,66,-1,64,65,88,-1,64,88,89,-1,64,89,67,-1,65,66,81,-1,65,80,88,-1,65,81,80,-1,66,79,81,-1,67,82,68,-1,67,89,82,-1,68,82,83,-1,68,83,69,-1,69,83,90,-1,69,90,70,-1,70,90,91,-1,70,91,71,-1,71,91,92,-1,71,92,72,-1,72,92,93,-1,72,93,73,-1,73,93,94,-1,73,94,74,-1,74,84,75,-1,74,94,84,-1,75,84,85,-1,75,85,76,-1,76,85,95,-1,76,95,77,-1,77,86,78,-1,77,95,86,-1,78,86,87,-1,78,87,79,-1,79,87,81,-1,80,81,98,-1,80,96,88,-1,80,97,96,-1,80,98,97,-1,81,87,98,-1,82,89,100,-1,82,100,101,-1,82,101,83,-1,83,101,102,-1,83,102,90,-1,84,94,107,-1,84,107,108,-1,84,108,85,-1,85,108,109,-1,85,109,95,-1,86,95,110,-1,86,110,111,-1,86,111,87,-1,87,111,98,-1,88,96,99,-1,88,99,89,-1,89,99,100,-1,90,102,103,-1,90,103,91,-1,91,103,104,-1,91,104,92,-1,92,104,105,-1,92,105,93,-1,93,105,106,-1,93,106,94,-1,94,106,107,-1,95,109,110,-1,96,97,112,-1,96,112,115,-1,96,115,99,-1,97,98,114,-1,97,113,112,-1,97,114,113,-1,98,111,114,-1,99,115,116,-1,99,116,100,-1,100,116,117,-1,100,117,101,-1,101,117,118,-1,101,118,102,-1,102,118,119,-1,102,119,103,-1,103,119,120,-1,103,120,104,-1,104,120,121,-1,104,121,105,-1,105,121,122,-1,105,122,106,-1,106,122,123,-1,106,123,107,-1,107,123,124,-1,107,124,108,-1,108,124,125,-1,108,125,109,-1,109,125,126,-1,109,126,110,-1,110,126,127,-1,110,127,111,-1,111,127,114,-1,112,113,115,-1,113,114,127,-1,113,116,115,-1,113,117,116,-1,113,118,117,-1,113,119,118,-1,113,120,119,-1,113,121,120,-1,113,122,121,-1,113,123,122,-1,113,124,123,-1,113,125,124,-1,113,126,125,-1,113,127,126,-1};
			return value;
		}


		/** Define subarrays using type double[] */
		private double[] getCoordinate_6_22_point_1()
		{
			double[] value = {6.82036,1.17825,1.42688,6.81933,1.17308,1.42688,6.81933,1.17308,1.46554,6.82036,1.17825,1.46554,6.81933,1.18342,1.46554,6.81933,1.18342,1.42688,6.81641,1.16869,1.42688,6.81641,1.16869,1.46554,6.81202,1.16576,1.42688,6.81202,1.16576,1.46554,6.80685,1.16474,1.42688,6.80685,1.16474,1.46554,6.80168,1.16576,1.42688,6.80168,1.16576,1.46554,6.7973,1.16869,1.42688,6.7973,1.16869,1.46554,6.79437,1.17308,1.42688,6.79437,1.17308,1.46554,6.79334,1.17825,1.42688,6.79334,1.17825,1.46554,6.79437,1.18342,1.42688,6.79437,1.18342,1.46554,6.7973,1.1878,1.42688,6.7973,1.1878,1.46554,6.80168,1.19073,1.42688,6.80168,1.19073,1.46554,6.80685,1.19176,1.42688,6.80685,1.19176,1.46554,6.81202,1.19073,1.42688,6.81202,1.19073,1.46554,6.81641,1.1878,1.42688,6.81641,1.1878,1.46554,6.81583,1.17453,1.46926,6.81657,1.17825,1.46926,6.81583,1.18197,1.46926,6.81373,1.17137,1.46926,6.81057,1.16926,1.46926,6.80685,1.16852,1.46926,6.80313,1.16926,1.46926,6.79998,1.17137,1.46926,6.79787,1.17453,1.46926,6.79713,1.17825,1.46926,6.79787,1.18197,1.46926,6.79998,1.18512,1.46926,6.80313,1.18723,1.46926,6.80685,1.18797,1.46926,6.81057,1.18723,1.46926,6.81373,1.18512,1.46926,6.81583,1.17453,1.47931,6.81657,1.17825,1.47931,6.81583,1.18197,1.47931,6.81373,1.17137,1.47931,6.81057,1.16926,1.47931,6.80685,1.16852,1.47931,6.80313,1.16926,1.47931,6.79998,1.17137,1.47931,6.79787,1.17453,1.47931,6.79713,1.17825,1.47931,6.79787,1.18197,1.47931,6.79998,1.18512,1.47931,6.80313,1.18723,1.47931,6.80685,1.18797,1.47931,6.81057,1.18723,1.47931,6.81373,1.18512,1.47931,6.81284,1.17577,1.48249,6.81333,1.17825,1.48249,6.81284,1.18073,1.48249,6.81143,1.17367,1.48249,6.80933,1.17226,1.48249,6.80685,1.17177,1.48249,6.80437,1.17226,1.48249,6.80227,1.17367,1.48249,6.80087,1.17577,1.48249,6.80037,1.17825,1.48249,6.80087,1.18073,1.48249,6.80227,1.18283,1.48249,6.80437,1.18423,1.48249,6.80685,1.18473,1.48249,6.80933,1.18423,1.48249,6.81143,1.18283,1.48249,6.81333,1.17825,1.63981,6.81284,1.18073,1.63981,6.80933,1.17226,1.63981,6.80685,1.17177,1.63981,6.80227,1.18283,1.63981,6.80437,1.18423,1.63981,6.80933,1.18423,1.63981,6.81143,1.18283,1.63981,6.81284,1.17577,1.63981,6.81143,1.17367,1.63981,6.80437,1.17226,1.63981,6.80227,1.17367,1.63981,6.80087,1.17577,1.63981,6.80037,1.17825,1.63981,6.80087,1.18073,1.63981,6.80685,1.18473,1.63981,6.81443,1.17511,1.64066,6.81505,1.17825,1.64066,6.81443,1.18139,1.64066,6.81265,1.17245,1.64066};
			return value;
		}
		private double[] getCoordinate_6_22_point_2()
		{
			double[] value = {6.80999,1.17067,1.64066,6.80685,1.17004,1.64066,6.80371,1.17067,1.64066,6.80105,1.17245,1.64066,6.79927,1.17511,1.64066,6.79865,1.17825,1.64066,6.79927,1.18139,1.64066,6.80105,1.18405,1.64066,6.80371,1.18582,1.64066,6.80685,1.18645,1.64066,6.80999,1.18582,1.64066,6.81265,1.18405,1.64066,6.81443,1.17511,1.66362,6.81505,1.17825,1.66362,6.81443,1.18139,1.66362,6.81265,1.17245,1.66362,6.80999,1.17067,1.66362,6.80685,1.17004,1.66362,6.80371,1.17067,1.66362,6.80105,1.17245,1.66362,6.79927,1.17511,1.66362,6.79865,1.17825,1.66362,6.79927,1.18139,1.66362,6.80105,1.18405,1.66362,6.80371,1.18582,1.66362,6.80685,1.18645,1.66362,6.80999,1.18582,1.66362,6.81265,1.18405,1.66362};
			return value;
		}


		/** Define subarrays using type double[] */
		private double[] getNormal_6_23_vector_1()
		{
			double[] value = {1.0,-2.81274E-5,0.0,0.896592,-0.442857,0.0,0.855075,-0.34279,0.389028,0.858554,-2.51597E-5,0.512723,0.892767,0.369786,0.257343,0.923883,0.382676,0.0,0.658721,-0.752388,0.0,0.658772,-0.643923,0.389079,0.320695,-0.947182,0.0,0.362119,-0.847056,0.389058,-0.0661802,-0.997808,0.0,0.0104895,-0.921144,0.38908,-0.442857,-0.896592,0.0,-0.342777,-0.855067,0.389055,-0.752388,-0.658721,0.0,-0.643918,-0.658781,0.389072,-0.947182,-0.320695,0.0,-0.847074,-0.362138,0.389001,-0.99781,0.0661425,0.0,-0.92118,-0.010493,0.388996,-0.896543,0.442956,0.0,-0.855051,0.342839,0.389036,-0.658697,0.752408,0.0,-0.658748,0.643968,0.389045,-0.32071,0.947177,0.0,-0.362147,0.847076,0.388988,0.0661802,0.997808,0.0,-0.0104851,0.921176,0.389005,0.442886,0.896578,0.0,0.342831,0.855069,0.389004,0.752313,0.658806,0.0,0.64388,0.658826,0.38906,0.847039,-0.362221,0.388999,0.966325,-3.03931E-5,0.257323,0.793161,0.328599,0.512756,0.643922,-0.658781,0.389065,0.342769,-0.855069,0.389058,-0.0104777,-0.921145,0.389077,-0.362138,-0.847046,0.389061,-0.65873,-0.643969,0.389074,-0.855044,-0.34286,0.389032,-0.921178,0.0104697,0.389002,-0.847012,0.362275,0.389009,-0.643963,0.658751,0.389049,-0.342857,0.855053,0.389017,0.0104733,0.921177,0.389002,0.362265,0.847023,0.388995,0.658741,0.643985,0.389031,0.855011,-0.34289,0.38908,0.858479,-1.69924E-5,0.512848,0.892708,0.369883,0.257408,0.658753,-0.643937,0.389088,0.362116,-0.847068,0.389035,0.0105005,-0.921158,0.389047,-0.342804,-0.85506,0.389048,-0.643884,-0.658802,0.389095,-0.846993,-0.362249,0.389073,-0.921138,-0.0104869,0.389095,-0.855009,0.342868,0.389102,-0.658724,0.643986,0.389056,-0.362283,0.846968,0.389097,-0.0104443,0.921148,0.389073,0.342828,0.855031,0.38909,0.643976,0.658731,0.38906,0.846953,-0.362348,0.389068,0.966309,1.14151E-5,0.257385,0.793125,0.328591,0.512817,0.643953,-0.65874,0.389083,0.342769,-0.855068,0.389061,-0.0104506,-0.921163,0.389037,-0.362199,-0.847027,0.389047,-0.658734,-0.643965,0.389075,-0.854967,-0.342993,0.389084,-0.921135,0.0105358,0.389101,-0.847011,0.362191,0.389089,-0.643866,0.658825,0.389084,-0.342907,0.855011,0.389065,0.0105434,0.921138,0.389093,0.362147,0.847036,0.389075,0.658787,0.643906,0.389081,0.721606,-2.51476E-6,-0.692304,0.865924,0.358733,-0.348549,0.343652,-0.773865,-0.532011,0.0212804,-0.846468,-0.532014,-0.613666,0.583421,-0.532009,-0.343557,0.773904,-0.532015,0.304321,0.790156,-0.532017,0.583417,0.613696,-0.53198,0.790173,-0.304432,-0.531929,0.613652,-0.583489,-0.531951,-0.304224,-0.790224,-0.531971,-0.583517,-0.613645,-0.531928,-0.773864,-0.343793,-0.531922,-0.846495,-0.0213688,-0.531967,-0.79019,0.304345,-0.531953,-0.0214188,0.84647,-0.532005,0.77388,-0.343753,-0.531924,0.937297,-3.49765E-5,-0.348533,0.666658,0.276206,-0.692298,0.58358,-0.613587,-0.531926};
			return value;
		}
		private double[] getNormal_6_23_vector_2()
		{
			double[] value = {0.304388,-0.790162,-0.53197,-0.0213694,-0.846453,-0.532035,-0.343776,-0.773816,-0.532003,-0.613693,-0.583451,-0.531946,-0.790193,-0.30438,-0.531929,-0.846509,0.021303,-0.531948,-0.773865,0.343722,-0.531966,-0.583585,0.613559,-0.531953,-0.304167,0.79019,-0.532055,0.0212605,0.846497,-0.531968,0.343701,0.773815,-0.532053,0.613659,0.583456,-0.531979,0.896947,-0.303891,0.32115,0.138751,-5.1478E-6,0.990327,0.895216,0.370918,0.246997,0.622675,-0.545174,0.561303,0.366765,-0.741895,0.561315,0.0548014,-0.82578,0.561324,-0.265583,-0.783831,0.561315,-0.545306,-0.62256,0.561303,-0.741944,-0.366681,0.561305,-0.825775,-0.0548425,0.561327,-0.783854,0.265531,0.561308,-0.622675,0.545174,0.561303,-0.366671,0.741932,0.561328,-0.0546964,0.825804,0.561299,0.265384,0.783889,0.561328,0.545306,0.62256,0.561303};
			return value;
		}


		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_28_coordIndex_1()
		{
			int[] value = {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,32,-1,2,32,35,-1,2,35,19,-1,3,18,34,-1,3,33,32,-1,3,34,33,-1,4,5,18,-1,5,6,31,-1,5,31,18,-1,6,7,30,-1,6,30,31,-1,7,8,29,-1,7,29,30,-1,8,9,28,-1,8,28,29,-1,9,10,27,-1,9,27,28,-1,10,11,26,-1,10,26,27,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,18,31,34,-1,19,35,36,-1,19,36,20,-1,20,36,37,-1,20,37,21,-1,21,37,38,-1,21,38,22,-1,22,38,39,-1,22,39,23,-1,23,39,40,-1,23,40,24,-1,24,40,41,-1,24,41,25,-1,25,41,42,-1,25,42,26,-1,26,42,43,-1,26,43,27,-1,27,43,44,-1,27,44,28,-1,28,44,45,-1,28,45,29,-1,29,45,46,-1,29,46,30,-1,30,46,47,-1,30,47,31,-1,31,47,34,-1,32,33,48,-1,32,48,51,-1,32,51,35,-1,33,34,50,-1,33,49,48,-1,33,50,49,-1,34,47,50,-1,35,51,52,-1,35,52,36,-1,36,52,53,-1,36,53,37,-1,37,53,54,-1,37,54,38,-1,38,54,55,-1,38,55,39,-1,39,55,56,-1,39,56,40,-1,40,56,57,-1,40,57,41,-1,41,57,58,-1,41,58,42,-1,42,58,59,-1,42,59,43,-1,43,59,60,-1,43,60,44,-1,44,60,61,-1,44,61,45,-1,45,61,62,-1,45,62,46,-1,46,62,63,-1,46,63,47,-1,47,63,50,-1,48,49,64,-1,48,64,67,-1,48,67,51,-1,49,50,66,-1,49,65,64,-1,49,66,65,-1,50,63,66,-1,51,67,68,-1,51,68,52,-1,52,68,69,-1,52,69,53,-1,53,69,70,-1,53,70,54,-1,54,70,71,-1,54,71,55,-1,55,71,72,-1,55,72,56,-1,56,72,73,-1,56,73,57,-1,57,73,74,-1,57,74,58,-1,58,74,75,-1,58,75,59,-1,59,75,76,-1,59,76,60,-1,60,76,77,-1,60,77,61,-1,61,77,78,-1,61,78,62,-1,62,78,79,-1,62,79,63,-1,63,79,66,-1,64,65,80,-1,64,80,83,-1,64,83,67,-1,65,66,82,-1,65,81,80,-1,65,82,81,-1,66,79,82,-1,67,83,84,-1,67,84,68,-1,68,84,85,-1,68,85,69,-1,69,85,86,-1,69,86,70,-1,70,86,87,-1,70,87,71,-1,71,87,88,-1,71,88,72,-1,72,88,89,-1,72,89,73,-1,73,89,90,-1,73,90,74,-1,74,90,91,-1,74,91,75,-1,75,91,92,-1,75,92,76,-1,76,92,93,-1,76,93,77,-1,77,93,94,-1,77,94,78,-1,78,94,95,-1,78,95,79,-1,79,95,82,-1,80,81,96,-1,80,96,99,-1,80,99,83,-1,81,82,98,-1,81,97,96,-1,81,98,97,-1,82,95,98,-1,83,99,100,-1,83,100,84,-1,84,100,101,-1,84,101,85,-1,85,101,102,-1,85,102,86,-1,86,102,103,-1,86,103,87,-1,87,103,104,-1,87,104,88,-1,88,104,105,-1,88,105,89,-1,89,105,106,-1,89,106,90,-1,90,106,107,-1,90,107,91,-1,91,107,108,-1,91,108,92,-1,92,108,109,-1,92,109,93,-1,93,109,110,-1,93,110,94,-1,94,110,111,-1,94,111,95,-1,95,111,98,-1};
			return value;
		}


		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_28_normalIndex_1()
		{
			int[] value = {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,32,-1,2,32,35,-1,2,35,19,-1,3,18,34,-1,3,33,32,-1,3,34,33,-1,4,5,18,-1,5,6,31,-1,5,31,18,-1,6,7,30,-1,6,30,31,-1,7,8,29,-1,7,29,30,-1,8,9,28,-1,8,28,29,-1,9,10,27,-1,9,27,28,-1,10,11,26,-1,10,26,27,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,18,31,34,-1,19,35,36,-1,19,36,20,-1,20,36,37,-1,20,37,21,-1,21,37,38,-1,21,38,22,-1,22,38,39,-1,22,39,23,-1,23,39,40,-1,23,40,24,-1,24,40,41,-1,24,41,25,-1,25,41,42,-1,25,42,26,-1,26,42,43,-1,26,43,27,-1,27,43,44,-1,27,44,28,-1,28,44,45,-1,28,45,29,-1,29,45,46,-1,29,46,30,-1,30,46,47,-1,30,47,31,-1,31,47,34,-1,32,33,48,-1,32,48,51,-1,32,51,35,-1,33,34,50,-1,33,49,48,-1,33,50,49,-1,34,47,50,-1,35,51,52,-1,35,52,36,-1,36,52,53,-1,36,53,37,-1,37,53,54,-1,37,54,38,-1,38,54,55,-1,38,55,39,-1,39,55,56,-1,39,56,40,-1,40,56,57,-1,40,57,41,-1,41,57,58,-1,41,58,42,-1,42,58,59,-1,42,59,43,-1,43,59,60,-1,43,60,44,-1,44,60,61,-1,44,61,45,-1,45,61,62,-1,45,62,46,-1,46,62,63,-1,46,63,47,-1,47,63,50,-1,48,49,64,-1,48,64,67,-1,48,67,51,-1,49,50,66,-1,49,65,64,-1,49,66,65,-1,50,63,66,-1,51,67,68,-1,51,68,52,-1,52,68,69,-1,52,69,53,-1,53,69,70,-1,53,70,54,-1,54,70,71,-1,54,71,55,-1,55,71,72,-1,55,72,56,-1,56,72,73,-1,56,73,57,-1,57,73,74,-1,57,74,58,-1,58,74,75,-1,58,75,59,-1,59,75,76,-1,59,76,60,-1,60,76,77,-1,60,77,61,-1,61,77,78,-1,61,78,62,-1,62,78,79,-1,62,79,63,-1,63,79,66,-1,64,65,80,-1,64,80,83,-1,64,83,67,-1,65,66,82,-1,65,81,80,-1,65,82,81,-1,66,79,82,-1,67,83,84,-1,67,84,68,-1,68,84,85,-1,68,85,69,-1,69,85,86,-1,69,86,70,-1,70,86,87,-1,70,87,71,-1,71,87,88,-1,71,88,72,-1,72,88,89,-1,72,89,73,-1,73,89,90,-1,73,90,74,-1,74,90,91,-1,74,91,75,-1,75,91,92,-1,75,92,76,-1,76,92,93,-1,76,93,77,-1,77,93,94,-1,77,94,78,-1,78,94,95,-1,78,95,79,-1,79,95,82,-1,80,81,96,-1,80,96,99,-1,80,99,83,-1,81,82,98,-1,81,97,96,-1,81,98,97,-1,82,95,98,-1,83,99,100,-1,83,100,84,-1,84,100,101,-1,84,101,85,-1,85,101,102,-1,85,102,86,-1,86,102,103,-1,86,103,87,-1,87,103,104,-1,87,104,88,-1,88,104,105,-1,88,105,89,-1,89,105,106,-1,89,106,90,-1,90,106,107,-1,90,107,91,-1,91,107,108,-1,91,108,92,-1,92,108,109,-1,92,109,93,-1,93,109,110,-1,93,110,94,-1,94,110,111,-1,94,111,95,-1,95,111,98,-1};
			return value;
		}


		/** Define subarrays using type double[] */
		private double[] getCoordinate_6_28_point_1()
		{
			double[] value = {6.86472,1.20176,1.35096,6.86472,1.20162,1.35164,6.86394,1.20301,1.35221,6.86395,1.20326,1.35096,6.86472,1.20162,1.35029,6.86471,1.20124,1.34972,6.8647,1.20067,1.34934,6.8647,1.2,1.3492,6.86469,1.19932,1.34934,6.86468,1.19875,1.34972,6.86468,1.19837,1.35029,6.86467,1.19824,1.35096,6.86468,1.19837,1.35164,6.86468,1.19875,1.35221,6.86469,1.19932,1.35259,6.8647,1.2,1.35273,6.8647,1.20067,1.35259,6.86471,1.20124,1.35221,6.86394,1.20301,1.34972,6.86394,1.20231,1.35327,6.86392,1.20125,1.35397,6.86391,1.20001,1.35422,6.86389,1.19876,1.35397,6.86388,1.19771,1.35327,6.86387,1.197,1.35221,6.86387,1.19675,1.35096,6.86387,1.197,1.34972,6.86388,1.19771,1.34866,6.86389,1.19876,1.34796,6.86391,1.20001,1.34771,6.86392,1.20125,1.34796,6.86394,1.20231,1.34866,6.85678,1.20402,1.35259,6.85678,1.20435,1.35096,6.85678,1.20402,1.34934,6.85677,1.2031,1.35397,6.85675,1.20172,1.35489,6.85673,1.2001,1.35522,6.85671,1.19847,1.35489,6.85669,1.19709,1.35397,6.85668,1.19617,1.35259,6.85668,1.19585,1.35096,6.85668,1.19617,1.34934,6.85669,1.19709,1.34796,6.85671,1.19847,1.34704,6.85673,1.2001,1.34671,6.85675,1.20172,1.34704,6.85677,1.2031,1.34796,6.84832,1.20445,1.35273,6.84832,1.2048,1.35096,6.84832,1.20445,1.3492,6.84831,1.20345,1.35422,6.84829,1.20196,1.35522,6.84826,1.2002,1.35557,6.84824,1.19844,1.35522,6.84823,1.19695,1.35422,6.84821,1.19595,1.35273,6.84821,1.1956,1.35096,6.84821,1.19595,1.3492,6.84823,1.19695,1.34771,6.84824,1.19844,1.34671,6.84826,1.2002,1.34636,6.84829,1.20196,1.34671,6.84831,1.20345,1.34771,6.83985,1.20423,1.35259,6.83985,1.20456,1.35096,6.83985,1.20423,1.34934,6.83984,1.20331,1.35397,6.83982,1.20193,1.35489,6.8398,1.20031,1.35522,6.83978,1.19868,1.35489,6.83976,1.1973,1.35397,6.83975,1.19638,1.35259,6.83975,1.19605,1.35096,6.83975,1.19638,1.34934,6.83976,1.1973,1.34796,6.83978,1.19868,1.34704,6.8398,1.20031,1.34671,6.83982,1.20193,1.34704,6.83984,1.20331,1.34796,6.83266,1.2034,1.35221,6.83266,1.20365,1.35096,6.83266,1.2034,1.34972,6.83265,1.20269,1.35327,6.83264,1.20164,1.35397,6.83262,1.20039,1.35422,6.83261,1.19915,1.35397,6.83259,1.19809,1.35327,6.83259,1.19739,1.35221,6.83258,1.19714,1.35096,6.83259,1.19739,1.34972,6.83259,1.19809,1.34866,6.83261,1.19915,1.34796,6.83262,1.20039,1.34771,6.83264,1.20164,1.34796,6.83265,1.20269,1.34866,6.82785,1.20208,1.35164,6.82785,1.20221,1.35096,6.82785,1.20208,1.35029,6.82784,1.2017,1.35221};
			return value;
		}
		private double[] getCoordinate_6_28_point_2()
		{
			double[] value = {6.82784,1.20113,1.35259,6.82783,1.20045,1.35273,6.82782,1.19978,1.35259,6.82781,1.19921,1.35221,6.82781,1.19883,1.35164,6.82781,1.19869,1.35096,6.82781,1.19883,1.35029,6.82781,1.19921,1.34972,6.82782,1.19978,1.34934,6.82783,1.20045,1.3492,6.82784,1.20113,1.34934,6.82784,1.2017,1.34972};
			return value;
		}


		/** Define subarrays using type double[] */
		private double[] getNormal_6_29_vector_1()
		{
			double[] value = {0.995592,0.0937951,-1.76949E-5,0.936805,0.311407,0.159446,0.586104,0.739935,0.330119,0.441935,0.897047,-9.59115E-5,0.950617,0.285037,-0.122803,0.959849,0.205932,-0.190479,0.958978,0.115836,-0.258733,0.957571,0.00765403,-0.288095,0.956231,-0.104695,-0.273244,0.954994,-0.201909,-0.217299,0.954151,-0.270646,-0.127856,0.953719,-0.300084,-0.019229,0.953945,-0.285286,0.0927435,0.954601,-0.22916,0.190322,0.95581,-0.139767,0.258637,0.957075,-0.0305199,0.288229,0.958602,0.080142,0.27324,0.959534,0.179122,0.21728,0.713797,0.645818,-0.270948,0.583682,0.557076,0.590747,0.580634,0.287616,0.76167,0.576822,-0.0262534,0.816448,0.572827,-0.337136,0.747133,0.569621,-0.598234,0.563602,0.567336,-0.768824,0.295026,0.566733,-0.823675,-0.0193008,0.567467,-0.754441,-0.329847,0.569981,-0.570831,-0.590994,0.573227,-0.301998,-0.761714,0.577114,0.0118064,-0.816579,0.581138,0.323051,-0.746938,0.584118,0.583715,-0.563988,0.100944,0.918964,0.381204,0.0858556,0.996308,-6.48302E-5,0.117018,0.917411,-0.380348,0.0982926,0.7029,0.704465,0.0942906,0.379607,0.92033,0.0895493,-0.0014165,0.995981,0.0848679,-0.382297,0.920134,0.0809166,-0.705579,0.703997,0.0782654,-0.92135,0.380773,0.0773542,-0.997004,-4.25866E-4,0.078257,-0.921125,-0.381319,0.0809073,-0.705179,-0.704398,0.0849043,-0.381802,-0.920336,0.089604,-7.97097E-4,-0.995977,0.0942548,0.380067,-0.920144,0.0982739,0.703209,-0.704159,0.0113841,0.92384,0.382609,-0.00150262,0.999999,-4.07805E-5,0.025148,0.923522,-0.38272,0.00871463,0.707048,0.707112,0.00472037,0.382491,0.923947,-4.90831E-7,-1.70388E-5,1.0,-0.00471457,-0.382581,0.92391,-0.00872648,-0.707042,0.707118,-0.0113928,-0.923818,0.382663,-0.0123076,-0.999924,-7.05047E-5,-0.0113772,-0.923725,-0.382886,-0.00874227,-0.707088,-0.707072,-0.00473758,-0.382689,-0.923865,3.86398E-6,-2.99085E-5,-1.0,0.00475293,0.382751,-0.923839,0.0086733,0.706906,-0.707254,-0.0782562,0.92129,0.38092,-0.0933331,0.995635,-9.79937E-5,-0.0621575,0.922204,-0.381675,-0.0809439,0.705693,0.703879,-0.0848506,0.382428,0.920081,-0.089554,0.0014179,0.995981,-0.0942879,-0.379845,0.920232,-0.0983136,-0.702756,0.704605,-0.100927,-0.918866,0.381444,-0.10188,-0.994797,2.47903E-4,-0.100935,-0.918986,-0.381151,-0.0982724,-0.703268,-0.7041,-0.0942739,-0.38017,-0.920099,-0.0896134,7.35781E-4,-0.995976,-0.0848842,0.382047,-0.920236,-0.0808732,0.705149,-0.704432,-0.207039,0.904579,0.372654,-0.232812,0.972522,-1.45231E-4,-0.180239,0.909017,-0.375769,-0.209616,0.693494,0.689294,-0.21365,0.377393,0.901071,-0.218223,0.00398621,0.975891,-0.22281,-0.369652,0.902061,-0.226627,-0.686674,0.690738,-0.229371,-0.898298,0.374766,-0.230308,-0.973117,0.00105741,-0.229331,-0.899257,-0.372483,-0.226703,-0.687951,-0.689441,-0.222847,-0.371922,-0.901118,-0.218161,0.00186782,-0.975911,-0.213623,0.375022,-0.902066,-0.209681,0.691851,-0.690924,-0.285476,0.908099,0.306364,-0.285376,0.958416,-2.07622E-4,-0.286301,0.885588,-0.365739,-0.287653,0.721797,0.629495};
			return value;
		}
		private double[] getNormal_6_29_vector_2()
		{
			double[] value = {-0.291362,0.426711,0.856169,-0.295915,0.0667911,0.952876,-0.300512,-0.301963,0.904716,-0.304297,-0.625582,0.718367,-0.307069,-0.852554,0.422918,-0.308431,-0.949152,0.0630944,-0.307809,-0.900836,-0.306183,-0.305445,-0.714661,-0.629256,-0.30186,-0.419401,-0.856144,-0.297411,-0.0593871,-0.952901,-0.292811,0.310141,-0.904474,-0.28886,0.632737,-0.718473};
			return value;
		}


		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_34_coordIndex_1()
		{
			int[] value = {0,1,33,-1,0,2,1,-1,0,3,2,-1,0,4,3,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,17,-1,0,19,18,-1,0,20,19,-1,0,21,20,-1,0,22,21,-1,0,23,22,-1,0,24,23,-1,0,26,25,-1,0,27,26,-1,0,28,27,-1,0,29,28,-1,0,30,29,-1,0,31,30,-1,0,32,31,-1,0,33,32,-1,4,5,6,-1,4,6,7,-1,4,7,8,-1,4,8,86,-1,4,83,39,-1,4,84,83,-1,4,85,84,-1,4,86,85,-1,8,9,58,-1,8,58,67,-1,8,67,68,-1,8,68,69,-1,8,69,70,-1,8,70,73,-1,8,73,89,-1,8,87,86,-1,8,88,87,-1,8,89,88,-1,9,10,58,-1,10,11,58,-1,11,12,58,-1,12,13,66,-1,12,66,58,-1,13,14,96,-1,13,96,66,-1,14,15,40,-1,14,40,43,-1,14,43,57,-1,14,57,96,-1,15,16,40,-1,16,17,40,-1,17,18,40,-1,18,19,22,-1,18,22,76,-1,18,50,51,-1,18,51,54,-1,18,54,55,-1,18,55,56,-1,18,56,40,-1,18,76,82,-1,18,80,50,-1,18,81,80,-1,18,82,81,-1,19,20,22,-1,20,21,22,-1,22,34,79,-1,22,77,76,-1,22,78,77,-1,22,79,78,-1,25,26,39,-1,25,39,36,-1,26,27,39,-1,27,28,39,-1,28,29,39,-1,29,30,39,-1,30,31,39,-1,31,32,39,-1,32,33,39,-1,33,37,39,-1,34,35,39,-1,34,39,79,-1,35,36,39,-1,37,38,39,-1,39,57,93,-1,39,66,96,-1,39,76,77,-1,39,77,78,-1,39,78,79,-1,39,83,84,-1,39,84,85,-1,39,85,86,-1,39,86,90,-1,39,90,91,-1,39,91,92,-1,39,92,66,-1,39,93,94,-1,39,94,95,-1,39,95,76,-1,39,96,57,-1,40,41,42,-1,40,42,43,-1,40,51,52,-1,40,52,53,-1,40,54,51,-1,40,55,54,-1,40,56,55,-1,43,44,57,-1,44,45,46,-1,44,46,47,-1,44,47,48,-1,44,48,49,-1,44,49,50,-1,44,50,80,-1,44,76,95,-1,44,80,81,-1,44,81,82,-1,44,82,76,-1,44,93,57,-1,44,94,93,-1,44,95,94,-1,58,59,60,-1,58,60,61,-1,58,61,72,-1,58,66,65,-1,58,68,67,-1,58,69,68,-1,58,70,69,-1,58,71,70,-1,58,72,71,-1,62,63,64,-1,62,64,65,-1,62,65,66,-1,62,66,92,-1,62,73,74,-1,62,74,75,-1,62,86,87,-1,62,87,88,-1,62,88,89,-1,62,89,73,-1,62,90,86,-1,62,91,90,-1,62,92,91,-1,97,99,98,-1,97,100,99,-1,97,101,100,-1,97,102,101,-1,97,103,102,-1,97,104,103,-1,97,105,104,-1};
			return value;
		}


		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_34_normalIndex_1()
		{
			int[] value = {0,1,33,-1,0,2,1,-1,0,3,2,-1,0,4,3,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,17,-1,0,19,18,-1,0,20,19,-1,0,21,20,-1,0,22,21,-1,0,23,22,-1,0,24,23,-1,0,26,25,-1,0,27,26,-1,0,28,27,-1,0,29,28,-1,0,30,29,-1,0,31,30,-1,0,32,31,-1,0,33,32,-1,4,5,6,-1,4,6,7,-1,4,7,8,-1,4,8,86,-1,4,83,39,-1,4,84,83,-1,4,85,84,-1,4,86,85,-1,8,9,58,-1,8,58,67,-1,8,67,68,-1,8,68,69,-1,8,69,70,-1,8,70,73,-1,8,73,89,-1,8,87,86,-1,8,88,87,-1,8,89,88,-1,9,10,58,-1,10,11,58,-1,11,12,58,-1,12,13,66,-1,12,66,58,-1,13,14,96,-1,13,96,66,-1,14,15,40,-1,14,40,43,-1,14,43,57,-1,14,57,96,-1,15,16,40,-1,16,17,40,-1,17,18,40,-1,18,19,22,-1,18,22,76,-1,18,50,51,-1,18,51,54,-1,18,54,55,-1,18,55,56,-1,18,56,40,-1,18,76,82,-1,18,80,50,-1,18,81,80,-1,18,82,81,-1,19,20,22,-1,20,21,22,-1,22,34,79,-1,22,77,76,-1,22,78,77,-1,22,79,78,-1,25,26,39,-1,25,39,36,-1,26,27,39,-1,27,28,39,-1,28,29,39,-1,29,30,39,-1,30,31,39,-1,31,32,39,-1,32,33,39,-1,33,37,39,-1,34,35,39,-1,34,39,79,-1,35,36,39,-1,37,38,39,-1,39,57,93,-1,39,66,96,-1,39,76,77,-1,39,77,78,-1,39,78,79,-1,39,83,84,-1,39,84,85,-1,39,85,86,-1,39,86,90,-1,39,90,91,-1,39,91,92,-1,39,92,66,-1,39,93,94,-1,39,94,95,-1,39,95,76,-1,39,96,57,-1,40,41,42,-1,40,42,43,-1,40,51,52,-1,40,52,53,-1,40,54,51,-1,40,55,54,-1,40,56,55,-1,43,44,57,-1,44,45,46,-1,44,46,47,-1,44,47,48,-1,44,48,49,-1,44,49,50,-1,44,50,80,-1,44,76,95,-1,44,80,81,-1,44,81,82,-1,44,82,76,-1,44,93,57,-1,44,94,93,-1,44,95,94,-1,58,59,60,-1,58,60,61,-1,58,61,72,-1,58,66,65,-1,58,68,67,-1,58,69,68,-1,58,70,69,-1,58,71,70,-1,58,72,71,-1,62,63,64,-1,62,64,65,-1,62,65,66,-1,62,66,92,-1,62,73,74,-1,62,74,75,-1,62,86,87,-1,62,87,88,-1,62,88,89,-1,62,89,73,-1,62,90,86,-1,62,91,90,-1,62,92,91,-1,97,99,98,-1,97,100,99,-1,97,101,100,-1,97,102,101,-1,97,103,102,-1,97,104,103,-1,97,105,104,-1};
			return value;
		}


		/** Define subarrays using type double[] */
		private double[] getCoordinate_6_34_point_1()
		{
			double[] value = {6.7509,1.07637,1.45261,6.86354,1.07637,1.45261,6.87164,1.07787,1.45261,6.87746,1.0843,1.45261,6.87761,1.09371,1.45261,6.87761,1.11105,1.45261,6.87761,1.12838,1.45261,6.87761,1.14572,1.45261,6.87761,1.16306,1.45261,6.86354,1.16306,1.45261,6.84946,1.16306,1.45261,6.83538,1.16306,1.45261,6.8213,1.16306,1.45261,6.80722,1.16306,1.45261,6.79314,1.16306,1.45261,6.77906,1.16306,1.45261,6.76498,1.16306,1.45261,6.7509,1.16306,1.45261,6.73682,1.16306,1.45261,6.73682,1.14572,1.45261,6.73682,1.12838,1.45261,6.73682,1.11105,1.45261,6.73682,1.09371,1.45261,6.73697,1.0843,1.45261,6.74279,1.07787,1.45261,6.7509,1.07637,1.45641,6.76498,1.07637,1.45641,6.77906,1.07637,1.45641,6.79314,1.07637,1.45641,6.80722,1.07637,1.45641,6.8213,1.07637,1.45641,6.83538,1.07637,1.45641,6.84946,1.07637,1.45641,6.86354,1.07637,1.45641,6.73682,1.09371,1.45641,6.73697,1.0843,1.45641,6.74279,1.07787,1.45641,6.87164,1.07787,1.45641,6.87746,1.0843,1.45641,6.87761,1.09371,1.45641,6.7509,1.24974,1.45261,6.76498,1.24974,1.45261,6.77906,1.24974,1.45261,6.79139,1.24533,1.45261,6.79139,1.24533,1.45641,6.77906,1.24974,1.45641,6.76498,1.24974,1.45641,6.7509,1.24974,1.45641,6.74425,1.24789,1.45641,6.73902,1.24481,1.45641,6.73682,1.23241,1.45641,6.73682,1.23241,1.45261,6.73902,1.24481,1.45261,6.74425,1.24789,1.45261,6.73682,1.21507,1.45261,6.73682,1.19773,1.45261,6.73682,1.18039,1.45261,6.79314,1.16306,1.45641,6.82304,1.24533,1.45261,6.83538,1.24974,1.45261,6.84946,1.24974,1.45261,6.86354,1.24974,1.45261,6.86354,1.24974,1.45641,6.84946,1.24974,1.45641,6.83538,1.24974,1.45641,6.82304,1.24533,1.45641,6.8213,1.16306,1.45641,6.87761,1.18039,1.45261,6.87761,1.19773,1.45261,6.87761,1.21507,1.45261,6.87761,1.23241,1.45261,6.87542,1.24481,1.45261,6.87018,1.24789,1.45261,6.87761,1.23241,1.45641,6.87542,1.24481,1.45641,6.87018,1.24789,1.45641,6.73682,1.16306,1.45641,6.73682,1.14572,1.45641,6.73682,1.12838,1.45641,6.73682,1.11105,1.45641,6.73682,1.21507,1.45641,6.73682,1.19773,1.45641,6.73682,1.18039,1.45641,6.87761,1.11105,1.45641,6.87761,1.12838,1.45641,6.87761,1.14572,1.45641,6.87761,1.16306,1.45641,6.87761,1.18039,1.45641,6.87761,1.19773,1.45641,6.87761,1.21507,1.45641,6.86354,1.16306,1.45641,6.84946,1.16306,1.45641,6.83538,1.16306,1.45641,6.77906,1.16306,1.45641,6.76498,1.16306,1.45641,6.7509,1.16306,1.45641,6.80722,1.16306,1.45641,6.7509,1.07637,1.45261,6.76498,1.07637,1.45261,6.77906,1.07637,1.45261};
			return value;
		}
		private double[] getCoordinate_6_34_point_2()
		{
			double[] value = {6.79314,1.07637,1.45261,6.80722,1.07637,1.45261,6.8213,1.07637,1.45261,6.83538,1.07637,1.45261,6.84946,1.07637,1.45261,6.86354,1.07637,1.45261};
			return value;
		}


		/** Define subarrays using type double[] */
		private double[] getNormal_6_35_vector_1()
		{
			double[] value = {-4.57425E-17,-0.364399,-0.931243,0.0,-0.707107,-0.707107,-5.64879E-16,0.0,-1.0,-5.64879E-16,0.0,-1.0,0.928477,0.0,-0.371391,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.83205,0.0,-0.5547,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,-0.300864,0.307314,-0.902795,0.0,0.83205,-0.5547,0.217729,0.440176,-0.871114,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,-0.83205,0.0,-0.5547,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,-0.928477,0.0,-0.371391,0.0,0.0,-1.0,0.0,0.0,-1.0,3.52223E-15,-0.447214,0.894427,0.0,-0.707107,0.707107,0.0,-0.707107,0.707107,0.0,-0.707107,0.707107,0.0,-0.707107,0.707107,0.0,-0.707107,0.707107,0.0,-0.707107,0.707107,0.0,-0.707107,0.707107,-7.69865E-15,-0.707107,0.707107,-0.447214,0.0,0.894427,-1.80868E-15,0.0,1.0,2.12929E-15,0.0,1.0,2.13939E-14,0.0,1.0,6.45628E-14,0.0,1.0,0.0370117,0.0,0.999315,0.0,0.0,-1.0,0.0,0.0,0.0,0.0,0.0,-1.0,0.706948,0.0149971,-0.707107,0.0766792,0.00162666,0.997054,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.83937E-15,0.0,1.0,-0.707107,0.0,0.707107,-0.447214,0.0,-0.894427,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.53279,0.277758,0.799365,-0.152023,0.00322499,-0.988372,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,-4.12847E-14,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,-0.447113,0.00948499,0.894427,-0.406721,0.415441,0.813626,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.447214,0.0,-0.894427,2.05166E-15,0.0,-1.0,2.05166E-15,0.0,-1.0,0.707107,0.0,0.707107,-8.07864E-14,0.0,1.0,-1.61573E-13,0.0,1.0,-0.6,0.0,0.8,-0.707107,0.0,0.707107,-0.707107,0.0,0.707107,-0.707107,0.0,0.707107,-0.707107,0.0,0.707107,-0.707107,0.0,0.707107,-0.707107,0.0,0.707107,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.707107,0.0,0.707107,0.707107,0.0,0.707107,0.707107,0.0,0.707107,0.707107,0.0,0.707107,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.83205,0.5547,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0};
			return value;
		}
		private double[] getNormal_6_35_vector_2()
		{
			double[] value = {0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0};
			return value;
		}


		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_40_coordIndex_1()
		{
			int[] value = {0,1,9,-1,0,2,1,-1,0,3,2,-1,0,4,3,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,14,-1,0,9,8,-1,0,10,7,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,1,2,22,-1,1,15,9,-1,1,16,15,-1,1,17,16,-1,1,18,17,-1,1,19,18,-1,1,20,19,-1,1,21,25,-1,1,22,21,-1,1,23,20,-1,1,24,23,-1,1,25,24,-1,2,3,30,-1,2,30,31,-1,2,31,22,-1,3,4,28,-1,3,28,29,-1,3,29,30,-1,4,5,27,-1,4,27,28,-1,5,6,27,-1,6,7,35,-1,6,26,27,-1,6,35,42,-1,6,38,26,-1,6,39,38,-1,6,40,39,-1,6,41,40,-1,6,42,41,-1,7,10,37,-1,7,36,35,-1,7,37,36,-1,8,9,29,-1,8,26,14,-1,8,27,26,-1,8,28,27,-1,8,29,28,-1,9,15,16,-1,9,16,17,-1,9,17,34,-1,9,30,29,-1,9,31,30,-1,9,32,31,-1,9,33,32,-1,9,34,33,-1,10,11,12,-1,10,12,13,-1,10,13,38,-1,10,38,39,-1,10,39,40,-1,10,40,41,-1,10,41,42,-1,10,42,37,-1,13,14,46,-1,13,45,38,-1,13,46,45,-1,14,26,43,-1,14,43,46,-1,17,18,65,-1,17,65,34,-1,18,19,51,-1,18,51,65,-1,19,20,51,-1,20,23,74,-1,20,47,51,-1,20,74,47,-1,21,22,31,-1,21,31,32,-1,21,32,53,-1,21,47,58,-1,21,53,47,-1,21,56,25,-1,21,57,56,-1,21,58,57,-1,23,24,25,-1,23,25,74,-1,25,56,74,-1,26,38,45,-1,26,44,43,-1,26,45,44,-1,32,33,55,-1,32,54,53,-1,32,55,54,-1,33,34,59,-1,33,59,60,-1,33,60,61,-1,33,61,70,-1,33,66,51,-1,33,67,66,-1,33,68,67,-1,33,69,68,-1,33,70,69,-1,34,65,59,-1,35,36,42,-1,36,37,42,-1,47,48,51,-1,47,52,48,-1,47,53,52,-1,47,74,83,-1,47,83,58,-1,48,49,51,-1,48,52,49,-1,49,50,51,-1,49,52,50,-1,50,52,51,-1,51,62,63,-1,51,63,65,-1,51,66,73,-1,51,71,62,-1,51,72,71,-1,51,73,72,-1,56,57,87,-1,56,83,74,-1,56,85,84,-1,56,86,85,-1,56,87,86,-1,57,58,87,-1,58,88,87,-1,59,61,60,-1,59,62,61,-1,59,63,62,-1,59,64,63,-1,59,65,64,-1,61,62,70,-1,62,71,70,-1,63,64,65,-1,66,67,78,-1,66,78,81,-1,66,81,73,-1,67,68,80,-1,67,79,78,-1,67,80,79,-1,68,69,80,-1,69,70,77,-1,69,77,80,-1,70,71,76,-1,70,75,77,-1,70,76,75,-1,71,72,82,-1,71,82,76,-1,72,73,82,-1,73,81,82,-1,75,76,82,-1,75,82,77,-1,77,82,80,-1,78,79,81,-1,79,80,81,-1,80,82,81,-1};
			return value;
		}


		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_40_normalIndex_1()
		{
			int[] value = {0,1,9,-1,0,2,1,-1,0,3,2,-1,0,4,3,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,14,-1,0,9,8,-1,0,10,7,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,1,2,22,-1,1,15,9,-1,1,16,15,-1,1,17,16,-1,1,18,17,-1,1,19,18,-1,1,20,19,-1,1,21,25,-1,1,22,21,-1,1,23,20,-1,1,24,23,-1,1,25,24,-1,2,3,30,-1,2,30,31,-1,2,31,22,-1,3,4,28,-1,3,28,29,-1,3,29,30,-1,4,5,27,-1,4,27,28,-1,5,6,27,-1,6,7,35,-1,6,26,27,-1,6,35,42,-1,6,38,26,-1,6,39,38,-1,6,40,39,-1,6,41,40,-1,6,42,41,-1,7,10,37,-1,7,36,35,-1,7,37,36,-1,8,9,29,-1,8,26,14,-1,8,27,26,-1,8,28,27,-1,8,29,28,-1,9,15,16,-1,9,16,17,-1,9,17,34,-1,9,30,29,-1,9,31,30,-1,9,32,31,-1,9,33,32,-1,9,34,33,-1,10,11,12,-1,10,12,13,-1,10,13,38,-1,10,38,39,-1,10,39,40,-1,10,40,41,-1,10,41,42,-1,10,42,37,-1,13,14,46,-1,13,45,38,-1,13,46,45,-1,14,26,43,-1,14,43,46,-1,17,18,65,-1,17,65,34,-1,18,19,51,-1,18,51,65,-1,19,20,51,-1,20,23,74,-1,20,47,51,-1,20,74,47,-1,21,22,31,-1,21,31,32,-1,21,32,53,-1,21,47,58,-1,21,53,47,-1,21,56,25,-1,21,57,56,-1,21,58,57,-1,23,24,25,-1,23,25,74,-1,25,56,74,-1,26,38,45,-1,26,44,43,-1,26,45,44,-1,32,33,55,-1,32,54,53,-1,32,55,54,-1,33,34,59,-1,33,59,60,-1,33,60,61,-1,33,61,70,-1,33,66,51,-1,33,67,66,-1,33,68,67,-1,33,69,68,-1,33,70,69,-1,34,65,59,-1,35,36,42,-1,36,37,42,-1,47,48,51,-1,47,52,48,-1,47,53,52,-1,47,74,83,-1,47,83,58,-1,48,49,51,-1,48,52,49,-1,49,50,51,-1,49,52,50,-1,50,52,51,-1,51,62,63,-1,51,63,65,-1,51,66,73,-1,51,71,62,-1,51,72,71,-1,51,73,72,-1,56,57,87,-1,56,83,74,-1,56,85,84,-1,56,86,85,-1,56,87,86,-1,57,58,87,-1,58,88,87,-1,59,61,60,-1,59,62,61,-1,59,63,62,-1,59,64,63,-1,59,65,64,-1,61,62,70,-1,62,71,70,-1,63,64,65,-1,66,67,78,-1,66,78,81,-1,66,81,73,-1,67,68,80,-1,67,79,78,-1,67,80,79,-1,68,69,80,-1,69,70,77,-1,69,77,80,-1,70,71,76,-1,70,75,77,-1,70,76,75,-1,71,72,82,-1,71,82,76,-1,72,73,82,-1,73,81,82,-1,75,76,82,-1,75,82,77,-1,77,82,80,-1,78,79,81,-1,79,80,81,-1,80,82,81,-1};
			return value;
		}




		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_46_coordIndex_1()
		{
			int[] value = {0,1,37,-1,0,2,1,-1,0,3,2,-1,0,4,3,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,38,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,17,-1,0,19,18,-1,0,20,19,-1,0,21,20,-1,0,22,21,-1,0,23,22,-1,0,24,23,-1,0,25,24,-1,0,26,25,-1,0,27,26,-1,0,28,27,-1,0,29,28,-1,0,30,29,-1,0,31,30,-1,0,32,31,-1,0,33,32,-1,0,34,33,-1,0,35,34,-1,0,36,35,-1,0,37,36,-1,0,38,10,-1,1,2,39,-1,1,39,37,-1,2,3,10,-1,2,10,39,-1,3,4,10,-1,4,5,10,-1,5,6,10,-1,6,7,10,-1,7,8,10,-1,8,9,10,-1,10,38,40,-1,10,40,41,-1,10,41,42,-1,10,42,43,-1,10,43,44,-1,10,44,45,-1,10,45,46,-1,10,46,47,-1,10,47,48,-1,10,48,64,-1,10,49,39,-1,10,50,49,-1,10,51,50,-1,10,52,51,-1,10,53,52,-1,10,54,53,-1,10,55,54,-1,10,56,55,-1,10,57,56,-1,10,58,57,-1,10,59,58,-1,10,60,59,-1,10,61,60,-1,10,62,61,-1,10,63,62,-1,10,64,63,-1,11,12,13,-1,11,13,14,-1,11,14,15,-1,11,15,16,-1,11,16,17,-1,11,17,18,-1,11,18,19,-1,11,19,47,-1,11,40,38,-1,11,41,40,-1,11,42,41,-1,11,43,42,-1,11,44,43,-1,11,45,44,-1,11,46,45,-1,11,47,46,-1,19,20,48,-1,19,48,47,-1,20,21,22,-1,20,22,23,-1,20,23,24,-1,20,24,25,-1,20,25,26,-1,20,26,27,-1,20,27,28,-1,20,28,57,-1,20,57,58,-1,20,58,59,-1,20,59,60,-1,20,60,61,-1,20,61,62,-1,20,62,63,-1,20,63,64,-1,20,64,48,-1,28,29,56,-1,28,56,57,-1,29,30,39,-1,29,39,56,-1,30,31,39,-1,31,32,39,-1,32,33,39,-1,33,34,39,-1,34,35,39,-1,35,36,39,-1,36,37,39,-1,39,49,50,-1,39,50,51,-1,39,51,52,-1,39,52,53,-1,39,53,54,-1,39,54,55,-1,39,55,56,-1,65,67,66,-1,65,68,67,-1,65,69,68,-1,65,70,69,-1,65,71,70,-1,65,72,71,-1,65,73,72,-1};
			return value;
		}


		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_46_normalIndex_1()
		{
			int[] value = {0,1,37,-1,0,2,1,-1,0,3,2,-1,0,4,3,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,38,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,17,-1,0,19,18,-1,0,20,19,-1,0,21,20,-1,0,22,21,-1,0,23,22,-1,0,24,23,-1,0,25,24,-1,0,26,25,-1,0,27,26,-1,0,28,27,-1,0,29,28,-1,0,30,29,-1,0,31,30,-1,0,32,31,-1,0,33,32,-1,0,34,33,-1,0,35,34,-1,0,36,35,-1,0,37,36,-1,0,38,10,-1,1,2,39,-1,1,39,37,-1,2,3,10,-1,2,10,39,-1,3,4,10,-1,4,5,10,-1,5,6,10,-1,6,7,10,-1,7,8,10,-1,8,9,10,-1,10,38,40,-1,10,40,41,-1,10,41,42,-1,10,42,43,-1,10,43,44,-1,10,44,45,-1,10,45,46,-1,10,46,47,-1,10,47,48,-1,10,48,64,-1,10,49,39,-1,10,50,49,-1,10,51,50,-1,10,52,51,-1,10,53,52,-1,10,54,53,-1,10,55,54,-1,10,56,55,-1,10,57,56,-1,10,58,57,-1,10,59,58,-1,10,60,59,-1,10,61,60,-1,10,62,61,-1,10,63,62,-1,10,64,63,-1,11,12,13,-1,11,13,14,-1,11,14,15,-1,11,15,16,-1,11,16,17,-1,11,17,18,-1,11,18,19,-1,11,19,47,-1,11,40,38,-1,11,41,40,-1,11,42,41,-1,11,43,42,-1,11,44,43,-1,11,45,44,-1,11,46,45,-1,11,47,46,-1,19,20,48,-1,19,48,47,-1,20,21,22,-1,20,22,23,-1,20,23,24,-1,20,24,25,-1,20,25,26,-1,20,26,27,-1,20,27,28,-1,20,28,57,-1,20,57,58,-1,20,58,59,-1,20,59,60,-1,20,60,61,-1,20,61,62,-1,20,62,63,-1,20,63,64,-1,20,64,48,-1,28,29,56,-1,28,56,57,-1,29,30,39,-1,29,39,56,-1,30,31,39,-1,31,32,39,-1,32,33,39,-1,33,34,39,-1,34,35,39,-1,35,36,39,-1,36,37,39,-1,39,49,50,-1,39,50,51,-1,39,51,52,-1,39,52,53,-1,39,53,54,-1,39,54,55,-1,39,55,56,-1,65,67,66,-1,65,68,67,-1,65,69,68,-1,65,70,69,-1,65,71,70,-1,65,72,71,-1,65,73,72,-1};
			return value;
		}




		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_52_coordIndex_1()
		{
			int[] value = {0,1,37,-1,0,2,1,-1,0,3,2,-1,0,4,3,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,38,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,17,-1,0,19,18,-1,0,20,19,-1,0,21,20,-1,0,22,21,-1,0,23,22,-1,0,24,23,-1,0,25,24,-1,0,26,25,-1,0,27,26,-1,0,28,27,-1,0,29,28,-1,0,30,29,-1,0,31,30,-1,0,32,31,-1,0,33,32,-1,0,34,33,-1,0,35,34,-1,0,36,35,-1,0,37,36,-1,0,38,10,-1,1,2,39,-1,1,39,37,-1,2,3,10,-1,2,10,39,-1,3,4,10,-1,4,5,10,-1,5,6,10,-1,6,7,10,-1,7,8,10,-1,8,9,10,-1,10,38,40,-1,10,40,41,-1,10,41,42,-1,10,42,43,-1,10,43,44,-1,10,44,45,-1,10,45,46,-1,10,46,47,-1,10,47,48,-1,10,48,64,-1,10,49,39,-1,10,50,49,-1,10,51,50,-1,10,52,51,-1,10,53,52,-1,10,54,53,-1,10,55,54,-1,10,56,55,-1,10,57,56,-1,10,58,57,-1,10,59,58,-1,10,60,59,-1,10,61,60,-1,10,62,61,-1,10,63,62,-1,10,64,63,-1,11,12,13,-1,11,13,14,-1,11,14,15,-1,11,15,16,-1,11,16,17,-1,11,17,18,-1,11,18,19,-1,11,19,47,-1,11,40,38,-1,11,41,40,-1,11,42,41,-1,11,43,42,-1,11,44,43,-1,11,45,44,-1,11,46,45,-1,11,47,46,-1,19,20,48,-1,19,48,47,-1,20,21,22,-1,20,22,23,-1,20,23,24,-1,20,24,25,-1,20,25,26,-1,20,26,27,-1,20,27,28,-1,20,28,57,-1,20,57,58,-1,20,58,59,-1,20,59,60,-1,20,60,61,-1,20,61,62,-1,20,62,63,-1,20,63,64,-1,20,64,48,-1,28,29,56,-1,28,56,57,-1,29,30,39,-1,29,39,56,-1,30,31,39,-1,31,32,39,-1,32,33,39,-1,33,34,39,-1,34,35,39,-1,35,36,39,-1,36,37,39,-1,39,49,50,-1,39,50,51,-1,39,51,52,-1,39,52,53,-1,39,53,54,-1,39,54,55,-1,39,55,56,-1,65,67,66,-1,65,68,67,-1,65,69,68,-1,65,70,69,-1,65,71,70,-1,65,72,71,-1,65,73,72,-1};
			return value;
		}


		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_52_normalIndex_1()
		{
			int[] value = {0,1,37,-1,0,2,1,-1,0,3,2,-1,0,4,3,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,38,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,17,-1,0,19,18,-1,0,20,19,-1,0,21,20,-1,0,22,21,-1,0,23,22,-1,0,24,23,-1,0,25,24,-1,0,26,25,-1,0,27,26,-1,0,28,27,-1,0,29,28,-1,0,30,29,-1,0,31,30,-1,0,32,31,-1,0,33,32,-1,0,34,33,-1,0,35,34,-1,0,36,35,-1,0,37,36,-1,0,38,10,-1,1,2,39,-1,1,39,37,-1,2,3,10,-1,2,10,39,-1,3,4,10,-1,4,5,10,-1,5,6,10,-1,6,7,10,-1,7,8,10,-1,8,9,10,-1,10,38,40,-1,10,40,41,-1,10,41,42,-1,10,42,43,-1,10,43,44,-1,10,44,45,-1,10,45,46,-1,10,46,47,-1,10,47,48,-1,10,48,64,-1,10,49,39,-1,10,50,49,-1,10,51,50,-1,10,52,51,-1,10,53,52,-1,10,54,53,-1,10,55,54,-1,10,56,55,-1,10,57,56,-1,10,58,57,-1,10,59,58,-1,10,60,59,-1,10,61,60,-1,10,62,61,-1,10,63,62,-1,10,64,63,-1,11,12,13,-1,11,13,14,-1,11,14,15,-1,11,15,16,-1,11,16,17,-1,11,17,18,-1,11,18,19,-1,11,19,47,-1,11,40,38,-1,11,41,40,-1,11,42,41,-1,11,43,42,-1,11,44,43,-1,11,45,44,-1,11,46,45,-1,11,47,46,-1,19,20,48,-1,19,48,47,-1,20,21,22,-1,20,22,23,-1,20,23,24,-1,20,24,25,-1,20,25,26,-1,20,26,27,-1,20,27,28,-1,20,28,57,-1,20,57,58,-1,20,58,59,-1,20,59,60,-1,20,60,61,-1,20,61,62,-1,20,62,63,-1,20,63,64,-1,20,64,48,-1,28,29,56,-1,28,56,57,-1,29,30,39,-1,29,39,56,-1,30,31,39,-1,31,32,39,-1,32,33,39,-1,33,34,39,-1,34,35,39,-1,35,36,39,-1,36,37,39,-1,39,49,50,-1,39,50,51,-1,39,51,52,-1,39,52,53,-1,39,53,54,-1,39,54,55,-1,39,55,56,-1,65,67,66,-1,65,68,67,-1,65,69,68,-1,65,70,69,-1,65,71,70,-1,65,72,71,-1,65,73,72,-1};
			return value;
		}




		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_58_coordIndex_1()
		{
			int[] value = {0,1,8,-1,0,2,1,-1,0,3,2,-1,0,4,7,-1,0,5,4,-1,0,6,5,-1,0,7,3,-1,0,8,6,-1,1,2,10,-1,1,9,11,-1,1,10,9,-1,1,11,8,-1,2,3,10,-1,3,7,46,-1,3,13,10,-1,3,16,13,-1,3,19,16,-1,3,22,19,-1,3,25,22,-1,3,28,25,-1,3,31,28,-1,3,34,31,-1,3,37,34,-1,3,40,37,-1,3,43,40,-1,3,46,43,-1,4,5,45,-1,4,45,7,-1,5,6,51,-1,5,47,45,-1,5,51,52,-1,5,52,47,-1,6,8,48,-1,6,48,51,-1,7,45,46,-1,8,11,50,-1,8,49,48,-1,8,50,49,-1,9,10,13,-1,9,12,14,-1,9,13,12,-1,9,14,11,-1,11,14,50,-1,12,13,16,-1,12,15,17,-1,12,16,15,-1,12,17,14,-1,14,17,63,-1,14,63,50,-1,15,16,19,-1,15,18,20,-1,15,19,18,-1,15,20,17,-1,17,20,62,-1,17,62,63,-1,18,19,22,-1,18,21,23,-1,18,22,21,-1,18,23,20,-1,20,23,61,-1,20,61,62,-1,21,22,25,-1,21,24,26,-1,21,25,24,-1,21,26,23,-1,23,26,60,-1,23,60,61,-1,24,25,28,-1,24,27,29,-1,24,28,27,-1,24,29,26,-1,26,29,59,-1,26,59,60,-1,27,28,31,-1,27,30,32,-1,27,31,30,-1,27,32,29,-1,29,32,58,-1,29,58,59,-1,30,31,34,-1,30,33,35,-1,30,34,33,-1,30,35,32,-1,32,35,57,-1,32,57,58,-1,33,34,37,-1,33,36,38,-1,33,37,36,-1,33,38,35,-1,35,38,56,-1,35,56,57,-1,36,37,40,-1,36,39,41,-1,36,40,39,-1,36,41,38,-1,38,41,55,-1,38,55,56,-1,39,40,43,-1,39,42,44,-1,39,43,42,-1,39,44,41,-1,41,44,54,-1,41,54,55,-1,42,43,46,-1,42,45,47,-1,42,46,45,-1,42,47,44,-1,44,47,53,-1,44,53,54,-1,47,52,53,-1,48,49,51,-1,49,50,63,-1,49,52,51,-1,49,53,52,-1,49,54,53,-1,49,55,54,-1,49,56,55,-1,49,57,56,-1,49,58,57,-1,49,59,58,-1,49,60,59,-1,49,61,60,-1,49,62,61,-1,49,63,62,-1};
			return value;
		}


		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_58_normalIndex_1()
		{
			int[] value = {0,1,8,-1,0,2,1,-1,0,3,2,-1,0,4,7,-1,0,5,4,-1,0,6,5,-1,0,7,3,-1,0,8,6,-1,1,2,10,-1,1,9,11,-1,1,10,9,-1,1,11,8,-1,2,3,10,-1,3,7,46,-1,3,13,10,-1,3,16,13,-1,3,19,16,-1,3,22,19,-1,3,25,22,-1,3,28,25,-1,3,31,28,-1,3,34,31,-1,3,37,34,-1,3,40,37,-1,3,43,40,-1,3,46,43,-1,4,5,45,-1,4,45,7,-1,5,6,51,-1,5,47,45,-1,5,51,52,-1,5,52,47,-1,6,8,48,-1,6,48,51,-1,7,45,46,-1,8,11,50,-1,8,49,48,-1,8,50,49,-1,9,10,13,-1,9,12,14,-1,9,13,12,-1,9,14,11,-1,11,14,50,-1,12,13,16,-1,12,15,17,-1,12,16,15,-1,12,17,14,-1,14,17,63,-1,14,63,50,-1,15,16,19,-1,15,18,20,-1,15,19,18,-1,15,20,17,-1,17,20,62,-1,17,62,63,-1,18,19,22,-1,18,21,23,-1,18,22,21,-1,18,23,20,-1,20,23,61,-1,20,61,62,-1,21,22,25,-1,21,24,26,-1,21,25,24,-1,21,26,23,-1,23,26,60,-1,23,60,61,-1,24,25,28,-1,24,27,29,-1,24,28,27,-1,24,29,26,-1,26,29,59,-1,26,59,60,-1,27,28,31,-1,27,30,32,-1,27,31,30,-1,27,32,29,-1,29,32,58,-1,29,58,59,-1,30,31,34,-1,30,33,35,-1,30,34,33,-1,30,35,32,-1,32,35,57,-1,32,57,58,-1,33,34,37,-1,33,36,38,-1,33,37,36,-1,33,38,35,-1,35,38,56,-1,35,56,57,-1,36,37,40,-1,36,39,41,-1,36,40,39,-1,36,41,38,-1,38,41,55,-1,38,55,56,-1,39,40,43,-1,39,42,44,-1,39,43,42,-1,39,44,41,-1,41,44,54,-1,41,54,55,-1,42,43,46,-1,42,45,47,-1,42,46,45,-1,42,47,44,-1,44,47,53,-1,44,53,54,-1,47,52,53,-1,48,49,51,-1,49,50,63,-1,49,52,51,-1,49,53,52,-1,49,54,53,-1,49,55,54,-1,49,56,55,-1,49,57,56,-1,49,58,57,-1,49,59,58,-1,49,60,59,-1,49,61,60,-1,49,62,61,-1,49,63,62,-1};
			return value;
		}




		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_64_coordIndex_1()
		{
			int[] value = {0,1,8,-1,0,2,1,-1,0,3,2,-1,0,4,7,-1,0,5,4,-1,0,6,5,-1,0,7,3,-1,0,8,6,-1,1,9,8,-1,1,10,9,-1,2,3,45,-1,3,7,43,-1,3,18,19,-1,3,19,47,-1,3,22,18,-1,3,25,22,-1,3,28,25,-1,3,31,28,-1,3,34,31,-1,3,37,34,-1,3,40,37,-1,3,43,40,-1,3,46,45,-1,3,47,46,-1,4,5,42,-1,4,42,7,-1,5,6,51,-1,5,44,42,-1,5,51,52,-1,5,52,44,-1,6,8,48,-1,6,48,51,-1,7,42,43,-1,8,9,50,-1,8,49,48,-1,8,50,49,-1,9,10,11,-1,9,11,50,-1,10,12,11,-1,11,12,13,-1,11,13,63,-1,11,63,50,-1,12,14,13,-1,13,14,15,-1,13,15,62,-1,13,62,63,-1,14,16,15,-1,15,16,20,-1,15,20,61,-1,15,61,62,-1,16,17,20,-1,16,18,17,-1,16,19,18,-1,17,18,22,-1,17,21,23,-1,17,22,21,-1,17,23,20,-1,20,23,60,-1,20,60,61,-1,21,22,25,-1,21,24,26,-1,21,25,24,-1,21,26,23,-1,23,26,59,-1,23,59,60,-1,24,25,28,-1,24,27,29,-1,24,28,27,-1,24,29,26,-1,26,29,58,-1,26,58,59,-1,27,28,31,-1,27,30,32,-1,27,31,30,-1,27,32,29,-1,29,32,57,-1,29,57,58,-1,30,31,34,-1,30,33,35,-1,30,34,33,-1,30,35,32,-1,32,35,56,-1,32,56,57,-1,33,34,37,-1,33,36,38,-1,33,37,36,-1,33,38,35,-1,35,38,55,-1,35,55,56,-1,36,37,40,-1,36,39,41,-1,36,40,39,-1,36,41,38,-1,38,41,54,-1,38,54,55,-1,39,40,43,-1,39,42,44,-1,39,43,42,-1,39,44,41,-1,41,44,53,-1,41,53,54,-1,44,52,53,-1,48,49,51,-1,49,50,63,-1,49,52,51,-1,49,53,52,-1,49,54,53,-1,49,55,54,-1,49,56,55,-1,49,57,56,-1,49,58,57,-1,49,59,58,-1,49,60,59,-1,49,61,60,-1,49,62,61,-1,49,63,62,-1};
			return value;
		}


		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_64_normalIndex_1()
		{
			int[] value = {0,1,8,-1,0,2,1,-1,0,3,2,-1,0,4,7,-1,0,5,4,-1,0,6,5,-1,0,7,3,-1,0,8,6,-1,1,9,8,-1,1,10,9,-1,2,3,45,-1,3,7,43,-1,3,18,19,-1,3,19,47,-1,3,22,18,-1,3,25,22,-1,3,28,25,-1,3,31,28,-1,3,34,31,-1,3,37,34,-1,3,40,37,-1,3,43,40,-1,3,46,45,-1,3,47,46,-1,4,5,42,-1,4,42,7,-1,5,6,51,-1,5,44,42,-1,5,51,52,-1,5,52,44,-1,6,8,48,-1,6,48,51,-1,7,42,43,-1,8,9,50,-1,8,49,48,-1,8,50,49,-1,9,10,11,-1,9,11,50,-1,10,12,11,-1,11,12,13,-1,11,13,63,-1,11,63,50,-1,12,14,13,-1,13,14,15,-1,13,15,62,-1,13,62,63,-1,14,16,15,-1,15,16,20,-1,15,20,61,-1,15,61,62,-1,16,17,20,-1,16,18,17,-1,16,19,18,-1,17,18,22,-1,17,21,23,-1,17,22,21,-1,17,23,20,-1,20,23,60,-1,20,60,61,-1,21,22,25,-1,21,24,26,-1,21,25,24,-1,21,26,23,-1,23,26,59,-1,23,59,60,-1,24,25,28,-1,24,27,29,-1,24,28,27,-1,24,29,26,-1,26,29,58,-1,26,58,59,-1,27,28,31,-1,27,30,32,-1,27,31,30,-1,27,32,29,-1,29,32,57,-1,29,57,58,-1,30,31,34,-1,30,33,35,-1,30,34,33,-1,30,35,32,-1,32,35,56,-1,32,56,57,-1,33,34,37,-1,33,36,38,-1,33,37,36,-1,33,38,35,-1,35,38,55,-1,35,55,56,-1,36,37,40,-1,36,39,41,-1,36,40,39,-1,36,41,38,-1,38,41,54,-1,38,54,55,-1,39,40,43,-1,39,42,44,-1,39,43,42,-1,39,44,41,-1,41,44,53,-1,41,53,54,-1,44,52,53,-1,48,49,51,-1,49,50,63,-1,49,52,51,-1,49,53,52,-1,49,54,53,-1,49,55,54,-1,49,56,55,-1,49,57,56,-1,49,58,57,-1,49,59,58,-1,49,60,59,-1,49,61,60,-1,49,62,61,-1,49,63,62,-1};
			return value;
		}




		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_70_coordIndex_1()
		{
			int[] value = {0,2,1,-1,0,3,2,-1,0,4,3,-1,0,5,4,-1,1,2,43,-1,2,3,51,-1,2,42,43,-1,2,51,52,-1,2,52,42,-1,3,4,48,-1,3,48,51,-1,4,5,9,-1,4,9,50,-1,4,49,48,-1,4,50,49,-1,5,6,9,-1,5,7,6,-1,5,8,7,-1,6,7,11,-1,6,10,12,-1,6,11,10,-1,6,12,9,-1,7,8,44,-1,7,44,11,-1,9,12,50,-1,10,11,14,-1,10,13,15,-1,10,14,13,-1,10,15,12,-1,11,44,14,-1,12,15,63,-1,12,63,50,-1,13,14,17,-1,13,16,18,-1,13,17,16,-1,13,18,15,-1,14,44,17,-1,15,18,62,-1,15,62,63,-1,16,17,20,-1,16,19,21,-1,16,20,19,-1,16,21,18,-1,17,44,20,-1,18,21,61,-1,18,61,62,-1,19,20,23,-1,19,22,24,-1,19,23,22,-1,19,24,21,-1,20,44,23,-1,21,24,60,-1,21,60,61,-1,22,23,26,-1,22,25,27,-1,22,26,25,-1,22,27,24,-1,23,44,26,-1,24,27,59,-1,24,59,60,-1,25,26,29,-1,25,28,30,-1,25,29,28,-1,25,30,27,-1,26,44,29,-1,27,30,58,-1,27,58,59,-1,28,29,32,-1,28,31,33,-1,28,32,31,-1,28,33,30,-1,29,44,32,-1,30,33,57,-1,30,57,58,-1,31,32,35,-1,31,34,36,-1,31,35,34,-1,31,36,33,-1,32,44,35,-1,33,36,56,-1,33,56,57,-1,34,35,38,-1,34,37,39,-1,34,38,37,-1,34,39,36,-1,35,44,38,-1,36,39,55,-1,36,55,56,-1,37,40,39,-1,37,41,40,-1,38,44,45,-1,39,40,54,-1,39,54,55,-1,40,41,42,-1,40,42,53,-1,40,53,54,-1,41,43,42,-1,42,52,53,-1,44,46,45,-1,44,47,46,-1,48,49,51,-1,49,50,63,-1,49,52,51,-1,49,53,52,-1,49,54,53,-1,49,55,54,-1,49,56,55,-1,49,57,56,-1,49,58,57,-1,49,59,58,-1,49,60,59,-1,49,61,60,-1,49,62,61,-1,49,63,62,-1};
			return value;
		}


		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_70_normalIndex_1()
		{
			int[] value = {0,2,1,-1,0,3,2,-1,0,4,3,-1,0,5,4,-1,1,2,43,-1,2,3,51,-1,2,42,43,-1,2,51,52,-1,2,52,42,-1,3,4,48,-1,3,48,51,-1,4,5,9,-1,4,9,50,-1,4,49,48,-1,4,50,49,-1,5,6,9,-1,5,7,6,-1,5,8,7,-1,6,7,11,-1,6,10,12,-1,6,11,10,-1,6,12,9,-1,7,8,44,-1,7,44,11,-1,9,12,50,-1,10,11,14,-1,10,13,15,-1,10,14,13,-1,10,15,12,-1,11,44,14,-1,12,15,63,-1,12,63,50,-1,13,14,17,-1,13,16,18,-1,13,17,16,-1,13,18,15,-1,14,44,17,-1,15,18,62,-1,15,62,63,-1,16,17,20,-1,16,19,21,-1,16,20,19,-1,16,21,18,-1,17,44,20,-1,18,21,61,-1,18,61,62,-1,19,20,23,-1,19,22,24,-1,19,23,22,-1,19,24,21,-1,20,44,23,-1,21,24,60,-1,21,60,61,-1,22,23,26,-1,22,25,27,-1,22,26,25,-1,22,27,24,-1,23,44,26,-1,24,27,59,-1,24,59,60,-1,25,26,29,-1,25,28,30,-1,25,29,28,-1,25,30,27,-1,26,44,29,-1,27,30,58,-1,27,58,59,-1,28,29,32,-1,28,31,33,-1,28,32,31,-1,28,33,30,-1,29,44,32,-1,30,33,57,-1,30,57,58,-1,31,32,35,-1,31,34,36,-1,31,35,34,-1,31,36,33,-1,32,44,35,-1,33,36,56,-1,33,56,57,-1,34,35,38,-1,34,37,39,-1,34,38,37,-1,34,39,36,-1,35,44,38,-1,36,39,55,-1,36,55,56,-1,37,40,39,-1,37,41,40,-1,38,44,45,-1,39,40,54,-1,39,54,55,-1,40,41,42,-1,40,42,53,-1,40,53,54,-1,41,43,42,-1,42,52,53,-1,44,46,45,-1,44,47,46,-1,48,49,51,-1,49,50,63,-1,49,52,51,-1,49,53,52,-1,49,54,53,-1,49,55,54,-1,49,56,55,-1,49,57,56,-1,49,58,57,-1,49,59,58,-1,49,60,59,-1,49,61,60,-1,49,62,61,-1,49,63,62,-1};
			return value;
		}




		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_76_coordIndex_1()
		{
			int[] value = {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,19,-1,3,18,38,-1,3,20,19,-1,3,21,20,-1,3,22,21,-1,3,23,22,-1,3,24,23,-1,3,25,24,-1,3,26,25,-1,3,36,26,-1,3,38,39,-1,3,39,49,-1,3,48,36,-1,3,49,48,-1,4,5,18,-1,5,6,37,-1,5,37,46,-1,5,38,18,-1,5,40,38,-1,5,42,40,-1,5,44,42,-1,5,46,44,-1,6,7,9,-1,6,9,37,-1,7,8,9,-1,9,10,27,-1,9,27,37,-1,10,11,26,-1,10,26,36,-1,10,29,27,-1,10,31,29,-1,10,33,31,-1,10,35,33,-1,10,36,35,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,27,28,47,-1,27,29,28,-1,27,47,37,-1,28,29,46,-1,28,46,47,-1,29,30,45,-1,29,31,30,-1,29,45,46,-1,30,31,44,-1,30,44,45,-1,31,32,43,-1,31,33,32,-1,31,43,44,-1,32,33,42,-1,32,42,43,-1,33,34,41,-1,33,35,34,-1,33,41,42,-1,34,35,40,-1,34,40,41,-1,35,36,40,-1,36,39,40,-1,36,48,49,-1,36,49,39,-1,37,47,46,-1,38,40,39,-1,40,42,41,-1,42,44,43,-1,44,46,45,-1};
			return value;
		}


		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_76_normalIndex_1()
		{
			int[] value = {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,19,-1,3,18,38,-1,3,20,19,-1,3,21,20,-1,3,22,21,-1,3,23,22,-1,3,24,23,-1,3,25,24,-1,3,26,25,-1,3,36,26,-1,3,38,39,-1,3,39,49,-1,3,48,36,-1,3,49,48,-1,4,5,18,-1,5,6,37,-1,5,37,46,-1,5,38,18,-1,5,40,38,-1,5,42,40,-1,5,44,42,-1,5,46,44,-1,6,7,9,-1,6,9,37,-1,7,8,9,-1,9,10,27,-1,9,27,37,-1,10,11,26,-1,10,26,36,-1,10,29,27,-1,10,31,29,-1,10,33,31,-1,10,35,33,-1,10,36,35,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,27,28,47,-1,27,29,28,-1,27,47,37,-1,28,29,46,-1,28,46,47,-1,29,30,45,-1,29,31,30,-1,29,45,46,-1,30,31,44,-1,30,44,45,-1,31,32,43,-1,31,33,32,-1,31,43,44,-1,32,33,42,-1,32,42,43,-1,33,34,41,-1,33,35,34,-1,33,41,42,-1,34,35,40,-1,34,40,41,-1,35,36,40,-1,36,39,40,-1,36,48,49,-1,36,49,39,-1,37,47,46,-1,38,40,39,-1,40,42,41,-1,42,44,43,-1,44,46,45,-1};
			return value;
		}




		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_82_coordIndex_1()
		{
			int[] value = {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,19,-1,3,18,38,-1,3,20,19,-1,3,21,20,-1,3,22,21,-1,3,23,22,-1,3,24,23,-1,3,25,24,-1,3,26,25,-1,3,36,26,-1,3,38,39,-1,3,39,49,-1,3,48,36,-1,3,49,48,-1,4,5,18,-1,5,6,37,-1,5,37,46,-1,5,38,18,-1,5,40,38,-1,5,42,40,-1,5,44,42,-1,5,46,44,-1,6,7,9,-1,6,9,37,-1,7,8,9,-1,9,10,27,-1,9,27,37,-1,10,11,26,-1,10,26,36,-1,10,29,27,-1,10,31,29,-1,10,33,31,-1,10,35,33,-1,10,36,35,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,27,28,47,-1,27,29,28,-1,27,47,37,-1,28,29,46,-1,28,46,47,-1,29,30,45,-1,29,31,30,-1,29,45,46,-1,30,31,44,-1,30,44,45,-1,31,32,43,-1,31,33,32,-1,31,43,44,-1,32,33,42,-1,32,42,43,-1,33,34,41,-1,33,35,34,-1,33,41,42,-1,34,35,40,-1,34,40,41,-1,35,36,40,-1,36,39,40,-1,36,48,49,-1,36,49,39,-1,37,47,46,-1,38,40,39,-1,40,42,41,-1,42,44,43,-1,44,46,45,-1};
			return value;
		}


		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_82_normalIndex_1()
		{
			int[] value = {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,19,-1,3,18,38,-1,3,20,19,-1,3,21,20,-1,3,22,21,-1,3,23,22,-1,3,24,23,-1,3,25,24,-1,3,26,25,-1,3,36,26,-1,3,38,39,-1,3,39,49,-1,3,48,36,-1,3,49,48,-1,4,5,18,-1,5,6,37,-1,5,37,46,-1,5,38,18,-1,5,40,38,-1,5,42,40,-1,5,44,42,-1,5,46,44,-1,6,7,9,-1,6,9,37,-1,7,8,9,-1,9,10,27,-1,9,27,37,-1,10,11,26,-1,10,26,36,-1,10,29,27,-1,10,31,29,-1,10,33,31,-1,10,35,33,-1,10,36,35,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,27,28,47,-1,27,29,28,-1,27,47,37,-1,28,29,46,-1,28,46,47,-1,29,30,45,-1,29,31,30,-1,29,45,46,-1,30,31,44,-1,30,44,45,-1,31,32,43,-1,31,33,32,-1,31,43,44,-1,32,33,42,-1,32,42,43,-1,33,34,41,-1,33,35,34,-1,33,41,42,-1,34,35,40,-1,34,40,41,-1,35,36,40,-1,36,39,40,-1,36,48,49,-1,36,49,39,-1,37,47,46,-1,38,40,39,-1,40,42,41,-1,42,44,43,-1,44,46,45,-1};
			return value;
		}




		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_88_coordIndex_1()
		{
			int[] value = {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,32,-1,2,32,33,-1,2,33,19,-1,3,18,32,-1,4,5,18,-1,5,6,31,-1,5,31,18,-1,6,7,30,-1,6,30,31,-1,7,8,29,-1,7,29,30,-1,8,9,28,-1,8,28,29,-1,9,10,27,-1,9,27,28,-1,10,11,26,-1,10,26,27,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,18,31,46,-1,18,46,47,-1,18,47,32,-1,19,33,34,-1,19,34,20,-1,20,34,35,-1,20,35,21,-1,21,35,36,-1,21,36,22,-1,22,36,37,-1,22,37,23,-1,23,37,38,-1,23,38,24,-1,24,38,39,-1,24,39,25,-1,25,39,40,-1,25,40,26,-1,26,40,41,-1,26,41,27,-1,27,41,42,-1,27,42,28,-1,28,42,43,-1,28,43,29,-1,29,43,44,-1,29,44,30,-1,30,44,45,-1,30,45,31,-1,31,45,46,-1,32,41,33,-1,32,42,41,-1,32,47,42,-1,33,40,34,-1,33,41,40,-1,34,39,35,-1,34,40,39,-1,35,38,36,-1,35,39,38,-1,36,38,37,-1,42,47,43,-1,43,46,44,-1,43,47,46,-1,44,46,45,-1};
			return value;
		}


		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_88_normalIndex_1()
		{
			int[] value = {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,32,-1,2,32,33,-1,2,33,19,-1,3,18,32,-1,4,5,18,-1,5,6,31,-1,5,31,18,-1,6,7,30,-1,6,30,31,-1,7,8,29,-1,7,29,30,-1,8,9,28,-1,8,28,29,-1,9,10,27,-1,9,27,28,-1,10,11,26,-1,10,26,27,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,18,31,46,-1,18,46,47,-1,18,47,32,-1,19,33,34,-1,19,34,20,-1,20,34,35,-1,20,35,21,-1,21,35,36,-1,21,36,22,-1,22,36,37,-1,22,37,23,-1,23,37,38,-1,23,38,24,-1,24,38,39,-1,24,39,25,-1,25,39,40,-1,25,40,26,-1,26,40,41,-1,26,41,27,-1,27,41,42,-1,27,42,28,-1,28,42,43,-1,28,43,29,-1,29,43,44,-1,29,44,30,-1,30,44,45,-1,30,45,31,-1,31,45,46,-1,32,41,33,-1,32,42,41,-1,32,47,42,-1,33,40,34,-1,33,41,40,-1,34,39,35,-1,34,40,39,-1,35,38,36,-1,35,39,38,-1,36,38,37,-1,42,47,43,-1,43,46,44,-1,43,47,46,-1,44,46,45,-1};
			return value;
		}














		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_215_coordIndex_1()
		{
			int[] value = {0,2,1,-1,0,3,2,-1,0,4,3,-1,0,5,4,-1,1,2,7,-1,1,7,6,-1,2,3,32,-1,2,32,35,-1,2,35,7,-1,3,4,34,-1,3,33,32,-1,3,34,33,-1,4,5,30,-1,4,30,31,-1,4,31,34,-1,6,7,9,-1,6,9,8,-1,7,35,36,-1,7,36,9,-1,8,9,11,-1,8,11,10,-1,9,36,37,-1,9,37,11,-1,10,11,13,-1,10,13,12,-1,11,37,38,-1,11,38,13,-1,12,13,15,-1,12,15,14,-1,13,38,39,-1,13,39,15,-1,14,15,17,-1,14,17,16,-1,15,39,40,-1,15,40,17,-1,16,17,19,-1,16,19,18,-1,17,40,41,-1,17,41,19,-1,18,19,21,-1,18,21,20,-1,19,41,42,-1,19,42,21,-1,20,21,23,-1,20,23,22,-1,21,42,43,-1,21,43,23,-1,22,23,25,-1,22,25,24,-1,23,43,44,-1,23,44,25,-1,24,25,27,-1,24,27,26,-1,25,44,45,-1,25,45,27,-1,26,27,29,-1,26,29,28,-1,27,45,46,-1,27,46,29,-1,28,29,31,-1,28,31,30,-1,29,46,47,-1,29,47,31,-1,31,47,34,-1,32,33,48,-1,32,48,51,-1,32,51,35,-1,33,34,50,-1,33,49,48,-1,33,50,49,-1,34,47,50,-1,35,51,52,-1,35,52,36,-1,36,52,53,-1,36,53,37,-1,37,53,54,-1,37,54,38,-1,38,54,55,-1,38,55,39,-1,39,55,56,-1,39,56,40,-1,40,56,57,-1,40,57,41,-1,41,57,58,-1,41,58,42,-1,42,58,59,-1,42,59,43,-1,43,59,60,-1,43,60,44,-1,44,60,61,-1,44,61,45,-1,45,61,62,-1,45,62,46,-1,46,62,63,-1,46,63,47,-1,47,63,50,-1,48,49,64,-1,48,64,67,-1,48,67,51,-1,49,50,66,-1,49,65,64,-1,49,66,65,-1,50,63,66,-1,51,67,68,-1,51,68,52,-1,52,68,69,-1,52,69,53,-1,53,69,70,-1,53,70,54,-1,54,70,71,-1,54,71,55,-1,55,71,72,-1,55,72,56,-1,56,72,73,-1,56,73,57,-1,57,73,74,-1,57,74,58,-1,58,74,75,-1,58,75,59,-1,59,75,76,-1,59,76,60,-1,60,76,77,-1,60,77,61,-1,61,77,78,-1,61,78,62,-1,62,78,79,-1,62,79,63,-1,63,79,66,-1,64,65,88,-1,64,88,89,-1,64,89,67,-1,65,66,81,-1,65,80,88,-1,65,81,80,-1,66,79,81,-1,67,82,68,-1,67,89,82,-1,68,82,83,-1,68,83,69,-1,69,83,90,-1,69,90,70,-1,70,90,91,-1,70,91,71,-1,71,91,92,-1,71,92,72,-1,72,92,93,-1,72,93,73,-1,73,93,94,-1,73,94,74,-1,74,84,75,-1,74,94,84,-1,75,84,85,-1,75,85,76,-1,76,85,95,-1,76,95,77,-1,77,86,78,-1,77,95,86,-1,78,86,87,-1,78,87,79,-1,79,87,81,-1,80,81,98,-1,80,96,88,-1,80,97,96,-1,80,98,97,-1,81,87,98,-1,82,89,100,-1,82,100,101,-1,82,101,83,-1,83,101,102,-1,83,102,90,-1,84,94,107,-1,84,107,108,-1,84,108,85,-1,85,108,109,-1,85,109,95,-1,86,95,110,-1,86,110,111,-1,86,111,87,-1,87,111,98,-1,88,96,99,-1,88,99,89,-1,89,99,100,-1,90,102,103,-1,90,103,91,-1,91,103,104,-1,91,104,92,-1,92,104,105,-1,92,105,93,-1,93,105,106,-1,93,106,94,-1,94,106,107,-1,95,109,110,-1,96,97,112,-1,96,112,115,-1,96,115,99,-1,97,98,114,-1,97,113,112,-1,97,114,113,-1,98,111,114,-1,99,115,116,-1,99,116,100,-1,100,116,117,-1,100,117,101,-1,101,117,118,-1,101,118,102,-1,102,118,119,-1,102,119,103,-1,103,119,120,-1,103,120,104,-1,104,120,121,-1,104,121,105,-1,105,121,122,-1,105,122,106,-1,106,122,123,-1,106,123,107,-1,107,123,124,-1,107,124,108,-1,108,124,125,-1,108,125,109,-1,109,125,126,-1,109,126,110,-1,110,126,127,-1,110,127,111,-1,111,127,114,-1,112,113,115,-1,113,114,127,-1,113,116,115,-1,113,117,116,-1,113,118,117,-1,113,119,118,-1,113,120,119,-1,113,121,120,-1,113,122,121,-1,113,123,122,-1,113,124,123,-1,113,125,124,-1,113,126,125,-1,113,127,126,-1};
			return value;
		}


		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_215_normalIndex_1()
		{
			int[] value = {0,2,1,-1,0,3,2,-1,0,4,3,-1,0,5,4,-1,1,2,7,-1,1,7,6,-1,2,3,32,-1,2,32,35,-1,2,35,7,-1,3,4,34,-1,3,33,32,-1,3,34,33,-1,4,5,30,-1,4,30,31,-1,4,31,34,-1,6,7,9,-1,6,9,8,-1,7,35,36,-1,7,36,9,-1,8,9,11,-1,8,11,10,-1,9,36,37,-1,9,37,11,-1,10,11,13,-1,10,13,12,-1,11,37,38,-1,11,38,13,-1,12,13,15,-1,12,15,14,-1,13,38,39,-1,13,39,15,-1,14,15,17,-1,14,17,16,-1,15,39,40,-1,15,40,17,-1,16,17,19,-1,16,19,18,-1,17,40,41,-1,17,41,19,-1,18,19,21,-1,18,21,20,-1,19,41,42,-1,19,42,21,-1,20,21,23,-1,20,23,22,-1,21,42,43,-1,21,43,23,-1,22,23,25,-1,22,25,24,-1,23,43,44,-1,23,44,25,-1,24,25,27,-1,24,27,26,-1,25,44,45,-1,25,45,27,-1,26,27,29,-1,26,29,28,-1,27,45,46,-1,27,46,29,-1,28,29,31,-1,28,31,30,-1,29,46,47,-1,29,47,31,-1,31,47,34,-1,32,33,48,-1,32,48,51,-1,32,51,35,-1,33,34,50,-1,33,49,48,-1,33,50,49,-1,34,47,50,-1,35,51,52,-1,35,52,36,-1,36,52,53,-1,36,53,37,-1,37,53,54,-1,37,54,38,-1,38,54,55,-1,38,55,39,-1,39,55,56,-1,39,56,40,-1,40,56,57,-1,40,57,41,-1,41,57,58,-1,41,58,42,-1,42,58,59,-1,42,59,43,-1,43,59,60,-1,43,60,44,-1,44,60,61,-1,44,61,45,-1,45,61,62,-1,45,62,46,-1,46,62,63,-1,46,63,47,-1,47,63,50,-1,48,49,64,-1,48,64,67,-1,48,67,51,-1,49,50,66,-1,49,65,64,-1,49,66,65,-1,50,63,66,-1,51,67,68,-1,51,68,52,-1,52,68,69,-1,52,69,53,-1,53,69,70,-1,53,70,54,-1,54,70,71,-1,54,71,55,-1,55,71,72,-1,55,72,56,-1,56,72,73,-1,56,73,57,-1,57,73,74,-1,57,74,58,-1,58,74,75,-1,58,75,59,-1,59,75,76,-1,59,76,60,-1,60,76,77,-1,60,77,61,-1,61,77,78,-1,61,78,62,-1,62,78,79,-1,62,79,63,-1,63,79,66,-1,64,65,88,-1,64,88,89,-1,64,89,67,-1,65,66,81,-1,65,80,88,-1,65,81,80,-1,66,79,81,-1,67,82,68,-1,67,89,82,-1,68,82,83,-1,68,83,69,-1,69,83,90,-1,69,90,70,-1,70,90,91,-1,70,91,71,-1,71,91,92,-1,71,92,72,-1,72,92,93,-1,72,93,73,-1,73,93,94,-1,73,94,74,-1,74,84,75,-1,74,94,84,-1,75,84,85,-1,75,85,76,-1,76,85,95,-1,76,95,77,-1,77,86,78,-1,77,95,86,-1,78,86,87,-1,78,87,79,-1,79,87,81,-1,80,81,98,-1,80,96,88,-1,80,97,96,-1,80,98,97,-1,81,87,98,-1,82,89,100,-1,82,100,101,-1,82,101,83,-1,83,101,102,-1,83,102,90,-1,84,94,107,-1,84,107,108,-1,84,108,85,-1,85,108,109,-1,85,109,95,-1,86,95,110,-1,86,110,111,-1,86,111,87,-1,87,111,98,-1,88,96,99,-1,88,99,89,-1,89,99,100,-1,90,102,103,-1,90,103,91,-1,91,103,104,-1,91,104,92,-1,92,104,105,-1,92,105,93,-1,93,105,106,-1,93,106,94,-1,94,106,107,-1,95,109,110,-1,96,97,112,-1,96,112,115,-1,96,115,99,-1,97,98,114,-1,97,113,112,-1,97,114,113,-1,98,111,114,-1,99,115,116,-1,99,116,100,-1,100,116,117,-1,100,117,101,-1,101,117,118,-1,101,118,102,-1,102,118,119,-1,102,119,103,-1,103,119,120,-1,103,120,104,-1,104,120,121,-1,104,121,105,-1,105,121,122,-1,105,122,106,-1,106,122,123,-1,106,123,107,-1,107,123,124,-1,107,124,108,-1,108,124,125,-1,108,125,109,-1,109,125,126,-1,109,126,110,-1,110,126,127,-1,110,127,111,-1,111,127,114,-1,112,113,115,-1,113,114,127,-1,113,116,115,-1,113,117,116,-1,113,118,117,-1,113,119,118,-1,113,120,119,-1,113,121,120,-1,113,122,121,-1,113,123,122,-1,113,124,123,-1,113,125,124,-1,113,126,125,-1,113,127,126,-1};
			return value;
		}


		/** Define subarrays using type double[] */
		private double[] getCoordinate_6_215_point_1()
		{
			double[] value = {7.48306,1.17825,0.24845,7.48306,1.17308,0.249479,7.52172,1.17308,0.249475,7.52172,1.17825,0.248446,7.52172,1.18342,0.249475,7.48306,1.18342,0.249479,7.48306,1.16869,0.252407,7.52172,1.16869,0.252403,7.48306,1.16576,0.256791,7.52172,1.16576,0.256787,7.48306,1.16474,0.261962,7.52172,1.16474,0.261957,7.48306,1.16576,0.267132,7.52172,1.16576,0.267128,7.48306,1.16869,0.271516,7.52173,1.16869,0.271512,7.48306,1.17308,0.274444,7.52173,1.17308,0.27444,7.48306,1.17825,0.275473,7.52173,1.17825,0.275469,7.48306,1.18342,0.274444,7.52173,1.18342,0.27444,7.48306,1.1878,0.271516,7.52173,1.1878,0.271512,7.48306,1.19073,0.267132,7.52172,1.19073,0.267128,7.48306,1.19176,0.261962,7.52172,1.19176,0.261957,7.48306,1.19073,0.256791,7.52172,1.19073,0.256787,7.48306,1.1878,0.252407,7.52172,1.1878,0.252403,7.52544,1.17453,0.252974,7.52544,1.17825,0.252234,7.52544,1.18197,0.252974,7.52544,1.17137,0.255082,7.52544,1.16926,0.258236,7.52544,1.16852,0.261957,7.52544,1.16926,0.265678,7.52544,1.17137,0.268832,7.52544,1.17453,0.27094,7.52544,1.17825,0.271681,7.52544,1.18197,0.27094,7.52544,1.18512,0.268832,7.52544,1.18723,0.265678,7.52544,1.18797,0.261957,7.52544,1.18723,0.258236,7.52544,1.18512,0.255082,7.5355,1.17453,0.252973,7.5355,1.17825,0.252233,7.5355,1.18197,0.252973,7.5355,1.17137,0.255081,7.5355,1.16926,0.258235,7.5355,1.16852,0.261956,7.5355,1.16926,0.265677,7.5355,1.17137,0.268831,7.5355,1.17453,0.270939,7.5355,1.17825,0.271679,7.5355,1.18197,0.270939,7.5355,1.18512,0.268831,7.5355,1.18723,0.265677,7.5355,1.18797,0.261956,7.5355,1.18723,0.258235,7.5355,1.18512,0.255081,7.53868,1.17577,0.255971,7.53868,1.17825,0.255477,7.53868,1.18073,0.255971,7.53868,1.17367,0.257375,7.53868,1.17226,0.259477,7.53868,1.17177,0.261956,7.53868,1.17226,0.264435,7.53868,1.17367,0.266536,7.53868,1.17577,0.267941,7.53868,1.17825,0.268435,7.53868,1.18073,0.267941,7.53868,1.18283,0.266536,7.53868,1.18423,0.264435,7.53868,1.18473,0.261956,7.53868,1.18423,0.259477,7.53868,1.18283,0.257375,7.69599,1.17825,0.25546,7.69599,1.18073,0.255954,7.69599,1.17226,0.25946,7.69599,1.17177,0.261939,7.69599,1.18283,0.26652,7.69599,1.18423,0.264418,7.69599,1.18423,0.25946,7.69599,1.18283,0.257359,7.69599,1.17577,0.255954,7.69599,1.17367,0.257359,7.69599,1.17226,0.264418,7.69599,1.17367,0.26652,7.69599,1.17577,0.267924,7.69599,1.17825,0.268418,7.69599,1.18073,0.267924,7.69599,1.18473,0.261939,7.69684,1.17511,0.254362,7.69684,1.17825,0.253737,7.69684,1.18139,0.254362,7.69684,1.17245,0.25614};
			return value;
		}
		private double[] getCoordinate_6_215_point_2()
		{
			double[] value = {7.69684,1.17067,0.2588,7.69684,1.17004,0.261939,7.69684,1.17067,0.265079,7.69684,1.17245,0.267738,7.69684,1.17511,0.269516,7.69684,1.17825,0.270141,7.69684,1.18139,0.269516,7.69684,1.18405,0.267738,7.69684,1.18582,0.265079,7.69684,1.18645,0.261939,7.69684,1.18582,0.2588,7.69684,1.18405,0.25614,7.7198,1.17511,0.25436,7.7198,1.17825,0.253734,7.7198,1.18139,0.25436,7.7198,1.17245,0.256138,7.7198,1.17067,0.258797,7.7198,1.17004,0.261937,7.7198,1.17067,0.265076,7.7198,1.17245,0.267736,7.7198,1.17511,0.269514,7.7198,1.17825,0.270139,7.7198,1.18139,0.269514,7.7198,1.18405,0.267736,7.7198,1.18582,0.265076,7.7198,1.18645,0.261937,7.7198,1.18582,0.258797,7.7198,1.18405,0.256138};
			return value;
		}


		/** Define subarrays using type double[] */
		private double[] getNormal_6_216_vector_1()
		{
			double[] value = {-1.0472E-4,-2.81274E-5,-1.0,-9.38909E-5,-0.442857,-0.896592,0.388938,-0.34279,-0.855115,0.512633,-2.51597E-5,-0.858608,0.25725,0.369786,-0.892794,-9.67488E-5,0.382676,-0.923883,-6.89811E-5,-0.752388,-0.658721,0.38901,-0.643923,-0.658813,-3.35831E-5,-0.947182,-0.320695,0.389021,-0.847056,-0.36216,6.93038E-6,-0.997808,0.0661802,0.389079,-0.921144,-0.0105303,4.63759E-5,-0.896592,0.442857,0.389091,-0.855067,0.342736,7.87899E-5,-0.658721,0.752388,0.38914,-0.658781,0.643877,9.91887E-5,-0.320695,0.947182,0.38909,-0.362138,0.847033,1.0449E-4,0.0661425,0.99781,0.389092,-0.010493,0.921139,9.38858E-5,0.442956,0.896543,0.389126,0.342839,0.85501,6.89786E-5,0.752408,0.658697,0.389114,0.643968,0.658707,3.35847E-5,0.947177,0.32071,0.389026,0.847076,0.362106,-6.93038E-6,0.997808,-0.0661802,0.389006,0.921176,0.0104444,-4.63789E-5,0.896578,-0.442886,0.388968,0.855069,-0.342872,-7.8782E-5,0.658806,-0.752313,0.388992,0.658826,-0.64392,0.38891,-0.362221,-0.84708,0.257222,-3.03931E-5,-0.966352,0.512673,0.328599,-0.793214,0.388997,-0.658781,-0.643963,0.389023,-0.855069,-0.342809,0.389078,-0.921145,0.0104369,0.389099,-0.847046,0.362098,0.389143,-0.643969,0.65869,0.389122,-0.34286,0.855004,0.389098,0.0104697,0.921137,0.389098,0.362275,0.846971,0.389117,0.658751,0.643922,0.389053,0.855053,0.342816,0.389001,0.921177,-0.010514,0.388957,0.847023,-0.362305,0.388962,0.643985,-0.658781,0.388991,-0.34289,-0.855051,0.512758,-1.69924E-5,-0.858533,0.257314,0.369883,-0.892735,0.389019,-0.643937,-0.658794,0.388997,-0.847068,-0.362157,0.389046,-0.921158,-0.0105412,0.389084,-0.85506,0.342763,0.389162,-0.658802,0.643843,0.389162,-0.362249,0.846953,0.389191,-0.0104869,0.921097,0.389191,0.342868,0.854969,0.389125,0.643986,0.658683,0.389134,0.846968,0.362242,0.389074,0.921148,0.0104035,0.389054,0.855031,-0.342869,0.388993,0.658731,-0.644017,0.388979,-0.362348,-0.846994,0.257284,1.14151E-5,-0.966336,0.512734,0.328591,-0.793178,0.389016,-0.65874,-0.643994,0.389026,-0.855068,-0.34281,0.389038,-0.921163,0.0104099,0.389084,-0.847027,0.362158,0.389144,-0.643965,0.658693,0.389174,-0.342993,0.854927,0.389197,0.0105358,0.921094,0.389178,0.362191,0.84697,0.389151,0.658825,0.643825,0.389101,0.855011,0.342866,0.389091,0.921138,-0.0105842,0.389037,0.847036,-0.362188,0.389012,0.643906,-0.658828,-0.69238,-2.51476E-6,-0.721533,-0.348639,0.358733,-0.865887,-0.532047,-0.773865,-0.343596,-0.532016,-0.846468,-0.0212246,-0.531945,0.583421,0.613722,-0.531979,0.773904,0.343613,-0.532049,0.790156,-0.304265,-0.532041,0.613696,-0.583361,-0.532011,-0.304432,-0.790117,-0.532015,-0.583489,-0.613596,-0.531939,-0.790224,0.304279,-0.531866,-0.613645,0.583573,-0.531841,-0.343793,0.77392,-0.531879,-0.0213688,0.846551,-0.53187,0.304345,0.790245,-0.532003,0.84647,0.0214745,-0.532005,-0.343753,-0.773825,-0.348631,-3.49765E-5,-0.93726,-0.692368,0.276206,-0.666586,-0.531987,-0.613587,-0.583525};
			return value;
		}
		private double[] getNormal_6_216_vector_2()
		{
			double[] value = {-0.532002,-0.790162,-0.304332,-0.532032,-0.846453,0.0214251,-0.531967,-0.773816,0.343831,-0.531881,-0.583451,0.613748,-0.531846,-0.30438,0.790248,-0.531859,0.021303,0.846565,-0.531885,0.343722,0.773921,-0.531892,0.613559,0.58364,-0.532023,0.79019,0.304223,-0.531971,0.846497,-0.0212048,-0.532089,0.773815,-0.343645,-0.532043,0.583456,-0.613603,0.321056,-0.303891,-0.89698,0.990313,-5.1478E-6,-0.138855,0.246903,0.370918,-0.895242,0.561238,-0.545174,-0.622734,0.561277,-0.741895,-0.366824,0.561318,-0.82578,-0.0548602,0.561343,-0.783831,0.265525,0.56136,-0.62256,0.545247,0.561383,-0.366681,0.741886,0.561413,-0.0548425,0.825716,0.56139,0.265531,0.783795,0.561368,0.545174,0.622616,0.561366,0.741932,0.366612,0.561305,0.825804,0.0546376,0.5613,0.783889,-0.265443,0.561246,0.62256,-0.545364};
			return value;
		}


		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_221_coordIndex_1()
		{
			int[] value = {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,32,-1,2,32,35,-1,2,35,19,-1,3,18,34,-1,3,33,32,-1,3,34,33,-1,4,5,18,-1,5,6,31,-1,5,31,18,-1,6,7,30,-1,6,30,31,-1,7,8,29,-1,7,29,30,-1,8,9,28,-1,8,28,29,-1,9,10,27,-1,9,27,28,-1,10,11,26,-1,10,26,27,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,18,31,34,-1,19,35,36,-1,19,36,20,-1,20,36,37,-1,20,37,21,-1,21,37,38,-1,21,38,22,-1,22,38,39,-1,22,39,23,-1,23,39,40,-1,23,40,24,-1,24,40,41,-1,24,41,25,-1,25,41,42,-1,25,42,26,-1,26,42,43,-1,26,43,27,-1,27,43,44,-1,27,44,28,-1,28,44,45,-1,28,45,29,-1,29,45,46,-1,29,46,30,-1,30,46,47,-1,30,47,31,-1,31,47,34,-1,32,33,48,-1,32,48,51,-1,32,51,35,-1,33,34,50,-1,33,49,48,-1,33,50,49,-1,34,47,50,-1,35,51,52,-1,35,52,36,-1,36,52,53,-1,36,53,37,-1,37,53,54,-1,37,54,38,-1,38,54,55,-1,38,55,39,-1,39,55,56,-1,39,56,40,-1,40,56,57,-1,40,57,41,-1,41,57,58,-1,41,58,42,-1,42,58,59,-1,42,59,43,-1,43,59,60,-1,43,60,44,-1,44,60,61,-1,44,61,45,-1,45,61,62,-1,45,62,46,-1,46,62,63,-1,46,63,47,-1,47,63,50,-1,48,49,64,-1,48,64,67,-1,48,67,51,-1,49,50,66,-1,49,65,64,-1,49,66,65,-1,50,63,66,-1,51,67,68,-1,51,68,52,-1,52,68,69,-1,52,69,53,-1,53,69,70,-1,53,70,54,-1,54,70,71,-1,54,71,55,-1,55,71,72,-1,55,72,56,-1,56,72,73,-1,56,73,57,-1,57,73,74,-1,57,74,58,-1,58,74,75,-1,58,75,59,-1,59,75,76,-1,59,76,60,-1,60,76,77,-1,60,77,61,-1,61,77,78,-1,61,78,62,-1,62,78,79,-1,62,79,63,-1,63,79,66,-1,64,65,80,-1,64,80,83,-1,64,83,67,-1,65,66,82,-1,65,81,80,-1,65,82,81,-1,66,79,82,-1,67,83,84,-1,67,84,68,-1,68,84,85,-1,68,85,69,-1,69,85,86,-1,69,86,70,-1,70,86,87,-1,70,87,71,-1,71,87,88,-1,71,88,72,-1,72,88,89,-1,72,89,73,-1,73,89,90,-1,73,90,74,-1,74,90,91,-1,74,91,75,-1,75,91,92,-1,75,92,76,-1,76,92,93,-1,76,93,77,-1,77,93,94,-1,77,94,78,-1,78,94,95,-1,78,95,79,-1,79,95,82,-1,80,81,96,-1,80,96,99,-1,80,99,83,-1,81,82,98,-1,81,97,96,-1,81,98,97,-1,82,95,98,-1,83,99,100,-1,83,100,84,-1,84,100,101,-1,84,101,85,-1,85,101,102,-1,85,102,86,-1,86,102,103,-1,86,103,87,-1,87,103,104,-1,87,104,88,-1,88,104,105,-1,88,105,89,-1,89,105,106,-1,89,106,90,-1,90,106,107,-1,90,107,91,-1,91,107,108,-1,91,108,92,-1,92,108,109,-1,92,109,93,-1,93,109,110,-1,93,110,94,-1,94,110,111,-1,94,111,95,-1,95,111,98,-1};
			return value;
		}


		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_221_normalIndex_1()
		{
			int[] value = {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,32,-1,2,32,35,-1,2,35,19,-1,3,18,34,-1,3,33,32,-1,3,34,33,-1,4,5,18,-1,5,6,31,-1,5,31,18,-1,6,7,30,-1,6,30,31,-1,7,8,29,-1,7,29,30,-1,8,9,28,-1,8,28,29,-1,9,10,27,-1,9,27,28,-1,10,11,26,-1,10,26,27,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,18,31,34,-1,19,35,36,-1,19,36,20,-1,20,36,37,-1,20,37,21,-1,21,37,38,-1,21,38,22,-1,22,38,39,-1,22,39,23,-1,23,39,40,-1,23,40,24,-1,24,40,41,-1,24,41,25,-1,25,41,42,-1,25,42,26,-1,26,42,43,-1,26,43,27,-1,27,43,44,-1,27,44,28,-1,28,44,45,-1,28,45,29,-1,29,45,46,-1,29,46,30,-1,30,46,47,-1,30,47,31,-1,31,47,34,-1,32,33,48,-1,32,48,51,-1,32,51,35,-1,33,34,50,-1,33,49,48,-1,33,50,49,-1,34,47,50,-1,35,51,52,-1,35,52,36,-1,36,52,53,-1,36,53,37,-1,37,53,54,-1,37,54,38,-1,38,54,55,-1,38,55,39,-1,39,55,56,-1,39,56,40,-1,40,56,57,-1,40,57,41,-1,41,57,58,-1,41,58,42,-1,42,58,59,-1,42,59,43,-1,43,59,60,-1,43,60,44,-1,44,60,61,-1,44,61,45,-1,45,61,62,-1,45,62,46,-1,46,62,63,-1,46,63,47,-1,47,63,50,-1,48,49,64,-1,48,64,67,-1,48,67,51,-1,49,50,66,-1,49,65,64,-1,49,66,65,-1,50,63,66,-1,51,67,68,-1,51,68,52,-1,52,68,69,-1,52,69,53,-1,53,69,70,-1,53,70,54,-1,54,70,71,-1,54,71,55,-1,55,71,72,-1,55,72,56,-1,56,72,73,-1,56,73,57,-1,57,73,74,-1,57,74,58,-1,58,74,75,-1,58,75,59,-1,59,75,76,-1,59,76,60,-1,60,76,77,-1,60,77,61,-1,61,77,78,-1,61,78,62,-1,62,78,79,-1,62,79,63,-1,63,79,66,-1,64,65,80,-1,64,80,83,-1,64,83,67,-1,65,66,82,-1,65,81,80,-1,65,82,81,-1,66,79,82,-1,67,83,84,-1,67,84,68,-1,68,84,85,-1,68,85,69,-1,69,85,86,-1,69,86,70,-1,70,86,87,-1,70,87,71,-1,71,87,88,-1,71,88,72,-1,72,88,89,-1,72,89,73,-1,73,89,90,-1,73,90,74,-1,74,90,91,-1,74,91,75,-1,75,91,92,-1,75,92,76,-1,76,92,93,-1,76,93,77,-1,77,93,94,-1,77,94,78,-1,78,94,95,-1,78,95,79,-1,79,95,82,-1,80,81,96,-1,80,96,99,-1,80,99,83,-1,81,82,98,-1,81,97,96,-1,81,98,97,-1,82,95,98,-1,83,99,100,-1,83,100,84,-1,84,100,101,-1,84,101,85,-1,85,101,102,-1,85,102,86,-1,86,102,103,-1,86,103,87,-1,87,103,104,-1,87,104,88,-1,88,104,105,-1,88,105,89,-1,89,105,106,-1,89,106,90,-1,90,106,107,-1,90,107,91,-1,91,107,108,-1,91,108,92,-1,92,108,109,-1,92,109,93,-1,93,109,110,-1,93,110,94,-1,94,110,111,-1,94,111,95,-1,95,111,98,-1};
			return value;
		}


		/** Define subarrays using type double[] */
		private double[] getCoordinate_6_221_point_1()
		{
			double[] value = {7.40714,1.20176,0.204102,7.40782,1.20162,0.204104,7.40839,1.20301,0.204876,7.40714,1.20326,0.204873,7.40647,1.20162,0.204104,7.4059,1.20124,0.204108,7.40552,1.20067,0.204116,7.40538,1.2,0.204124,7.40552,1.19932,0.204132,7.4059,1.19875,0.20414,7.40647,1.19837,0.204143,7.40714,1.19824,0.204146,7.40782,1.19837,0.204143,7.40839,1.19875,0.204139,7.40877,1.19932,0.204131,7.4089,1.2,0.204124,7.40877,1.20067,0.204116,7.40839,1.20124,0.204108,7.4059,1.20301,0.204876,7.40944,1.20231,0.204885,7.41015,1.20125,0.204896,7.4104,1.20001,0.204912,7.41015,1.19876,0.204928,7.40944,1.19771,0.204941,7.40839,1.197,0.20495,7.40714,1.19675,0.204953,7.4059,1.197,0.20495,7.40484,1.19771,0.204941,7.40414,1.19876,0.204928,7.40389,1.20001,0.204913,7.40414,1.20125,0.204897,7.40484,1.20231,0.204885,7.40877,1.20402,0.212041,7.40714,1.20435,0.212037,7.40552,1.20402,0.212042,7.41015,1.2031,0.212052,7.41107,1.20172,0.212069,7.4114,1.2001,0.21209,7.41107,1.19847,0.212109,7.41015,1.19709,0.212126,7.40877,1.19617,0.212138,7.40714,1.19585,0.212142,7.40552,1.19617,0.212139,7.40414,1.19709,0.212127,7.40322,1.19847,0.21211,7.40289,1.2001,0.21209,7.40322,1.20172,0.212069,7.40414,1.2031,0.212052,7.40891,1.20445,0.220503,7.40714,1.2048,0.220498,7.40538,1.20445,0.220503,7.4104,1.20345,0.220514,7.4114,1.20196,0.220533,7.41175,1.2002,0.220555,7.4114,1.19844,0.220576,7.4104,1.19695,0.220594,7.40891,1.19595,0.220608,7.40714,1.1956,0.220612,7.40538,1.19595,0.220608,7.40389,1.19695,0.220595,7.40289,1.19844,0.220577,7.40254,1.2002,0.220556,7.40289,1.20196,0.220533,7.40389,1.20345,0.220515,7.40877,1.20423,0.228972,7.40715,1.20456,0.228968,7.40552,1.20423,0.228973,7.41015,1.20331,0.228982,7.41107,1.20193,0.228999,7.4114,1.20031,0.22902,7.41107,1.19868,0.22904,7.41015,1.1973,0.229057,7.40877,1.19638,0.229069,7.40715,1.19605,0.229073,7.40552,1.19638,0.22907,7.40414,1.1973,0.229058,7.40322,1.19868,0.229041,7.4029,1.20031,0.229021,7.40322,1.20193,0.229,7.40414,1.20331,0.228983,7.40839,1.2034,0.23616,7.40715,1.20365,0.236157,7.4059,1.2034,0.236161,7.40945,1.20269,0.236168,7.41015,1.20164,0.236181,7.4104,1.20039,0.236197,7.41015,1.19915,0.236212,7.40945,1.19809,0.236226,7.40839,1.19739,0.236234,7.40715,1.19714,0.236238,7.4059,1.19739,0.236234,7.40485,1.19809,0.236226,7.40414,1.19915,0.236213,7.40389,1.20039,0.236197,7.40414,1.20164,0.236182,7.40485,1.20269,0.236168,7.40782,1.20208,0.240973,7.40715,1.20221,0.24097,7.40647,1.20208,0.240973,7.40839,1.2017,0.240977};
			return value;
		}
		private double[] getCoordinate_6_221_point_2()
		{
			double[] value = {7.40877,1.20113,0.240984,7.40891,1.20045,0.240992,7.40877,1.19978,0.241,7.40839,1.19921,0.241008,7.40782,1.19883,0.241012,7.40715,1.19869,0.241015,7.40647,1.19883,0.241012,7.4059,1.19921,0.241008,7.40552,1.19978,0.241001,7.40539,1.20045,0.240993,7.40552,1.20113,0.240985,7.4059,1.2017,0.240977};
			return value;
		}


		/** Define subarrays using type double[] */
		private double[] getNormal_6_222_vector_1()
		{
			double[] value = {-1.21953E-4,0.0937951,-0.995592,0.159347,0.311407,-0.936821,0.330057,0.739935,-0.586138,-1.42191E-4,0.897047,-0.441935,-0.122903,0.285037,-0.950604,-0.190579,0.205932,-0.959829,-0.258833,0.115836,-0.958951,-0.288195,0.00765403,-0.957541,-0.273344,-0.104695,-0.956202,-0.217399,-0.201909,-0.954971,-0.127956,-0.270646,-0.954137,-0.0193289,-0.300084,-0.953717,0.0926436,-0.285286,-0.953954,0.190222,-0.22916,-0.954621,0.258536,-0.139767,-0.955837,0.288128,-0.0305199,-0.957105,0.27314,0.080142,-0.95863,0.21718,0.179122,-0.959556,-0.271023,0.645818,-0.713769,0.590686,0.557076,-0.583744,0.761609,0.287616,-0.580714,0.816388,-0.0262534,-0.576907,0.747073,-0.337136,-0.572906,0.563543,-0.598234,-0.56968,0.294966,-0.768824,-0.567367,-0.0193601,-0.823675,-0.566731,-0.329907,-0.754441,-0.567433,-0.591053,-0.570831,-0.569919,-0.761774,-0.301998,-0.573147,-0.816639,0.0118064,-0.577028,-0.746999,0.323051,-0.58106,-0.56405,0.583715,-0.584059,0.381193,0.918964,-0.100983,-7.3821E-5,0.996308,-0.0858556,-0.38036,0.917411,-0.116978,0.704454,0.7029,-0.0983663,0.92032,0.379607,-0.094387,0.995972,-0.0014165,-0.0896536,0.920125,-0.382297,-0.0849643,0.703988,-0.705579,-0.0809903,0.380765,-0.92135,-0.0783052,-4.33967E-4,-0.997004,-0.0773541,-0.381327,-0.921125,-0.078217,-0.704407,-0.705179,-0.0808336,-0.920345,-0.381802,-0.0848079,-0.995987,-7.97097E-4,-0.0894997,-0.920154,0.380067,-0.0941584,-0.704169,0.703209,-0.0982002,0.382608,0.92384,-0.0114241,-4.06231E-5,0.999999,0.00150262,-0.382722,0.923522,-0.0251079,0.707111,0.707048,-0.00878867,0.923947,0.382491,-0.00481712,1.0,-1.70388E-5,-1.04229E-4,0.92391,-0.382581,0.00461782,0.707118,-0.707042,0.00865243,0.382664,-0.923818,0.0113527,-6.92158E-5,-0.999924,0.0123076,-0.382885,-0.923725,0.0114173,-0.707071,-0.707088,0.00881632,-0.923865,-0.382689,0.00483433,-1.0,-2.99085E-5,1.00856E-4,-0.92384,0.382751,-0.00465619,-0.707255,0.706906,-0.00859923,0.380929,0.92129,0.0782164,-8.82199E-5,0.995635,0.0933331,-0.381669,0.922204,0.0621974,0.703888,0.705693,0.0808702,0.92009,0.382428,0.0847543,0.99599,0.0014179,0.0894497,0.920242,-0.379845,0.0941915,0.704615,-0.702756,0.0982399,0.381455,-0.918866,0.100887,2.58572E-4,-0.994797,0.10188,-0.381141,-0.918986,0.100975,-0.704089,-0.703268,0.0983461,-0.92009,-0.38017,0.0943703,-0.995967,7.35781E-4,0.0897177,-0.920227,0.382047,0.0849806,-0.704424,0.705149,0.080947,0.372676,0.904579,0.207,-1.20851E-4,0.972522,0.232812,-0.37575,0.909017,0.180278,0.689316,0.693494,0.209544,0.901093,0.377393,0.213556,0.975914,0.00398621,0.21812,0.902084,-0.369652,0.222715,0.690762,-0.686674,0.226555,0.37479,-0.898298,0.229331,0.00108153,-0.973117,0.230307,-0.372459,-0.899257,0.22937,-0.689418,-0.687951,0.226775,-0.901094,-0.371922,0.222941,-0.975888,0.00186782,0.218263,-0.902044,0.375022,0.213717,-0.690902,0.691851,0.209754,0.306394,0.908099,0.285444,-1.77737E-4,0.958416,0.285376,-0.365709,0.885588,0.286339,0.629526,0.721797,0.287587};
			return value;
		}
		private double[] getNormal_6_222_vector_2()
		{
			double[] value = {0.8562,0.426711,0.291272,0.952907,0.0667911,0.295815,0.904747,-0.301963,0.300418,0.718399,-0.625582,0.304221,0.422951,-0.852554,0.307025,0.0631267,-0.949152,0.308424,-0.30615,-0.900836,0.307841,-0.629224,-0.714661,0.305511,-0.856113,-0.419401,0.30195,-0.952869,-0.0593871,0.297511,-0.904444,0.310141,0.292906,-0.718443,0.632737,0.288935};
			return value;
		}


		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_227_coordIndex_1()
		{
			int[] value = {0,1,33,-1,0,2,1,-1,0,3,2,-1,0,4,3,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,17,-1,0,19,18,-1,0,20,19,-1,0,21,20,-1,0,22,21,-1,0,23,22,-1,0,24,23,-1,0,26,25,-1,0,27,26,-1,0,28,27,-1,0,29,28,-1,0,30,29,-1,0,31,30,-1,0,32,31,-1,0,33,32,-1,4,5,6,-1,4,6,7,-1,4,7,8,-1,4,8,86,-1,4,83,39,-1,4,84,83,-1,4,85,84,-1,4,86,85,-1,8,9,58,-1,8,58,67,-1,8,67,68,-1,8,68,69,-1,8,69,70,-1,8,70,73,-1,8,73,89,-1,8,87,86,-1,8,88,87,-1,8,89,88,-1,9,10,58,-1,10,11,58,-1,11,12,58,-1,12,13,66,-1,12,66,58,-1,13,14,96,-1,13,96,66,-1,14,15,40,-1,14,40,43,-1,14,43,57,-1,14,57,96,-1,15,16,40,-1,16,17,40,-1,17,18,40,-1,18,19,22,-1,18,22,76,-1,18,50,51,-1,18,51,54,-1,18,54,55,-1,18,55,56,-1,18,56,40,-1,18,76,82,-1,18,80,50,-1,18,81,80,-1,18,82,81,-1,19,20,22,-1,20,21,22,-1,22,34,79,-1,22,77,76,-1,22,78,77,-1,22,79,78,-1,25,26,39,-1,25,39,36,-1,26,27,39,-1,27,28,39,-1,28,29,39,-1,29,30,39,-1,30,31,39,-1,31,32,39,-1,32,33,39,-1,33,37,39,-1,34,35,39,-1,34,39,79,-1,35,36,39,-1,37,38,39,-1,39,57,93,-1,39,66,96,-1,39,76,77,-1,39,77,78,-1,39,78,79,-1,39,83,84,-1,39,84,85,-1,39,85,86,-1,39,86,90,-1,39,90,91,-1,39,91,92,-1,39,92,66,-1,39,93,94,-1,39,94,95,-1,39,95,76,-1,39,96,57,-1,40,41,42,-1,40,42,43,-1,40,51,52,-1,40,52,53,-1,40,54,51,-1,40,55,54,-1,40,56,55,-1,43,44,57,-1,44,45,46,-1,44,46,47,-1,44,47,48,-1,44,48,49,-1,44,49,50,-1,44,50,80,-1,44,76,95,-1,44,80,81,-1,44,81,82,-1,44,82,76,-1,44,93,57,-1,44,94,93,-1,44,95,94,-1,58,59,60,-1,58,60,61,-1,58,61,72,-1,58,66,65,-1,58,68,67,-1,58,69,68,-1,58,70,69,-1,58,71,70,-1,58,72,71,-1,62,63,64,-1,62,64,65,-1,62,65,66,-1,62,66,92,-1,62,73,74,-1,62,74,75,-1,62,86,87,-1,62,87,88,-1,62,88,89,-1,62,89,73,-1,62,90,86,-1,62,91,90,-1,62,92,91,-1,97,99,98,-1,97,100,99,-1,97,101,100,-1,97,102,101,-1,97,103,102,-1,97,104,103,-1,97,105,104,-1};
			return value;
		}


		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_227_normalIndex_1()
		{
			int[] value = {0,1,33,-1,0,2,1,-1,0,3,2,-1,0,4,3,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,17,-1,0,19,18,-1,0,20,19,-1,0,21,20,-1,0,22,21,-1,0,23,22,-1,0,24,23,-1,0,26,25,-1,0,27,26,-1,0,28,27,-1,0,29,28,-1,0,30,29,-1,0,31,30,-1,0,32,31,-1,0,33,32,-1,4,5,6,-1,4,6,7,-1,4,7,8,-1,4,8,86,-1,4,83,39,-1,4,84,83,-1,4,85,84,-1,4,86,85,-1,8,9,58,-1,8,58,67,-1,8,67,68,-1,8,68,69,-1,8,69,70,-1,8,70,73,-1,8,73,89,-1,8,87,86,-1,8,88,87,-1,8,89,88,-1,9,10,58,-1,10,11,58,-1,11,12,58,-1,12,13,66,-1,12,66,58,-1,13,14,96,-1,13,96,66,-1,14,15,40,-1,14,40,43,-1,14,43,57,-1,14,57,96,-1,15,16,40,-1,16,17,40,-1,17,18,40,-1,18,19,22,-1,18,22,76,-1,18,50,51,-1,18,51,54,-1,18,54,55,-1,18,55,56,-1,18,56,40,-1,18,76,82,-1,18,80,50,-1,18,81,80,-1,18,82,81,-1,19,20,22,-1,20,21,22,-1,22,34,79,-1,22,77,76,-1,22,78,77,-1,22,79,78,-1,25,26,39,-1,25,39,36,-1,26,27,39,-1,27,28,39,-1,28,29,39,-1,29,30,39,-1,30,31,39,-1,31,32,39,-1,32,33,39,-1,33,37,39,-1,34,35,39,-1,34,39,79,-1,35,36,39,-1,37,38,39,-1,39,57,93,-1,39,66,96,-1,39,76,77,-1,39,77,78,-1,39,78,79,-1,39,83,84,-1,39,84,85,-1,39,85,86,-1,39,86,90,-1,39,90,91,-1,39,91,92,-1,39,92,66,-1,39,93,94,-1,39,94,95,-1,39,95,76,-1,39,96,57,-1,40,41,42,-1,40,42,43,-1,40,51,52,-1,40,52,53,-1,40,54,51,-1,40,55,54,-1,40,56,55,-1,43,44,57,-1,44,45,46,-1,44,46,47,-1,44,47,48,-1,44,48,49,-1,44,49,50,-1,44,50,80,-1,44,76,95,-1,44,80,81,-1,44,81,82,-1,44,82,76,-1,44,93,57,-1,44,94,93,-1,44,95,94,-1,58,59,60,-1,58,60,61,-1,58,61,72,-1,58,66,65,-1,58,68,67,-1,58,69,68,-1,58,70,69,-1,58,71,70,-1,58,72,71,-1,62,63,64,-1,62,64,65,-1,62,65,66,-1,62,66,92,-1,62,73,74,-1,62,74,75,-1,62,86,87,-1,62,87,88,-1,62,88,89,-1,62,89,73,-1,62,90,86,-1,62,91,90,-1,62,92,91,-1,97,99,98,-1,97,100,99,-1,97,101,100,-1,97,102,101,-1,97,103,102,-1,97,104,103,-1,97,105,104,-1};
			return value;
		}


		/** Define subarrays using type double[] */
		private double[] getCoordinate_6_227_point_1()
		{
			double[] value = {7.5088,1.07637,0.31791,7.50878,1.07637,0.205274,7.50878,1.07787,0.197165,7.50878,1.0843,0.191349,7.50878,1.09371,0.191196,7.50878,1.11105,0.191196,7.50878,1.12838,0.191196,7.50878,1.14572,0.191196,7.50878,1.16306,0.191196,7.50878,1.16306,0.205274,7.50879,1.16306,0.219354,7.50879,1.16306,0.233434,7.50879,1.16306,0.247512,7.50879,1.16306,0.261592,7.50879,1.16306,0.275672,7.50879,1.16306,0.28975,7.5088,1.16306,0.30383,7.5088,1.16306,0.31791,7.5088,1.16306,0.331989,7.5088,1.14572,0.331989,7.5088,1.12838,0.331989,7.5088,1.11105,0.331989,7.5088,1.09371,0.331989,7.5088,1.0843,0.331835,7.5088,1.07787,0.326019,7.5126,1.07637,0.31791,7.5126,1.07637,0.30383,7.5126,1.07637,0.28975,7.5126,1.07637,0.275671,7.5126,1.07637,0.261591,7.5126,1.07637,0.247512,7.51259,1.07637,0.233433,7.51259,1.07637,0.219353,7.51259,1.07637,0.205273,7.5126,1.09371,0.331988,7.5126,1.0843,0.331835,7.5126,1.07787,0.326019,7.51259,1.07787,0.197164,7.51259,1.0843,0.191348,7.51259,1.09371,0.191195,7.5088,1.24974,0.31791,7.5088,1.24974,0.30383,7.50879,1.24974,0.28975,7.50879,1.24533,0.277417,7.5126,1.24533,0.277417,7.5126,1.24974,0.28975,7.5126,1.24974,0.30383,7.5126,1.24974,0.31791,7.5126,1.24789,0.324555,7.5126,1.24481,0.329792,7.5126,1.23241,0.331988,7.5088,1.23241,0.331989,7.5088,1.24481,0.329792,7.5088,1.24789,0.324555,7.5088,1.21507,0.331989,7.5088,1.19773,0.331989,7.5088,1.18039,0.331989,7.5126,1.16306,0.275671,7.50879,1.24533,0.245767,7.50879,1.24974,0.233434,7.50879,1.24974,0.219354,7.50878,1.24974,0.205274,7.51259,1.24974,0.205273,7.51259,1.24974,0.219353,7.51259,1.24974,0.233433,7.5126,1.24533,0.245766,7.5126,1.16306,0.247512,7.50878,1.18039,0.191196,7.50878,1.19773,0.191196,7.50878,1.21507,0.191196,7.50878,1.23241,0.191196,7.50878,1.24481,0.193391,7.50878,1.24789,0.198628,7.51259,1.23241,0.191195,7.51259,1.24481,0.193391,7.51259,1.24789,0.198628,7.5126,1.16306,0.331988,7.5126,1.14572,0.331988,7.5126,1.12838,0.331988,7.5126,1.11105,0.331988,7.5126,1.21507,0.331988,7.5126,1.19773,0.331988,7.5126,1.18039,0.331988,7.51259,1.11105,0.191195,7.51259,1.12838,0.191195,7.51259,1.14572,0.191195,7.51259,1.16306,0.191195,7.51259,1.18039,0.191195,7.51259,1.19773,0.191195,7.51259,1.21507,0.191195,7.51259,1.16306,0.205273,7.51259,1.16306,0.219353,7.51259,1.16306,0.233433,7.5126,1.16306,0.28975,7.5126,1.16306,0.30383,7.5126,1.16306,0.31791,7.5126,1.16306,0.261591,7.5088,1.07637,0.31791,7.5088,1.07637,0.30383,7.50879,1.07637,0.28975};
			return value;
		}
		private double[] getCoordinate_6_227_point_2()
		{
			double[] value = {7.50879,1.07637,0.275672,7.50879,1.07637,0.261592,7.50879,1.07637,0.247512,7.50879,1.07637,0.233434,7.50879,1.07637,0.219354,7.50878,1.07637,0.205274};
			return value;
		}


		/** Define subarrays using type double[] */
		private double[] getNormal_6_228_vector_1()
		{
			double[] value = {-0.931243,-0.364399,9.75195E-5,-0.707107,-0.707107,7.4048E-5,-1.0,1.17154E-12,1.0472E-4,-1.0,-2.37938E-13,1.0472E-4,-0.371488,-3.46617E-14,-0.928438,-1.0,0.0,1.0472E-4,-1.0,0.0,1.0472E-4,-1.0,0.0,1.0472E-4,-0.554787,-1.85847E-14,-0.831992,-1.0,3.34954E-14,1.0472E-4,-1.0,-1.79726E-14,1.0472E-4,-1.0,-3.94869E-14,1.0472E-4,-0.902764,0.307314,0.300959,-0.5547,0.83205,5.80881E-5,-0.871137,0.440176,-0.217638,-1.0,-5.68511E-15,1.0472E-4,-1.0,-5.68511E-15,1.0472E-4,-1.0,0.0,1.0472E-4,-0.554613,0.0,0.832108,-1.0,0.0,1.0472E-4,-1.0,0.0,1.0472E-4,-1.0,0.0,1.0472E-4,-0.371293,-3.97061E-14,0.928516,-1.0,-1.06912E-13,1.0472E-4,-1.0,0.0,1.0472E-4,0.894427,-0.447214,-9.36642E-5,0.707107,-0.707107,-7.4048E-5,0.707107,-0.707107,-7.4048E-5,0.707107,-0.707107,-7.4048E-5,0.707107,-0.707107,-7.4048E-5,0.707107,-0.707107,-7.4048E-5,0.707107,-0.707107,-7.4048E-5,0.707107,-0.707107,-7.4048E-5,0.707107,-0.707107,-7.4048E-5,0.894474,9.60448E-14,0.44712,1.0,-3.73133E-14,-1.0472E-4,1.0,-4.17727E-13,-1.0472E-4,1.0,0.0,-1.0472E-4,1.0,0.0,-1.0472E-4,0.999311,-2.29734E-14,-0.0371163,-1.0,-1.89504E-15,1.0472E-4,0.0,0.0,0.0,-1.0,0.0,1.0472E-4,-0.707181,0.0149971,-0.706874,0.997046,0.00162666,-0.0767837,1.0,0.0,-1.0472E-4,1.0,-8.92884E-13,-1.0472E-4,1.0,-8.92884E-13,-1.0472E-4,1.0,0.0,-1.0472E-4,1.0,0.0,-1.0472E-4,0.707181,0.0,0.707033,-0.89438,0.0,0.447307,-1.0,0.0,1.0472E-4,-1.0,0.0,1.0472E-4,-1.0,0.0,1.0472E-4,-1.0,0.0,1.0472E-4,-1.0,0.0,1.0472E-4,0.79931,0.277758,-0.532874,-0.988356,0.00322499,0.152126,-1.0,-4.46442E-13,1.0472E-4,-1.0,6.69644E-13,1.0472E-4,-1.0,3.61823E-13,1.0472E-4,1.0,2.07324E-14,-1.0472E-4,0.0,0.0,0.0,1.0,0.0,-1.0472E-4,0.894474,0.00948499,0.447019,0.813668,0.415441,0.406636,-1.0,0.0,1.0472E-4,-1.0,0.0,1.0472E-4,-1.0,0.0,1.0472E-4,-0.894474,0.0,-0.44712,-1.0,3.50149E-13,1.0472E-4,-1.0,-1.80893E-13,1.0472E-4,0.707033,7.18797E-14,-0.707181,1.0,1.01653E-13,-1.0472E-4,1.0,0.0,-1.0472E-4,0.800063,-1.91708E-14,0.599916,0.707181,0.0,0.707033,0.707181,0.0,0.707033,0.707181,0.0,0.707033,0.707181,0.0,0.707033,0.707181,0.0,0.707033,0.707181,0.0,0.707033,-1.0472E-4,0.0,-1.0,-1.0472E-4,0.0,-1.0,-1.0472E-4,0.0,-1.0,0.707033,0.0,-0.707181,0.707033,0.0,-0.707181,0.707033,0.0,-0.707181,0.707033,0.0,-0.707181,1.0,0.0,-1.0472E-4,1.0,1.13705E-14,-1.0472E-4,1.0,1.13705E-14,-1.0472E-4,1.0,5.53524E-14,-1.0472E-4,1.0,-3.28911E-14,-1.0472E-4,1.0,-1.13705E-13,-1.0472E-4,0.5547,0.83205,-5.80881E-5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0};
			return value;
		}
		private double[] getNormal_6_228_vector_2()
		{
			double[] value = {0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0};
			return value;
		}


		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_233_coordIndex_1()
		{
			int[] value = {0,1,9,-1,0,2,1,-1,0,3,2,-1,0,4,3,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,14,-1,0,9,8,-1,0,10,7,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,1,2,22,-1,1,15,9,-1,1,16,15,-1,1,17,16,-1,1,18,17,-1,1,19,18,-1,1,20,19,-1,1,21,25,-1,1,22,21,-1,1,23,20,-1,1,24,23,-1,1,25,24,-1,2,3,30,-1,2,30,31,-1,2,31,22,-1,3,4,28,-1,3,28,29,-1,3,29,30,-1,4,5,27,-1,4,27,28,-1,5,6,27,-1,6,7,35,-1,6,26,27,-1,6,35,42,-1,6,38,26,-1,6,39,38,-1,6,40,39,-1,6,41,40,-1,6,42,41,-1,7,10,37,-1,7,36,35,-1,7,37,36,-1,8,9,29,-1,8,26,14,-1,8,27,26,-1,8,28,27,-1,8,29,28,-1,9,15,16,-1,9,16,17,-1,9,17,34,-1,9,30,29,-1,9,31,30,-1,9,32,31,-1,9,33,32,-1,9,34,33,-1,10,11,12,-1,10,12,13,-1,10,13,38,-1,10,38,39,-1,10,39,40,-1,10,40,41,-1,10,41,42,-1,10,42,37,-1,13,14,46,-1,13,45,38,-1,13,46,45,-1,14,26,43,-1,14,43,46,-1,17,18,65,-1,17,65,34,-1,18,19,51,-1,18,51,65,-1,19,20,51,-1,20,23,74,-1,20,47,51,-1,20,74,47,-1,21,22,31,-1,21,31,32,-1,21,32,53,-1,21,47,58,-1,21,53,47,-1,21,56,25,-1,21,57,56,-1,21,58,57,-1,23,24,25,-1,23,25,74,-1,25,56,74,-1,26,38,45,-1,26,44,43,-1,26,45,44,-1,32,33,55,-1,32,54,53,-1,32,55,54,-1,33,34,59,-1,33,59,60,-1,33,60,61,-1,33,61,70,-1,33,66,51,-1,33,67,66,-1,33,68,67,-1,33,69,68,-1,33,70,69,-1,34,65,59,-1,35,36,42,-1,36,37,42,-1,47,48,51,-1,47,52,48,-1,47,53,52,-1,47,74,83,-1,47,83,58,-1,48,49,51,-1,48,52,49,-1,49,50,51,-1,49,52,50,-1,50,52,51,-1,51,62,63,-1,51,63,65,-1,51,66,73,-1,51,71,62,-1,51,72,71,-1,51,73,72,-1,56,57,87,-1,56,83,74,-1,56,85,84,-1,56,86,85,-1,56,87,86,-1,57,58,87,-1,58,88,87,-1,59,61,60,-1,59,62,61,-1,59,63,62,-1,59,64,63,-1,59,65,64,-1,61,62,70,-1,62,71,70,-1,63,64,65,-1,66,67,78,-1,66,78,81,-1,66,81,73,-1,67,68,80,-1,67,79,78,-1,67,80,79,-1,68,69,80,-1,69,70,77,-1,69,77,80,-1,70,71,76,-1,70,75,77,-1,70,76,75,-1,71,72,82,-1,71,82,76,-1,72,73,82,-1,73,81,82,-1,75,76,82,-1,75,82,77,-1,77,82,80,-1,78,79,81,-1,79,80,81,-1,80,82,81,-1};
			return value;
		}


		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_233_normalIndex_1()
		{
			int[] value = {0,1,9,-1,0,2,1,-1,0,3,2,-1,0,4,3,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,14,-1,0,9,8,-1,0,10,7,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,1,2,22,-1,1,15,9,-1,1,16,15,-1,1,17,16,-1,1,18,17,-1,1,19,18,-1,1,20,19,-1,1,21,25,-1,1,22,21,-1,1,23,20,-1,1,24,23,-1,1,25,24,-1,2,3,30,-1,2,30,31,-1,2,31,22,-1,3,4,28,-1,3,28,29,-1,3,29,30,-1,4,5,27,-1,4,27,28,-1,5,6,27,-1,6,7,35,-1,6,26,27,-1,6,35,42,-1,6,38,26,-1,6,39,38,-1,6,40,39,-1,6,41,40,-1,6,42,41,-1,7,10,37,-1,7,36,35,-1,7,37,36,-1,8,9,29,-1,8,26,14,-1,8,27,26,-1,8,28,27,-1,8,29,28,-1,9,15,16,-1,9,16,17,-1,9,17,34,-1,9,30,29,-1,9,31,30,-1,9,32,31,-1,9,33,32,-1,9,34,33,-1,10,11,12,-1,10,12,13,-1,10,13,38,-1,10,38,39,-1,10,39,40,-1,10,40,41,-1,10,41,42,-1,10,42,37,-1,13,14,46,-1,13,45,38,-1,13,46,45,-1,14,26,43,-1,14,43,46,-1,17,18,65,-1,17,65,34,-1,18,19,51,-1,18,51,65,-1,19,20,51,-1,20,23,74,-1,20,47,51,-1,20,74,47,-1,21,22,31,-1,21,31,32,-1,21,32,53,-1,21,47,58,-1,21,53,47,-1,21,56,25,-1,21,57,56,-1,21,58,57,-1,23,24,25,-1,23,25,74,-1,25,56,74,-1,26,38,45,-1,26,44,43,-1,26,45,44,-1,32,33,55,-1,32,54,53,-1,32,55,54,-1,33,34,59,-1,33,59,60,-1,33,60,61,-1,33,61,70,-1,33,66,51,-1,33,67,66,-1,33,68,67,-1,33,69,68,-1,33,70,69,-1,34,65,59,-1,35,36,42,-1,36,37,42,-1,47,48,51,-1,47,52,48,-1,47,53,52,-1,47,74,83,-1,47,83,58,-1,48,49,51,-1,48,52,49,-1,49,50,51,-1,49,52,50,-1,50,52,51,-1,51,62,63,-1,51,63,65,-1,51,66,73,-1,51,71,62,-1,51,72,71,-1,51,73,72,-1,56,57,87,-1,56,83,74,-1,56,85,84,-1,56,86,85,-1,56,87,86,-1,57,58,87,-1,58,88,87,-1,59,61,60,-1,59,62,61,-1,59,63,62,-1,59,64,63,-1,59,65,64,-1,61,62,70,-1,62,71,70,-1,63,64,65,-1,66,67,78,-1,66,78,81,-1,66,81,73,-1,67,68,80,-1,67,79,78,-1,67,80,79,-1,68,69,80,-1,69,70,77,-1,69,77,80,-1,70,71,76,-1,70,75,77,-1,70,76,75,-1,71,72,82,-1,71,82,76,-1,72,73,82,-1,73,81,82,-1,75,76,82,-1,75,82,77,-1,77,82,80,-1,78,79,81,-1,79,80,81,-1,80,82,81,-1};
			return value;
		}




		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_239_coordIndex_1()
		{
			int[] value = {0,1,37,-1,0,2,1,-1,0,3,2,-1,0,4,3,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,38,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,17,-1,0,19,18,-1,0,20,19,-1,0,21,20,-1,0,22,21,-1,0,23,22,-1,0,24,23,-1,0,25,24,-1,0,26,25,-1,0,27,26,-1,0,28,27,-1,0,29,28,-1,0,30,29,-1,0,31,30,-1,0,32,31,-1,0,33,32,-1,0,34,33,-1,0,35,34,-1,0,36,35,-1,0,37,36,-1,0,38,10,-1,1,2,39,-1,1,39,37,-1,2,3,10,-1,2,10,39,-1,3,4,10,-1,4,5,10,-1,5,6,10,-1,6,7,10,-1,7,8,10,-1,8,9,10,-1,10,38,40,-1,10,40,41,-1,10,41,42,-1,10,42,43,-1,10,43,44,-1,10,44,45,-1,10,45,46,-1,10,46,47,-1,10,47,48,-1,10,48,64,-1,10,49,39,-1,10,50,49,-1,10,51,50,-1,10,52,51,-1,10,53,52,-1,10,54,53,-1,10,55,54,-1,10,56,55,-1,10,57,56,-1,10,58,57,-1,10,59,58,-1,10,60,59,-1,10,61,60,-1,10,62,61,-1,10,63,62,-1,10,64,63,-1,11,12,13,-1,11,13,14,-1,11,14,15,-1,11,15,16,-1,11,16,17,-1,11,17,18,-1,11,18,19,-1,11,19,47,-1,11,40,38,-1,11,41,40,-1,11,42,41,-1,11,43,42,-1,11,44,43,-1,11,45,44,-1,11,46,45,-1,11,47,46,-1,19,20,48,-1,19,48,47,-1,20,21,22,-1,20,22,23,-1,20,23,24,-1,20,24,25,-1,20,25,26,-1,20,26,27,-1,20,27,28,-1,20,28,57,-1,20,57,58,-1,20,58,59,-1,20,59,60,-1,20,60,61,-1,20,61,62,-1,20,62,63,-1,20,63,64,-1,20,64,48,-1,28,29,56,-1,28,56,57,-1,29,30,39,-1,29,39,56,-1,30,31,39,-1,31,32,39,-1,32,33,39,-1,33,34,39,-1,34,35,39,-1,35,36,39,-1,36,37,39,-1,39,49,50,-1,39,50,51,-1,39,51,52,-1,39,52,53,-1,39,53,54,-1,39,54,55,-1,39,55,56,-1,65,67,66,-1,65,68,67,-1,65,69,68,-1,65,70,69,-1,65,71,70,-1,65,72,71,-1,65,73,72,-1};
			return value;
		}


		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_239_normalIndex_1()
		{
			int[] value = {0,1,37,-1,0,2,1,-1,0,3,2,-1,0,4,3,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,38,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,17,-1,0,19,18,-1,0,20,19,-1,0,21,20,-1,0,22,21,-1,0,23,22,-1,0,24,23,-1,0,25,24,-1,0,26,25,-1,0,27,26,-1,0,28,27,-1,0,29,28,-1,0,30,29,-1,0,31,30,-1,0,32,31,-1,0,33,32,-1,0,34,33,-1,0,35,34,-1,0,36,35,-1,0,37,36,-1,0,38,10,-1,1,2,39,-1,1,39,37,-1,2,3,10,-1,2,10,39,-1,3,4,10,-1,4,5,10,-1,5,6,10,-1,6,7,10,-1,7,8,10,-1,8,9,10,-1,10,38,40,-1,10,40,41,-1,10,41,42,-1,10,42,43,-1,10,43,44,-1,10,44,45,-1,10,45,46,-1,10,46,47,-1,10,47,48,-1,10,48,64,-1,10,49,39,-1,10,50,49,-1,10,51,50,-1,10,52,51,-1,10,53,52,-1,10,54,53,-1,10,55,54,-1,10,56,55,-1,10,57,56,-1,10,58,57,-1,10,59,58,-1,10,60,59,-1,10,61,60,-1,10,62,61,-1,10,63,62,-1,10,64,63,-1,11,12,13,-1,11,13,14,-1,11,14,15,-1,11,15,16,-1,11,16,17,-1,11,17,18,-1,11,18,19,-1,11,19,47,-1,11,40,38,-1,11,41,40,-1,11,42,41,-1,11,43,42,-1,11,44,43,-1,11,45,44,-1,11,46,45,-1,11,47,46,-1,19,20,48,-1,19,48,47,-1,20,21,22,-1,20,22,23,-1,20,23,24,-1,20,24,25,-1,20,25,26,-1,20,26,27,-1,20,27,28,-1,20,28,57,-1,20,57,58,-1,20,58,59,-1,20,59,60,-1,20,60,61,-1,20,61,62,-1,20,62,63,-1,20,63,64,-1,20,64,48,-1,28,29,56,-1,28,56,57,-1,29,30,39,-1,29,39,56,-1,30,31,39,-1,31,32,39,-1,32,33,39,-1,33,34,39,-1,34,35,39,-1,35,36,39,-1,36,37,39,-1,39,49,50,-1,39,50,51,-1,39,51,52,-1,39,52,53,-1,39,53,54,-1,39,54,55,-1,39,55,56,-1,65,67,66,-1,65,68,67,-1,65,69,68,-1,65,70,69,-1,65,71,70,-1,65,72,71,-1,65,73,72,-1};
			return value;
		}




		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_245_coordIndex_1()
		{
			int[] value = {0,1,37,-1,0,2,1,-1,0,3,2,-1,0,4,3,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,38,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,17,-1,0,19,18,-1,0,20,19,-1,0,21,20,-1,0,22,21,-1,0,23,22,-1,0,24,23,-1,0,25,24,-1,0,26,25,-1,0,27,26,-1,0,28,27,-1,0,29,28,-1,0,30,29,-1,0,31,30,-1,0,32,31,-1,0,33,32,-1,0,34,33,-1,0,35,34,-1,0,36,35,-1,0,37,36,-1,0,38,10,-1,1,2,39,-1,1,39,37,-1,2,3,10,-1,2,10,39,-1,3,4,10,-1,4,5,10,-1,5,6,10,-1,6,7,10,-1,7,8,10,-1,8,9,10,-1,10,38,40,-1,10,40,41,-1,10,41,42,-1,10,42,43,-1,10,43,44,-1,10,44,45,-1,10,45,46,-1,10,46,47,-1,10,47,48,-1,10,48,64,-1,10,49,39,-1,10,50,49,-1,10,51,50,-1,10,52,51,-1,10,53,52,-1,10,54,53,-1,10,55,54,-1,10,56,55,-1,10,57,56,-1,10,58,57,-1,10,59,58,-1,10,60,59,-1,10,61,60,-1,10,62,61,-1,10,63,62,-1,10,64,63,-1,11,12,13,-1,11,13,14,-1,11,14,15,-1,11,15,16,-1,11,16,17,-1,11,17,18,-1,11,18,19,-1,11,19,47,-1,11,40,38,-1,11,41,40,-1,11,42,41,-1,11,43,42,-1,11,44,43,-1,11,45,44,-1,11,46,45,-1,11,47,46,-1,19,20,48,-1,19,48,47,-1,20,21,22,-1,20,22,23,-1,20,23,24,-1,20,24,25,-1,20,25,26,-1,20,26,27,-1,20,27,28,-1,20,28,57,-1,20,57,58,-1,20,58,59,-1,20,59,60,-1,20,60,61,-1,20,61,62,-1,20,62,63,-1,20,63,64,-1,20,64,48,-1,28,29,56,-1,28,56,57,-1,29,30,39,-1,29,39,56,-1,30,31,39,-1,31,32,39,-1,32,33,39,-1,33,34,39,-1,34,35,39,-1,35,36,39,-1,36,37,39,-1,39,49,50,-1,39,50,51,-1,39,51,52,-1,39,52,53,-1,39,53,54,-1,39,54,55,-1,39,55,56,-1,65,67,66,-1,65,68,67,-1,65,69,68,-1,65,70,69,-1,65,71,70,-1,65,72,71,-1,65,73,72,-1};
			return value;
		}


		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_245_normalIndex_1()
		{
			int[] value = {0,1,37,-1,0,2,1,-1,0,3,2,-1,0,4,3,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,38,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,17,-1,0,19,18,-1,0,20,19,-1,0,21,20,-1,0,22,21,-1,0,23,22,-1,0,24,23,-1,0,25,24,-1,0,26,25,-1,0,27,26,-1,0,28,27,-1,0,29,28,-1,0,30,29,-1,0,31,30,-1,0,32,31,-1,0,33,32,-1,0,34,33,-1,0,35,34,-1,0,36,35,-1,0,37,36,-1,0,38,10,-1,1,2,39,-1,1,39,37,-1,2,3,10,-1,2,10,39,-1,3,4,10,-1,4,5,10,-1,5,6,10,-1,6,7,10,-1,7,8,10,-1,8,9,10,-1,10,38,40,-1,10,40,41,-1,10,41,42,-1,10,42,43,-1,10,43,44,-1,10,44,45,-1,10,45,46,-1,10,46,47,-1,10,47,48,-1,10,48,64,-1,10,49,39,-1,10,50,49,-1,10,51,50,-1,10,52,51,-1,10,53,52,-1,10,54,53,-1,10,55,54,-1,10,56,55,-1,10,57,56,-1,10,58,57,-1,10,59,58,-1,10,60,59,-1,10,61,60,-1,10,62,61,-1,10,63,62,-1,10,64,63,-1,11,12,13,-1,11,13,14,-1,11,14,15,-1,11,15,16,-1,11,16,17,-1,11,17,18,-1,11,18,19,-1,11,19,47,-1,11,40,38,-1,11,41,40,-1,11,42,41,-1,11,43,42,-1,11,44,43,-1,11,45,44,-1,11,46,45,-1,11,47,46,-1,19,20,48,-1,19,48,47,-1,20,21,22,-1,20,22,23,-1,20,23,24,-1,20,24,25,-1,20,25,26,-1,20,26,27,-1,20,27,28,-1,20,28,57,-1,20,57,58,-1,20,58,59,-1,20,59,60,-1,20,60,61,-1,20,61,62,-1,20,62,63,-1,20,63,64,-1,20,64,48,-1,28,29,56,-1,28,56,57,-1,29,30,39,-1,29,39,56,-1,30,31,39,-1,31,32,39,-1,32,33,39,-1,33,34,39,-1,34,35,39,-1,35,36,39,-1,36,37,39,-1,39,49,50,-1,39,50,51,-1,39,51,52,-1,39,52,53,-1,39,53,54,-1,39,54,55,-1,39,55,56,-1,65,67,66,-1,65,68,67,-1,65,69,68,-1,65,70,69,-1,65,71,70,-1,65,72,71,-1,65,73,72,-1};
			return value;
		}




		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_251_coordIndex_1()
		{
			int[] value = {0,1,8,-1,0,2,1,-1,0,3,2,-1,0,4,7,-1,0,5,4,-1,0,6,5,-1,0,7,3,-1,0,8,6,-1,1,2,10,-1,1,9,11,-1,1,10,9,-1,1,11,8,-1,2,3,10,-1,3,7,46,-1,3,13,10,-1,3,16,13,-1,3,19,16,-1,3,22,19,-1,3,25,22,-1,3,28,25,-1,3,31,28,-1,3,34,31,-1,3,37,34,-1,3,40,37,-1,3,43,40,-1,3,46,43,-1,4,5,45,-1,4,45,7,-1,5,6,51,-1,5,47,45,-1,5,51,52,-1,5,52,47,-1,6,8,48,-1,6,48,51,-1,7,45,46,-1,8,11,50,-1,8,49,48,-1,8,50,49,-1,9,10,13,-1,9,12,14,-1,9,13,12,-1,9,14,11,-1,11,14,50,-1,12,13,16,-1,12,15,17,-1,12,16,15,-1,12,17,14,-1,14,17,63,-1,14,63,50,-1,15,16,19,-1,15,18,20,-1,15,19,18,-1,15,20,17,-1,17,20,62,-1,17,62,63,-1,18,19,22,-1,18,21,23,-1,18,22,21,-1,18,23,20,-1,20,23,61,-1,20,61,62,-1,21,22,25,-1,21,24,26,-1,21,25,24,-1,21,26,23,-1,23,26,60,-1,23,60,61,-1,24,25,28,-1,24,27,29,-1,24,28,27,-1,24,29,26,-1,26,29,59,-1,26,59,60,-1,27,28,31,-1,27,30,32,-1,27,31,30,-1,27,32,29,-1,29,32,58,-1,29,58,59,-1,30,31,34,-1,30,33,35,-1,30,34,33,-1,30,35,32,-1,32,35,57,-1,32,57,58,-1,33,34,37,-1,33,36,38,-1,33,37,36,-1,33,38,35,-1,35,38,56,-1,35,56,57,-1,36,37,40,-1,36,39,41,-1,36,40,39,-1,36,41,38,-1,38,41,55,-1,38,55,56,-1,39,40,43,-1,39,42,44,-1,39,43,42,-1,39,44,41,-1,41,44,54,-1,41,54,55,-1,42,43,46,-1,42,45,47,-1,42,46,45,-1,42,47,44,-1,44,47,53,-1,44,53,54,-1,47,52,53,-1,48,49,51,-1,49,50,63,-1,49,52,51,-1,49,53,52,-1,49,54,53,-1,49,55,54,-1,49,56,55,-1,49,57,56,-1,49,58,57,-1,49,59,58,-1,49,60,59,-1,49,61,60,-1,49,62,61,-1,49,63,62,-1};
			return value;
		}


		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_251_normalIndex_1()
		{
			int[] value = {0,1,8,-1,0,2,1,-1,0,3,2,-1,0,4,7,-1,0,5,4,-1,0,6,5,-1,0,7,3,-1,0,8,6,-1,1,2,10,-1,1,9,11,-1,1,10,9,-1,1,11,8,-1,2,3,10,-1,3,7,46,-1,3,13,10,-1,3,16,13,-1,3,19,16,-1,3,22,19,-1,3,25,22,-1,3,28,25,-1,3,31,28,-1,3,34,31,-1,3,37,34,-1,3,40,37,-1,3,43,40,-1,3,46,43,-1,4,5,45,-1,4,45,7,-1,5,6,51,-1,5,47,45,-1,5,51,52,-1,5,52,47,-1,6,8,48,-1,6,48,51,-1,7,45,46,-1,8,11,50,-1,8,49,48,-1,8,50,49,-1,9,10,13,-1,9,12,14,-1,9,13,12,-1,9,14,11,-1,11,14,50,-1,12,13,16,-1,12,15,17,-1,12,16,15,-1,12,17,14,-1,14,17,63,-1,14,63,50,-1,15,16,19,-1,15,18,20,-1,15,19,18,-1,15,20,17,-1,17,20,62,-1,17,62,63,-1,18,19,22,-1,18,21,23,-1,18,22,21,-1,18,23,20,-1,20,23,61,-1,20,61,62,-1,21,22,25,-1,21,24,26,-1,21,25,24,-1,21,26,23,-1,23,26,60,-1,23,60,61,-1,24,25,28,-1,24,27,29,-1,24,28,27,-1,24,29,26,-1,26,29,59,-1,26,59,60,-1,27,28,31,-1,27,30,32,-1,27,31,30,-1,27,32,29,-1,29,32,58,-1,29,58,59,-1,30,31,34,-1,30,33,35,-1,30,34,33,-1,30,35,32,-1,32,35,57,-1,32,57,58,-1,33,34,37,-1,33,36,38,-1,33,37,36,-1,33,38,35,-1,35,38,56,-1,35,56,57,-1,36,37,40,-1,36,39,41,-1,36,40,39,-1,36,41,38,-1,38,41,55,-1,38,55,56,-1,39,40,43,-1,39,42,44,-1,39,43,42,-1,39,44,41,-1,41,44,54,-1,41,54,55,-1,42,43,46,-1,42,45,47,-1,42,46,45,-1,42,47,44,-1,44,47,53,-1,44,53,54,-1,47,52,53,-1,48,49,51,-1,49,50,63,-1,49,52,51,-1,49,53,52,-1,49,54,53,-1,49,55,54,-1,49,56,55,-1,49,57,56,-1,49,58,57,-1,49,59,58,-1,49,60,59,-1,49,61,60,-1,49,62,61,-1,49,63,62,-1};
			return value;
		}




		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_257_coordIndex_1()
		{
			int[] value = {0,1,8,-1,0,2,1,-1,0,3,2,-1,0,4,7,-1,0,5,4,-1,0,6,5,-1,0,7,3,-1,0,8,6,-1,1,9,8,-1,1,10,9,-1,2,3,45,-1,3,7,43,-1,3,18,19,-1,3,19,47,-1,3,22,18,-1,3,25,22,-1,3,28,25,-1,3,31,28,-1,3,34,31,-1,3,37,34,-1,3,40,37,-1,3,43,40,-1,3,46,45,-1,3,47,46,-1,4,5,42,-1,4,42,7,-1,5,6,51,-1,5,44,42,-1,5,51,52,-1,5,52,44,-1,6,8,48,-1,6,48,51,-1,7,42,43,-1,8,9,50,-1,8,49,48,-1,8,50,49,-1,9,10,11,-1,9,11,50,-1,10,12,11,-1,11,12,13,-1,11,13,63,-1,11,63,50,-1,12,14,13,-1,13,14,15,-1,13,15,62,-1,13,62,63,-1,14,16,15,-1,15,16,20,-1,15,20,61,-1,15,61,62,-1,16,17,20,-1,16,18,17,-1,16,19,18,-1,17,18,22,-1,17,21,23,-1,17,22,21,-1,17,23,20,-1,20,23,60,-1,20,60,61,-1,21,22,25,-1,21,24,26,-1,21,25,24,-1,21,26,23,-1,23,26,59,-1,23,59,60,-1,24,25,28,-1,24,27,29,-1,24,28,27,-1,24,29,26,-1,26,29,58,-1,26,58,59,-1,27,28,31,-1,27,30,32,-1,27,31,30,-1,27,32,29,-1,29,32,57,-1,29,57,58,-1,30,31,34,-1,30,33,35,-1,30,34,33,-1,30,35,32,-1,32,35,56,-1,32,56,57,-1,33,34,37,-1,33,36,38,-1,33,37,36,-1,33,38,35,-1,35,38,55,-1,35,55,56,-1,36,37,40,-1,36,39,41,-1,36,40,39,-1,36,41,38,-1,38,41,54,-1,38,54,55,-1,39,40,43,-1,39,42,44,-1,39,43,42,-1,39,44,41,-1,41,44,53,-1,41,53,54,-1,44,52,53,-1,48,49,51,-1,49,50,63,-1,49,52,51,-1,49,53,52,-1,49,54,53,-1,49,55,54,-1,49,56,55,-1,49,57,56,-1,49,58,57,-1,49,59,58,-1,49,60,59,-1,49,61,60,-1,49,62,61,-1,49,63,62,-1};
			return value;
		}


		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_257_normalIndex_1()
		{
			int[] value = {0,1,8,-1,0,2,1,-1,0,3,2,-1,0,4,7,-1,0,5,4,-1,0,6,5,-1,0,7,3,-1,0,8,6,-1,1,9,8,-1,1,10,9,-1,2,3,45,-1,3,7,43,-1,3,18,19,-1,3,19,47,-1,3,22,18,-1,3,25,22,-1,3,28,25,-1,3,31,28,-1,3,34,31,-1,3,37,34,-1,3,40,37,-1,3,43,40,-1,3,46,45,-1,3,47,46,-1,4,5,42,-1,4,42,7,-1,5,6,51,-1,5,44,42,-1,5,51,52,-1,5,52,44,-1,6,8,48,-1,6,48,51,-1,7,42,43,-1,8,9,50,-1,8,49,48,-1,8,50,49,-1,9,10,11,-1,9,11,50,-1,10,12,11,-1,11,12,13,-1,11,13,63,-1,11,63,50,-1,12,14,13,-1,13,14,15,-1,13,15,62,-1,13,62,63,-1,14,16,15,-1,15,16,20,-1,15,20,61,-1,15,61,62,-1,16,17,20,-1,16,18,17,-1,16,19,18,-1,17,18,22,-1,17,21,23,-1,17,22,21,-1,17,23,20,-1,20,23,60,-1,20,60,61,-1,21,22,25,-1,21,24,26,-1,21,25,24,-1,21,26,23,-1,23,26,59,-1,23,59,60,-1,24,25,28,-1,24,27,29,-1,24,28,27,-1,24,29,26,-1,26,29,58,-1,26,58,59,-1,27,28,31,-1,27,30,32,-1,27,31,30,-1,27,32,29,-1,29,32,57,-1,29,57,58,-1,30,31,34,-1,30,33,35,-1,30,34,33,-1,30,35,32,-1,32,35,56,-1,32,56,57,-1,33,34,37,-1,33,36,38,-1,33,37,36,-1,33,38,35,-1,35,38,55,-1,35,55,56,-1,36,37,40,-1,36,39,41,-1,36,40,39,-1,36,41,38,-1,38,41,54,-1,38,54,55,-1,39,40,43,-1,39,42,44,-1,39,43,42,-1,39,44,41,-1,41,44,53,-1,41,53,54,-1,44,52,53,-1,48,49,51,-1,49,50,63,-1,49,52,51,-1,49,53,52,-1,49,54,53,-1,49,55,54,-1,49,56,55,-1,49,57,56,-1,49,58,57,-1,49,59,58,-1,49,60,59,-1,49,61,60,-1,49,62,61,-1,49,63,62,-1};
			return value;
		}




		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_263_coordIndex_1()
		{
			int[] value = {0,2,1,-1,0,3,2,-1,0,4,3,-1,0,5,4,-1,1,2,43,-1,2,3,51,-1,2,42,43,-1,2,51,52,-1,2,52,42,-1,3,4,48,-1,3,48,51,-1,4,5,9,-1,4,9,50,-1,4,49,48,-1,4,50,49,-1,5,6,9,-1,5,7,6,-1,5,8,7,-1,6,7,11,-1,6,10,12,-1,6,11,10,-1,6,12,9,-1,7,8,44,-1,7,44,11,-1,9,12,50,-1,10,11,14,-1,10,13,15,-1,10,14,13,-1,10,15,12,-1,11,44,14,-1,12,15,63,-1,12,63,50,-1,13,14,17,-1,13,16,18,-1,13,17,16,-1,13,18,15,-1,14,44,17,-1,15,18,62,-1,15,62,63,-1,16,17,20,-1,16,19,21,-1,16,20,19,-1,16,21,18,-1,17,44,20,-1,18,21,61,-1,18,61,62,-1,19,20,23,-1,19,22,24,-1,19,23,22,-1,19,24,21,-1,20,44,23,-1,21,24,60,-1,21,60,61,-1,22,23,26,-1,22,25,27,-1,22,26,25,-1,22,27,24,-1,23,44,26,-1,24,27,59,-1,24,59,60,-1,25,26,29,-1,25,28,30,-1,25,29,28,-1,25,30,27,-1,26,44,29,-1,27,30,58,-1,27,58,59,-1,28,29,32,-1,28,31,33,-1,28,32,31,-1,28,33,30,-1,29,44,32,-1,30,33,57,-1,30,57,58,-1,31,32,35,-1,31,34,36,-1,31,35,34,-1,31,36,33,-1,32,44,35,-1,33,36,56,-1,33,56,57,-1,34,35,38,-1,34,37,39,-1,34,38,37,-1,34,39,36,-1,35,44,38,-1,36,39,55,-1,36,55,56,-1,37,40,39,-1,37,41,40,-1,38,44,45,-1,39,40,54,-1,39,54,55,-1,40,41,42,-1,40,42,53,-1,40,53,54,-1,41,43,42,-1,42,52,53,-1,44,46,45,-1,44,47,46,-1,48,49,51,-1,49,50,63,-1,49,52,51,-1,49,53,52,-1,49,54,53,-1,49,55,54,-1,49,56,55,-1,49,57,56,-1,49,58,57,-1,49,59,58,-1,49,60,59,-1,49,61,60,-1,49,62,61,-1,49,63,62,-1};
			return value;
		}


		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_263_normalIndex_1()
		{
			int[] value = {0,2,1,-1,0,3,2,-1,0,4,3,-1,0,5,4,-1,1,2,43,-1,2,3,51,-1,2,42,43,-1,2,51,52,-1,2,52,42,-1,3,4,48,-1,3,48,51,-1,4,5,9,-1,4,9,50,-1,4,49,48,-1,4,50,49,-1,5,6,9,-1,5,7,6,-1,5,8,7,-1,6,7,11,-1,6,10,12,-1,6,11,10,-1,6,12,9,-1,7,8,44,-1,7,44,11,-1,9,12,50,-1,10,11,14,-1,10,13,15,-1,10,14,13,-1,10,15,12,-1,11,44,14,-1,12,15,63,-1,12,63,50,-1,13,14,17,-1,13,16,18,-1,13,17,16,-1,13,18,15,-1,14,44,17,-1,15,18,62,-1,15,62,63,-1,16,17,20,-1,16,19,21,-1,16,20,19,-1,16,21,18,-1,17,44,20,-1,18,21,61,-1,18,61,62,-1,19,20,23,-1,19,22,24,-1,19,23,22,-1,19,24,21,-1,20,44,23,-1,21,24,60,-1,21,60,61,-1,22,23,26,-1,22,25,27,-1,22,26,25,-1,22,27,24,-1,23,44,26,-1,24,27,59,-1,24,59,60,-1,25,26,29,-1,25,28,30,-1,25,29,28,-1,25,30,27,-1,26,44,29,-1,27,30,58,-1,27,58,59,-1,28,29,32,-1,28,31,33,-1,28,32,31,-1,28,33,30,-1,29,44,32,-1,30,33,57,-1,30,57,58,-1,31,32,35,-1,31,34,36,-1,31,35,34,-1,31,36,33,-1,32,44,35,-1,33,36,56,-1,33,56,57,-1,34,35,38,-1,34,37,39,-1,34,38,37,-1,34,39,36,-1,35,44,38,-1,36,39,55,-1,36,55,56,-1,37,40,39,-1,37,41,40,-1,38,44,45,-1,39,40,54,-1,39,54,55,-1,40,41,42,-1,40,42,53,-1,40,53,54,-1,41,43,42,-1,42,52,53,-1,44,46,45,-1,44,47,46,-1,48,49,51,-1,49,50,63,-1,49,52,51,-1,49,53,52,-1,49,54,53,-1,49,55,54,-1,49,56,55,-1,49,57,56,-1,49,58,57,-1,49,59,58,-1,49,60,59,-1,49,61,60,-1,49,62,61,-1,49,63,62,-1};
			return value;
		}




		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_269_coordIndex_1()
		{
			int[] value = {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,19,-1,3,18,38,-1,3,20,19,-1,3,21,20,-1,3,22,21,-1,3,23,22,-1,3,24,23,-1,3,25,24,-1,3,26,25,-1,3,36,26,-1,3,38,39,-1,3,39,49,-1,3,48,36,-1,3,49,48,-1,4,5,18,-1,5,6,37,-1,5,37,46,-1,5,38,18,-1,5,40,38,-1,5,42,40,-1,5,44,42,-1,5,46,44,-1,6,7,9,-1,6,9,37,-1,7,8,9,-1,9,10,27,-1,9,27,37,-1,10,11,26,-1,10,26,36,-1,10,29,27,-1,10,31,29,-1,10,33,31,-1,10,35,33,-1,10,36,35,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,27,28,47,-1,27,29,28,-1,27,47,37,-1,28,29,46,-1,28,46,47,-1,29,30,45,-1,29,31,30,-1,29,45,46,-1,30,31,44,-1,30,44,45,-1,31,32,43,-1,31,33,32,-1,31,43,44,-1,32,33,42,-1,32,42,43,-1,33,34,41,-1,33,35,34,-1,33,41,42,-1,34,35,40,-1,34,40,41,-1,35,36,40,-1,36,39,40,-1,36,48,49,-1,36,49,39,-1,37,47,46,-1,38,40,39,-1,40,42,41,-1,42,44,43,-1,44,46,45,-1};
			return value;
		}


		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_269_normalIndex_1()
		{
			int[] value = {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,19,-1,3,18,38,-1,3,20,19,-1,3,21,20,-1,3,22,21,-1,3,23,22,-1,3,24,23,-1,3,25,24,-1,3,26,25,-1,3,36,26,-1,3,38,39,-1,3,39,49,-1,3,48,36,-1,3,49,48,-1,4,5,18,-1,5,6,37,-1,5,37,46,-1,5,38,18,-1,5,40,38,-1,5,42,40,-1,5,44,42,-1,5,46,44,-1,6,7,9,-1,6,9,37,-1,7,8,9,-1,9,10,27,-1,9,27,37,-1,10,11,26,-1,10,26,36,-1,10,29,27,-1,10,31,29,-1,10,33,31,-1,10,35,33,-1,10,36,35,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,27,28,47,-1,27,29,28,-1,27,47,37,-1,28,29,46,-1,28,46,47,-1,29,30,45,-1,29,31,30,-1,29,45,46,-1,30,31,44,-1,30,44,45,-1,31,32,43,-1,31,33,32,-1,31,43,44,-1,32,33,42,-1,32,42,43,-1,33,34,41,-1,33,35,34,-1,33,41,42,-1,34,35,40,-1,34,40,41,-1,35,36,40,-1,36,39,40,-1,36,48,49,-1,36,49,39,-1,37,47,46,-1,38,40,39,-1,40,42,41,-1,42,44,43,-1,44,46,45,-1};
			return value;
		}




		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_275_coordIndex_1()
		{
			int[] value = {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,19,-1,3,18,38,-1,3,20,19,-1,3,21,20,-1,3,22,21,-1,3,23,22,-1,3,24,23,-1,3,25,24,-1,3,26,25,-1,3,36,26,-1,3,38,39,-1,3,39,49,-1,3,48,36,-1,3,49,48,-1,4,5,18,-1,5,6,37,-1,5,37,46,-1,5,38,18,-1,5,40,38,-1,5,42,40,-1,5,44,42,-1,5,46,44,-1,6,7,9,-1,6,9,37,-1,7,8,9,-1,9,10,27,-1,9,27,37,-1,10,11,26,-1,10,26,36,-1,10,29,27,-1,10,31,29,-1,10,33,31,-1,10,35,33,-1,10,36,35,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,27,28,47,-1,27,29,28,-1,27,47,37,-1,28,29,46,-1,28,46,47,-1,29,30,45,-1,29,31,30,-1,29,45,46,-1,30,31,44,-1,30,44,45,-1,31,32,43,-1,31,33,32,-1,31,43,44,-1,32,33,42,-1,32,42,43,-1,33,34,41,-1,33,35,34,-1,33,41,42,-1,34,35,40,-1,34,40,41,-1,35,36,40,-1,36,39,40,-1,36,48,49,-1,36,49,39,-1,37,47,46,-1,38,40,39,-1,40,42,41,-1,42,44,43,-1,44,46,45,-1};
			return value;
		}


		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_275_normalIndex_1()
		{
			int[] value = {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,19,-1,3,18,38,-1,3,20,19,-1,3,21,20,-1,3,22,21,-1,3,23,22,-1,3,24,23,-1,3,25,24,-1,3,26,25,-1,3,36,26,-1,3,38,39,-1,3,39,49,-1,3,48,36,-1,3,49,48,-1,4,5,18,-1,5,6,37,-1,5,37,46,-1,5,38,18,-1,5,40,38,-1,5,42,40,-1,5,44,42,-1,5,46,44,-1,6,7,9,-1,6,9,37,-1,7,8,9,-1,9,10,27,-1,9,27,37,-1,10,11,26,-1,10,26,36,-1,10,29,27,-1,10,31,29,-1,10,33,31,-1,10,35,33,-1,10,36,35,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,27,28,47,-1,27,29,28,-1,27,47,37,-1,28,29,46,-1,28,46,47,-1,29,30,45,-1,29,31,30,-1,29,45,46,-1,30,31,44,-1,30,44,45,-1,31,32,43,-1,31,33,32,-1,31,43,44,-1,32,33,42,-1,32,42,43,-1,33,34,41,-1,33,35,34,-1,33,41,42,-1,34,35,40,-1,34,40,41,-1,35,36,40,-1,36,39,40,-1,36,48,49,-1,36,49,39,-1,37,47,46,-1,38,40,39,-1,40,42,41,-1,42,44,43,-1,44,46,45,-1};
			return value;
		}




		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_281_coordIndex_1()
		{
			int[] value = {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,32,-1,2,32,33,-1,2,33,19,-1,3,18,32,-1,4,5,18,-1,5,6,31,-1,5,31,18,-1,6,7,30,-1,6,30,31,-1,7,8,29,-1,7,29,30,-1,8,9,28,-1,8,28,29,-1,9,10,27,-1,9,27,28,-1,10,11,26,-1,10,26,27,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,18,31,46,-1,18,46,47,-1,18,47,32,-1,19,33,34,-1,19,34,20,-1,20,34,35,-1,20,35,21,-1,21,35,36,-1,21,36,22,-1,22,36,37,-1,22,37,23,-1,23,37,38,-1,23,38,24,-1,24,38,39,-1,24,39,25,-1,25,39,40,-1,25,40,26,-1,26,40,41,-1,26,41,27,-1,27,41,42,-1,27,42,28,-1,28,42,43,-1,28,43,29,-1,29,43,44,-1,29,44,30,-1,30,44,45,-1,30,45,31,-1,31,45,46,-1,32,41,33,-1,32,42,41,-1,32,47,42,-1,33,40,34,-1,33,41,40,-1,34,39,35,-1,34,40,39,-1,35,38,36,-1,35,39,38,-1,36,38,37,-1,42,47,43,-1,43,46,44,-1,43,47,46,-1,44,46,45,-1};
			return value;
		}


		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_281_normalIndex_1()
		{
			int[] value = {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,32,-1,2,32,33,-1,2,33,19,-1,3,18,32,-1,4,5,18,-1,5,6,31,-1,5,31,18,-1,6,7,30,-1,6,30,31,-1,7,8,29,-1,7,29,30,-1,8,9,28,-1,8,28,29,-1,9,10,27,-1,9,27,28,-1,10,11,26,-1,10,26,27,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,18,31,46,-1,18,46,47,-1,18,47,32,-1,19,33,34,-1,19,34,20,-1,20,34,35,-1,20,35,21,-1,21,35,36,-1,21,36,22,-1,22,36,37,-1,22,37,23,-1,23,37,38,-1,23,38,24,-1,24,38,39,-1,24,39,25,-1,25,39,40,-1,25,40,26,-1,26,40,41,-1,26,41,27,-1,27,41,42,-1,27,42,28,-1,28,42,43,-1,28,43,29,-1,29,43,44,-1,29,44,30,-1,30,44,45,-1,30,45,31,-1,31,45,46,-1,32,41,33,-1,32,42,41,-1,32,47,42,-1,33,40,34,-1,33,41,40,-1,34,39,35,-1,34,40,39,-1,35,38,36,-1,35,39,38,-1,36,38,37,-1,42,47,43,-1,43,46,44,-1,43,47,46,-1,44,46,45,-1};
			return value;
		}















		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_408_coordIndex_1()
		{
			int[] value = {0,2,1,-1,0,3,2,-1,0,4,3,-1,0,5,4,-1,1,2,7,-1,1,7,6,-1,2,3,32,-1,2,32,35,-1,2,35,7,-1,3,4,34,-1,3,33,32,-1,3,34,33,-1,4,5,30,-1,4,30,31,-1,4,31,34,-1,6,7,9,-1,6,9,8,-1,7,35,36,-1,7,36,9,-1,8,9,11,-1,8,11,10,-1,9,36,37,-1,9,37,11,-1,10,11,13,-1,10,13,12,-1,11,37,38,-1,11,38,13,-1,12,13,15,-1,12,15,14,-1,13,38,39,-1,13,39,15,-1,14,15,17,-1,14,17,16,-1,15,39,40,-1,15,40,17,-1,16,17,19,-1,16,19,18,-1,17,40,41,-1,17,41,19,-1,18,19,21,-1,18,21,20,-1,19,41,42,-1,19,42,21,-1,20,21,23,-1,20,23,22,-1,21,42,43,-1,21,43,23,-1,22,23,25,-1,22,25,24,-1,23,43,44,-1,23,44,25,-1,24,25,27,-1,24,27,26,-1,25,44,45,-1,25,45,27,-1,26,27,29,-1,26,29,28,-1,27,45,46,-1,27,46,29,-1,28,29,31,-1,28,31,30,-1,29,46,47,-1,29,47,31,-1,31,47,34,-1,32,33,48,-1,32,48,51,-1,32,51,35,-1,33,34,50,-1,33,49,48,-1,33,50,49,-1,34,47,50,-1,35,51,52,-1,35,52,36,-1,36,52,53,-1,36,53,37,-1,37,53,54,-1,37,54,38,-1,38,54,55,-1,38,55,39,-1,39,55,56,-1,39,56,40,-1,40,56,57,-1,40,57,41,-1,41,57,58,-1,41,58,42,-1,42,58,59,-1,42,59,43,-1,43,59,60,-1,43,60,44,-1,44,60,61,-1,44,61,45,-1,45,61,62,-1,45,62,46,-1,46,62,63,-1,46,63,47,-1,47,63,50,-1,48,49,64,-1,48,64,67,-1,48,67,51,-1,49,50,66,-1,49,65,64,-1,49,66,65,-1,50,63,66,-1,51,67,68,-1,51,68,52,-1,52,68,69,-1,52,69,53,-1,53,69,70,-1,53,70,54,-1,54,70,71,-1,54,71,55,-1,55,71,72,-1,55,72,56,-1,56,72,73,-1,56,73,57,-1,57,73,74,-1,57,74,58,-1,58,74,75,-1,58,75,59,-1,59,75,76,-1,59,76,60,-1,60,76,77,-1,60,77,61,-1,61,77,78,-1,61,78,62,-1,62,78,79,-1,62,79,63,-1,63,79,66,-1,64,65,88,-1,64,88,89,-1,64,89,67,-1,65,66,81,-1,65,80,88,-1,65,81,80,-1,66,79,81,-1,67,82,68,-1,67,89,82,-1,68,82,83,-1,68,83,69,-1,69,83,90,-1,69,90,70,-1,70,90,91,-1,70,91,71,-1,71,91,92,-1,71,92,72,-1,72,92,93,-1,72,93,73,-1,73,93,94,-1,73,94,74,-1,74,84,75,-1,74,94,84,-1,75,84,85,-1,75,85,76,-1,76,85,95,-1,76,95,77,-1,77,86,78,-1,77,95,86,-1,78,86,87,-1,78,87,79,-1,79,87,81,-1,80,81,98,-1,80,96,88,-1,80,97,96,-1,80,98,97,-1,81,87,98,-1,82,89,100,-1,82,100,101,-1,82,101,83,-1,83,101,102,-1,83,102,90,-1,84,94,107,-1,84,107,108,-1,84,108,85,-1,85,108,109,-1,85,109,95,-1,86,95,110,-1,86,110,111,-1,86,111,87,-1,87,111,98,-1,88,96,99,-1,88,99,89,-1,89,99,100,-1,90,102,103,-1,90,103,91,-1,91,103,104,-1,91,104,92,-1,92,104,105,-1,92,105,93,-1,93,105,106,-1,93,106,94,-1,94,106,107,-1,95,109,110,-1,96,97,112,-1,96,112,115,-1,96,115,99,-1,97,98,114,-1,97,113,112,-1,97,114,113,-1,98,111,114,-1,99,115,116,-1,99,116,100,-1,100,116,117,-1,100,117,101,-1,101,117,118,-1,101,118,102,-1,102,118,119,-1,102,119,103,-1,103,119,120,-1,103,120,104,-1,104,120,121,-1,104,121,105,-1,105,121,122,-1,105,122,106,-1,106,122,123,-1,106,123,107,-1,107,123,124,-1,107,124,108,-1,108,124,125,-1,108,125,109,-1,109,125,126,-1,109,126,110,-1,110,126,127,-1,110,127,111,-1,111,127,114,-1,112,113,115,-1,113,114,127,-1,113,116,115,-1,113,117,116,-1,113,118,117,-1,113,119,118,-1,113,120,119,-1,113,121,120,-1,113,122,121,-1,113,123,122,-1,113,124,123,-1,113,125,124,-1,113,126,125,-1,113,127,126,-1};
			return value;
		}


		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_408_normalIndex_1()
		{
			int[] value = {0,2,1,-1,0,3,2,-1,0,4,3,-1,0,5,4,-1,1,2,7,-1,1,7,6,-1,2,3,32,-1,2,32,35,-1,2,35,7,-1,3,4,34,-1,3,33,32,-1,3,34,33,-1,4,5,30,-1,4,30,31,-1,4,31,34,-1,6,7,9,-1,6,9,8,-1,7,35,36,-1,7,36,9,-1,8,9,11,-1,8,11,10,-1,9,36,37,-1,9,37,11,-1,10,11,13,-1,10,13,12,-1,11,37,38,-1,11,38,13,-1,12,13,15,-1,12,15,14,-1,13,38,39,-1,13,39,15,-1,14,15,17,-1,14,17,16,-1,15,39,40,-1,15,40,17,-1,16,17,19,-1,16,19,18,-1,17,40,41,-1,17,41,19,-1,18,19,21,-1,18,21,20,-1,19,41,42,-1,19,42,21,-1,20,21,23,-1,20,23,22,-1,21,42,43,-1,21,43,23,-1,22,23,25,-1,22,25,24,-1,23,43,44,-1,23,44,25,-1,24,25,27,-1,24,27,26,-1,25,44,45,-1,25,45,27,-1,26,27,29,-1,26,29,28,-1,27,45,46,-1,27,46,29,-1,28,29,31,-1,28,31,30,-1,29,46,47,-1,29,47,31,-1,31,47,34,-1,32,33,48,-1,32,48,51,-1,32,51,35,-1,33,34,50,-1,33,49,48,-1,33,50,49,-1,34,47,50,-1,35,51,52,-1,35,52,36,-1,36,52,53,-1,36,53,37,-1,37,53,54,-1,37,54,38,-1,38,54,55,-1,38,55,39,-1,39,55,56,-1,39,56,40,-1,40,56,57,-1,40,57,41,-1,41,57,58,-1,41,58,42,-1,42,58,59,-1,42,59,43,-1,43,59,60,-1,43,60,44,-1,44,60,61,-1,44,61,45,-1,45,61,62,-1,45,62,46,-1,46,62,63,-1,46,63,47,-1,47,63,50,-1,48,49,64,-1,48,64,67,-1,48,67,51,-1,49,50,66,-1,49,65,64,-1,49,66,65,-1,50,63,66,-1,51,67,68,-1,51,68,52,-1,52,68,69,-1,52,69,53,-1,53,69,70,-1,53,70,54,-1,54,70,71,-1,54,71,55,-1,55,71,72,-1,55,72,56,-1,56,72,73,-1,56,73,57,-1,57,73,74,-1,57,74,58,-1,58,74,75,-1,58,75,59,-1,59,75,76,-1,59,76,60,-1,60,76,77,-1,60,77,61,-1,61,77,78,-1,61,78,62,-1,62,78,79,-1,62,79,63,-1,63,79,66,-1,64,65,88,-1,64,88,89,-1,64,89,67,-1,65,66,81,-1,65,80,88,-1,65,81,80,-1,66,79,81,-1,67,82,68,-1,67,89,82,-1,68,82,83,-1,68,83,69,-1,69,83,90,-1,69,90,70,-1,70,90,91,-1,70,91,71,-1,71,91,92,-1,71,92,72,-1,72,92,93,-1,72,93,73,-1,73,93,94,-1,73,94,74,-1,74,84,75,-1,74,94,84,-1,75,84,85,-1,75,85,76,-1,76,85,95,-1,76,95,77,-1,77,86,78,-1,77,95,86,-1,78,86,87,-1,78,87,79,-1,79,87,81,-1,80,81,98,-1,80,96,88,-1,80,97,96,-1,80,98,97,-1,81,87,98,-1,82,89,100,-1,82,100,101,-1,82,101,83,-1,83,101,102,-1,83,102,90,-1,84,94,107,-1,84,107,108,-1,84,108,85,-1,85,108,109,-1,85,109,95,-1,86,95,110,-1,86,110,111,-1,86,111,87,-1,87,111,98,-1,88,96,99,-1,88,99,89,-1,89,99,100,-1,90,102,103,-1,90,103,91,-1,91,103,104,-1,91,104,92,-1,92,104,105,-1,92,105,93,-1,93,105,106,-1,93,106,94,-1,94,106,107,-1,95,109,110,-1,96,97,112,-1,96,112,115,-1,96,115,99,-1,97,98,114,-1,97,113,112,-1,97,114,113,-1,98,111,114,-1,99,115,116,-1,99,116,100,-1,100,116,117,-1,100,117,101,-1,101,117,118,-1,101,118,102,-1,102,118,119,-1,102,119,103,-1,103,119,120,-1,103,120,104,-1,104,120,121,-1,104,121,105,-1,105,121,122,-1,105,122,106,-1,106,122,123,-1,106,123,107,-1,107,123,124,-1,107,124,108,-1,108,124,125,-1,108,125,109,-1,109,125,126,-1,109,126,110,-1,110,126,127,-1,110,127,111,-1,111,127,114,-1,112,113,115,-1,113,114,127,-1,113,116,115,-1,113,117,116,-1,113,118,117,-1,113,119,118,-1,113,120,119,-1,113,121,120,-1,113,122,121,-1,113,123,122,-1,113,124,123,-1,113,125,124,-1,113,126,125,-1,113,127,126,-1};
			return value;
		}


		/** Define subarrays using type double[] */
		private double[] getCoordinate_6_408_point_1()
		{
			double[] value = {-7.85297,1.17825,1.42688,-7.854,1.17308,1.42688,-7.854,1.17308,1.46554,-7.85297,1.17825,1.46554,-7.854,1.18342,1.46554,-7.854,1.18342,1.42688,-7.85692,1.16869,1.42688,-7.85692,1.16869,1.46554,-7.86131,1.16576,1.42688,-7.86131,1.16576,1.46554,-7.86648,1.16474,1.42688,-7.86648,1.16474,1.46554,-7.87165,1.16576,1.42688,-7.87165,1.16576,1.46554,-7.87603,1.16869,1.42688,-7.87603,1.16869,1.46554,-7.87896,1.17308,1.42688,-7.87896,1.17308,1.46554,-7.87999,1.17825,1.42688,-7.87999,1.17825,1.46554,-7.87896,1.18342,1.42688,-7.87896,1.18342,1.46554,-7.87603,1.1878,1.42688,-7.87603,1.1878,1.46554,-7.87165,1.19073,1.42688,-7.87165,1.19073,1.46554,-7.86648,1.19176,1.42688,-7.86648,1.19176,1.46554,-7.86131,1.19073,1.42688,-7.86131,1.19073,1.46554,-7.85692,1.1878,1.42688,-7.85692,1.1878,1.46554,-7.8575,1.17453,1.46926,-7.85676,1.17825,1.46926,-7.8575,1.18197,1.46926,-7.8596,1.17137,1.46926,-7.86276,1.16926,1.46926,-7.86648,1.16852,1.46926,-7.8702,1.16926,1.46926,-7.87335,1.17137,1.46926,-7.87546,1.17453,1.46926,-7.8762,1.17825,1.46926,-7.87546,1.18197,1.46926,-7.87335,1.18512,1.46926,-7.8702,1.18723,1.46926,-7.86648,1.18797,1.46926,-7.86276,1.18723,1.46926,-7.8596,1.18512,1.46926,-7.8575,1.17453,1.47931,-7.85676,1.17825,1.47931,-7.8575,1.18197,1.47931,-7.8596,1.17137,1.47931,-7.86276,1.16926,1.47931,-7.86648,1.16852,1.47931,-7.8702,1.16926,1.47931,-7.87335,1.17137,1.47931,-7.87546,1.17453,1.47931,-7.8762,1.17825,1.47931,-7.87546,1.18197,1.47931,-7.87335,1.18512,1.47931,-7.8702,1.18723,1.47931,-7.86648,1.18797,1.47931,-7.86276,1.18723,1.47931,-7.8596,1.18512,1.47931,-7.86049,1.17577,1.48249,-7.86,1.17825,1.48249,-7.86049,1.18073,1.48249,-7.8619,1.17367,1.48249,-7.864,1.17226,1.48249,-7.86648,1.17177,1.48249,-7.86896,1.17226,1.48249,-7.87106,1.17367,1.48249,-7.87246,1.17577,1.48249,-7.87296,1.17825,1.48249,-7.87246,1.18073,1.48249,-7.87106,1.18283,1.48249,-7.86896,1.18423,1.48249,-7.86648,1.18473,1.48249,-7.864,1.18423,1.48249,-7.8619,1.18283,1.48249,-7.86,1.17825,1.63981,-7.86049,1.18073,1.63981,-7.864,1.17226,1.63981,-7.86648,1.17177,1.63981,-7.87106,1.18283,1.63981,-7.86896,1.18423,1.63981,-7.864,1.18423,1.63981,-7.8619,1.18283,1.63981,-7.86049,1.17577,1.63981,-7.8619,1.17367,1.63981,-7.86896,1.17226,1.63981,-7.87106,1.17367,1.63981,-7.87246,1.17577,1.63981,-7.87296,1.17825,1.63981,-7.87246,1.18073,1.63981,-7.86648,1.18473,1.63981,-7.8589,1.17511,1.64066,-7.85828,1.17825,1.64066,-7.8589,1.18139,1.64066,-7.86068,1.17245,1.64066};
			return value;
		}
		private double[] getCoordinate_6_408_point_2()
		{
			double[] value = {-7.86334,1.17067,1.64066,-7.86648,1.17004,1.64066,-7.86962,1.17067,1.64066,-7.87228,1.17245,1.64066,-7.87406,1.17511,1.64066,-7.87468,1.17825,1.64066,-7.87406,1.18139,1.64066,-7.87228,1.18405,1.64066,-7.86962,1.18582,1.64066,-7.86648,1.18645,1.64066,-7.86334,1.18582,1.64066,-7.86068,1.18405,1.64066,-7.8589,1.17511,1.66362,-7.85828,1.17825,1.66362,-7.8589,1.18139,1.66362,-7.86068,1.17245,1.66362,-7.86334,1.17067,1.66362,-7.86648,1.17004,1.66362,-7.86962,1.17067,1.66362,-7.87228,1.17245,1.66362,-7.87406,1.17511,1.66362,-7.87468,1.17825,1.66362,-7.87406,1.18139,1.66362,-7.87228,1.18405,1.66362,-7.86962,1.18582,1.66362,-7.86648,1.18645,1.66362,-7.86334,1.18582,1.66362,-7.86068,1.18405,1.66362};
			return value;
		}


		/** Define subarrays using type double[] */
		private double[] getNormal_6_409_vector_1()
		{
			double[] value = {1.0,-2.81274E-5,0.0,0.896592,-0.442857,0.0,0.855075,-0.34279,0.389028,0.858554,-2.51597E-5,0.512723,0.892767,0.369786,0.257343,0.923883,0.382676,0.0,0.658721,-0.752388,0.0,0.658772,-0.643923,0.389079,0.320695,-0.947182,0.0,0.362119,-0.847056,0.389058,-0.0661802,-0.997808,0.0,0.0104895,-0.921144,0.38908,-0.442857,-0.896592,0.0,-0.342777,-0.855067,0.389055,-0.752388,-0.658721,0.0,-0.643918,-0.658781,0.389072,-0.947182,-0.320695,0.0,-0.847074,-0.362138,0.389001,-0.99781,0.0661425,0.0,-0.92118,-0.010493,0.388996,-0.896543,0.442956,0.0,-0.855051,0.342839,0.389036,-0.658697,0.752408,0.0,-0.658748,0.643968,0.389045,-0.32071,0.947177,0.0,-0.362147,0.847076,0.388988,0.0661802,0.997808,0.0,-0.0104851,0.921176,0.389005,0.442886,0.896578,0.0,0.342831,0.855069,0.389004,0.752313,0.658806,0.0,0.64388,0.658826,0.38906,0.847039,-0.362221,0.388999,0.966325,-3.03931E-5,0.257323,0.793161,0.328599,0.512756,0.643922,-0.658781,0.389065,0.342769,-0.855069,0.389058,-0.0104777,-0.921145,0.389077,-0.362138,-0.847046,0.389061,-0.65873,-0.643969,0.389074,-0.855044,-0.34286,0.389032,-0.921178,0.0104697,0.389002,-0.847012,0.362275,0.389009,-0.643963,0.658751,0.389049,-0.342857,0.855053,0.389017,0.0104733,0.921177,0.389002,0.362265,0.847023,0.388995,0.658741,0.643985,0.389031,0.855011,-0.34289,0.38908,0.858479,-1.69924E-5,0.512848,0.892708,0.369883,0.257408,0.658753,-0.643937,0.389088,0.362116,-0.847068,0.389035,0.0105005,-0.921158,0.389047,-0.342804,-0.85506,0.389048,-0.643884,-0.658802,0.389095,-0.846993,-0.362249,0.389073,-0.921138,-0.0104869,0.389095,-0.855009,0.342868,0.389102,-0.658724,0.643986,0.389056,-0.362283,0.846968,0.389097,-0.0104443,0.921148,0.389073,0.342828,0.855031,0.38909,0.643976,0.658731,0.38906,0.846953,-0.362348,0.389068,0.966309,1.14151E-5,0.257385,0.793125,0.328591,0.512817,0.643953,-0.65874,0.389083,0.342769,-0.855068,0.389061,-0.0104506,-0.921163,0.389037,-0.362199,-0.847027,0.389047,-0.658734,-0.643965,0.389075,-0.854967,-0.342993,0.389084,-0.921135,0.0105358,0.389101,-0.847011,0.362191,0.389089,-0.643866,0.658825,0.389084,-0.342907,0.855011,0.389065,0.0105434,0.921138,0.389093,0.362147,0.847036,0.389075,0.658787,0.643906,0.389081,0.721606,-2.51476E-6,-0.692304,0.865924,0.358733,-0.348549,0.343652,-0.773865,-0.532011,0.0212804,-0.846468,-0.532014,-0.613666,0.583421,-0.532009,-0.343557,0.773904,-0.532015,0.304321,0.790156,-0.532017,0.583417,0.613696,-0.53198,0.790173,-0.304432,-0.531929,0.613652,-0.583489,-0.531951,-0.304224,-0.790224,-0.531971,-0.583517,-0.613645,-0.531928,-0.773864,-0.343793,-0.531922,-0.846495,-0.0213688,-0.531967,-0.79019,0.304345,-0.531953,-0.0214188,0.84647,-0.532005,0.77388,-0.343753,-0.531924,0.937297,-3.49765E-5,-0.348533,0.666658,0.276206,-0.692298,0.58358,-0.613587,-0.531926};
			return value;
		}
		private double[] getNormal_6_409_vector_2()
		{
			double[] value = {0.304388,-0.790162,-0.53197,-0.0213694,-0.846453,-0.532035,-0.343776,-0.773816,-0.532003,-0.613693,-0.583451,-0.531946,-0.790193,-0.30438,-0.531929,-0.846509,0.021303,-0.531948,-0.773865,0.343722,-0.531966,-0.583585,0.613559,-0.531953,-0.304167,0.79019,-0.532055,0.0212605,0.846497,-0.531968,0.343701,0.773815,-0.532053,0.613659,0.583456,-0.531979,0.896947,-0.303891,0.32115,0.138751,-5.1478E-6,0.990327,0.895216,0.370918,0.246997,0.622675,-0.545174,0.561303,0.366765,-0.741895,0.561315,0.0548014,-0.82578,0.561324,-0.265583,-0.783831,0.561315,-0.545306,-0.62256,0.561303,-0.741944,-0.366681,0.561305,-0.825775,-0.0548425,0.561327,-0.783854,0.265531,0.561308,-0.622675,0.545174,0.561303,-0.366671,0.741932,0.561328,-0.0546964,0.825804,0.561299,0.265384,0.783889,0.561328,0.545306,0.62256,0.561303};
			return value;
		}


		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_414_coordIndex_1()
		{
			int[] value = {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,32,-1,2,32,35,-1,2,35,19,-1,3,18,34,-1,3,33,32,-1,3,34,33,-1,4,5,18,-1,5,6,31,-1,5,31,18,-1,6,7,30,-1,6,30,31,-1,7,8,29,-1,7,29,30,-1,8,9,28,-1,8,28,29,-1,9,10,27,-1,9,27,28,-1,10,11,26,-1,10,26,27,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,18,31,34,-1,19,35,36,-1,19,36,20,-1,20,36,37,-1,20,37,21,-1,21,37,38,-1,21,38,22,-1,22,38,39,-1,22,39,23,-1,23,39,40,-1,23,40,24,-1,24,40,41,-1,24,41,25,-1,25,41,42,-1,25,42,26,-1,26,42,43,-1,26,43,27,-1,27,43,44,-1,27,44,28,-1,28,44,45,-1,28,45,29,-1,29,45,46,-1,29,46,30,-1,30,46,47,-1,30,47,31,-1,31,47,34,-1,32,33,48,-1,32,48,51,-1,32,51,35,-1,33,34,50,-1,33,49,48,-1,33,50,49,-1,34,47,50,-1,35,51,52,-1,35,52,36,-1,36,52,53,-1,36,53,37,-1,37,53,54,-1,37,54,38,-1,38,54,55,-1,38,55,39,-1,39,55,56,-1,39,56,40,-1,40,56,57,-1,40,57,41,-1,41,57,58,-1,41,58,42,-1,42,58,59,-1,42,59,43,-1,43,59,60,-1,43,60,44,-1,44,60,61,-1,44,61,45,-1,45,61,62,-1,45,62,46,-1,46,62,63,-1,46,63,47,-1,47,63,50,-1,48,49,64,-1,48,64,67,-1,48,67,51,-1,49,50,66,-1,49,65,64,-1,49,66,65,-1,50,63,66,-1,51,67,68,-1,51,68,52,-1,52,68,69,-1,52,69,53,-1,53,69,70,-1,53,70,54,-1,54,70,71,-1,54,71,55,-1,55,71,72,-1,55,72,56,-1,56,72,73,-1,56,73,57,-1,57,73,74,-1,57,74,58,-1,58,74,75,-1,58,75,59,-1,59,75,76,-1,59,76,60,-1,60,76,77,-1,60,77,61,-1,61,77,78,-1,61,78,62,-1,62,78,79,-1,62,79,63,-1,63,79,66,-1,64,65,80,-1,64,80,83,-1,64,83,67,-1,65,66,82,-1,65,81,80,-1,65,82,81,-1,66,79,82,-1,67,83,84,-1,67,84,68,-1,68,84,85,-1,68,85,69,-1,69,85,86,-1,69,86,70,-1,70,86,87,-1,70,87,71,-1,71,87,88,-1,71,88,72,-1,72,88,89,-1,72,89,73,-1,73,89,90,-1,73,90,74,-1,74,90,91,-1,74,91,75,-1,75,91,92,-1,75,92,76,-1,76,92,93,-1,76,93,77,-1,77,93,94,-1,77,94,78,-1,78,94,95,-1,78,95,79,-1,79,95,82,-1,80,81,96,-1,80,96,99,-1,80,99,83,-1,81,82,98,-1,81,97,96,-1,81,98,97,-1,82,95,98,-1,83,99,100,-1,83,100,84,-1,84,100,101,-1,84,101,85,-1,85,101,102,-1,85,102,86,-1,86,102,103,-1,86,103,87,-1,87,103,104,-1,87,104,88,-1,88,104,105,-1,88,105,89,-1,89,105,106,-1,89,106,90,-1,90,106,107,-1,90,107,91,-1,91,107,108,-1,91,108,92,-1,92,108,109,-1,92,109,93,-1,93,109,110,-1,93,110,94,-1,94,110,111,-1,94,111,95,-1,95,111,98,-1};
			return value;
		}


		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_414_normalIndex_1()
		{
			int[] value = {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,32,-1,2,32,35,-1,2,35,19,-1,3,18,34,-1,3,33,32,-1,3,34,33,-1,4,5,18,-1,5,6,31,-1,5,31,18,-1,6,7,30,-1,6,30,31,-1,7,8,29,-1,7,29,30,-1,8,9,28,-1,8,28,29,-1,9,10,27,-1,9,27,28,-1,10,11,26,-1,10,26,27,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,18,31,34,-1,19,35,36,-1,19,36,20,-1,20,36,37,-1,20,37,21,-1,21,37,38,-1,21,38,22,-1,22,38,39,-1,22,39,23,-1,23,39,40,-1,23,40,24,-1,24,40,41,-1,24,41,25,-1,25,41,42,-1,25,42,26,-1,26,42,43,-1,26,43,27,-1,27,43,44,-1,27,44,28,-1,28,44,45,-1,28,45,29,-1,29,45,46,-1,29,46,30,-1,30,46,47,-1,30,47,31,-1,31,47,34,-1,32,33,48,-1,32,48,51,-1,32,51,35,-1,33,34,50,-1,33,49,48,-1,33,50,49,-1,34,47,50,-1,35,51,52,-1,35,52,36,-1,36,52,53,-1,36,53,37,-1,37,53,54,-1,37,54,38,-1,38,54,55,-1,38,55,39,-1,39,55,56,-1,39,56,40,-1,40,56,57,-1,40,57,41,-1,41,57,58,-1,41,58,42,-1,42,58,59,-1,42,59,43,-1,43,59,60,-1,43,60,44,-1,44,60,61,-1,44,61,45,-1,45,61,62,-1,45,62,46,-1,46,62,63,-1,46,63,47,-1,47,63,50,-1,48,49,64,-1,48,64,67,-1,48,67,51,-1,49,50,66,-1,49,65,64,-1,49,66,65,-1,50,63,66,-1,51,67,68,-1,51,68,52,-1,52,68,69,-1,52,69,53,-1,53,69,70,-1,53,70,54,-1,54,70,71,-1,54,71,55,-1,55,71,72,-1,55,72,56,-1,56,72,73,-1,56,73,57,-1,57,73,74,-1,57,74,58,-1,58,74,75,-1,58,75,59,-1,59,75,76,-1,59,76,60,-1,60,76,77,-1,60,77,61,-1,61,77,78,-1,61,78,62,-1,62,78,79,-1,62,79,63,-1,63,79,66,-1,64,65,80,-1,64,80,83,-1,64,83,67,-1,65,66,82,-1,65,81,80,-1,65,82,81,-1,66,79,82,-1,67,83,84,-1,67,84,68,-1,68,84,85,-1,68,85,69,-1,69,85,86,-1,69,86,70,-1,70,86,87,-1,70,87,71,-1,71,87,88,-1,71,88,72,-1,72,88,89,-1,72,89,73,-1,73,89,90,-1,73,90,74,-1,74,90,91,-1,74,91,75,-1,75,91,92,-1,75,92,76,-1,76,92,93,-1,76,93,77,-1,77,93,94,-1,77,94,78,-1,78,94,95,-1,78,95,79,-1,79,95,82,-1,80,81,96,-1,80,96,99,-1,80,99,83,-1,81,82,98,-1,81,97,96,-1,81,98,97,-1,82,95,98,-1,83,99,100,-1,83,100,84,-1,84,100,101,-1,84,101,85,-1,85,101,102,-1,85,102,86,-1,86,102,103,-1,86,103,87,-1,87,103,104,-1,87,104,88,-1,88,104,105,-1,88,105,89,-1,89,105,106,-1,89,106,90,-1,90,106,107,-1,90,107,91,-1,91,107,108,-1,91,108,92,-1,92,108,109,-1,92,109,93,-1,93,109,110,-1,93,110,94,-1,94,110,111,-1,94,111,95,-1,95,111,98,-1};
			return value;
		}


		/** Define subarrays using type double[] */
		private double[] getCoordinate_6_414_point_1()
		{
			double[] value = {-7.80861,1.20176,1.35096,-7.80861,1.20162,1.35164,-7.80939,1.20301,1.35221,-7.80938,1.20326,1.35096,-7.80861,1.20162,1.35029,-7.80862,1.20124,1.34972,-7.80863,1.20067,1.34934,-7.80863,1.2,1.3492,-7.80864,1.19932,1.34934,-7.80865,1.19875,1.34972,-7.80865,1.19837,1.35029,-7.80866,1.19824,1.35096,-7.80865,1.19837,1.35164,-7.80865,1.19875,1.35221,-7.80864,1.19932,1.35259,-7.80863,1.2,1.35273,-7.80863,1.20067,1.35259,-7.80862,1.20124,1.35221,-7.80939,1.20301,1.34972,-7.80939,1.20231,1.35327,-7.80941,1.20125,1.35397,-7.80942,1.20001,1.35422,-7.80944,1.19876,1.35397,-7.80945,1.19771,1.35327,-7.80946,1.197,1.35221,-7.80946,1.19675,1.35096,-7.80946,1.197,1.34972,-7.80945,1.19771,1.34866,-7.80944,1.19876,1.34796,-7.80942,1.20001,1.34771,-7.80941,1.20125,1.34796,-7.80939,1.20231,1.34866,-7.81655,1.20402,1.35259,-7.81655,1.20435,1.35096,-7.81655,1.20402,1.34934,-7.81656,1.2031,1.35397,-7.81658,1.20172,1.35489,-7.8166,1.2001,1.35522,-7.81662,1.19847,1.35489,-7.81664,1.19709,1.35397,-7.81665,1.19617,1.35259,-7.81665,1.19585,1.35096,-7.81665,1.19617,1.34934,-7.81664,1.19709,1.34796,-7.81662,1.19847,1.34704,-7.8166,1.2001,1.34671,-7.81658,1.20172,1.34704,-7.81656,1.2031,1.34796,-7.82501,1.20445,1.35273,-7.82501,1.2048,1.35096,-7.82501,1.20445,1.3492,-7.82502,1.20345,1.35422,-7.82504,1.20196,1.35522,-7.82507,1.2002,1.35557,-7.82509,1.19844,1.35522,-7.8251,1.19695,1.35422,-7.82512,1.19595,1.35273,-7.82512,1.1956,1.35096,-7.82512,1.19595,1.3492,-7.8251,1.19695,1.34771,-7.82509,1.19844,1.34671,-7.82507,1.2002,1.34636,-7.82504,1.20196,1.34671,-7.82502,1.20345,1.34771,-7.83348,1.20423,1.35259,-7.83348,1.20456,1.35096,-7.83348,1.20423,1.34934,-7.83349,1.20331,1.35397,-7.83351,1.20193,1.35489,-7.83353,1.20031,1.35522,-7.83355,1.19868,1.35489,-7.83357,1.1973,1.35397,-7.83358,1.19638,1.35259,-7.83358,1.19605,1.35096,-7.83358,1.19638,1.34934,-7.83357,1.1973,1.34796,-7.83355,1.19868,1.34704,-7.83353,1.20031,1.34671,-7.83351,1.20193,1.34704,-7.83349,1.20331,1.34796,-7.84067,1.2034,1.35221,-7.84067,1.20365,1.35096,-7.84067,1.2034,1.34972,-7.84068,1.20269,1.35327,-7.84069,1.20164,1.35397,-7.84071,1.20039,1.35422,-7.84072,1.19915,1.35397,-7.84074,1.19809,1.35327,-7.84074,1.19739,1.35221,-7.84075,1.19714,1.35096,-7.84074,1.19739,1.34972,-7.84074,1.19809,1.34866,-7.84072,1.19915,1.34796,-7.84071,1.20039,1.34771,-7.84069,1.20164,1.34796,-7.84068,1.20269,1.34866,-7.84548,1.20208,1.35164,-7.84548,1.20221,1.35096,-7.84548,1.20208,1.35029,-7.84549,1.2017,1.35221};
			return value;
		}
		private double[] getCoordinate_6_414_point_2()
		{
			double[] value = {-7.84549,1.20113,1.35259,-7.8455,1.20045,1.35273,-7.84551,1.19978,1.35259,-7.84552,1.19921,1.35221,-7.84552,1.19883,1.35164,-7.84552,1.19869,1.35096,-7.84552,1.19883,1.35029,-7.84552,1.19921,1.34972,-7.84551,1.19978,1.34934,-7.8455,1.20045,1.3492,-7.84549,1.20113,1.34934,-7.84549,1.2017,1.34972};
			return value;
		}


		/** Define subarrays using type double[] */
		private double[] getNormal_6_415_vector_1()
		{
			double[] value = {0.995592,0.0937951,-1.76949E-5,0.936805,0.311407,0.159446,0.586104,0.739935,0.330119,0.441935,0.897047,-9.59115E-5,0.950617,0.285037,-0.122803,0.959849,0.205932,-0.190479,0.958978,0.115836,-0.258733,0.957571,0.00765403,-0.288095,0.956231,-0.104695,-0.273244,0.954994,-0.201909,-0.217299,0.954151,-0.270646,-0.127856,0.953719,-0.300084,-0.019229,0.953945,-0.285286,0.0927435,0.954601,-0.22916,0.190322,0.95581,-0.139767,0.258637,0.957075,-0.0305199,0.288229,0.958602,0.080142,0.27324,0.959534,0.179122,0.21728,0.713797,0.645818,-0.270948,0.583682,0.557076,0.590747,0.580634,0.287616,0.76167,0.576822,-0.0262534,0.816448,0.572827,-0.337136,0.747133,0.569621,-0.598234,0.563602,0.567336,-0.768824,0.295026,0.566733,-0.823675,-0.0193008,0.567467,-0.754441,-0.329847,0.569981,-0.570831,-0.590994,0.573227,-0.301998,-0.761714,0.577114,0.0118064,-0.816579,0.581138,0.323051,-0.746938,0.584118,0.583715,-0.563988,0.100944,0.918964,0.381204,0.0858556,0.996308,-6.48302E-5,0.117018,0.917411,-0.380348,0.0982926,0.7029,0.704465,0.0942906,0.379607,0.92033,0.0895493,-0.0014165,0.995981,0.0848679,-0.382297,0.920134,0.0809166,-0.705579,0.703997,0.0782654,-0.92135,0.380773,0.0773542,-0.997004,-4.25866E-4,0.078257,-0.921125,-0.381319,0.0809073,-0.705179,-0.704398,0.0849043,-0.381802,-0.920336,0.089604,-7.97097E-4,-0.995977,0.0942548,0.380067,-0.920144,0.0982739,0.703209,-0.704159,0.0113841,0.92384,0.382609,-0.00150262,0.999999,-4.07805E-5,0.025148,0.923522,-0.38272,0.00871463,0.707048,0.707112,0.00472037,0.382491,0.923947,-4.90831E-7,-1.70388E-5,1.0,-0.00471457,-0.382581,0.92391,-0.00872648,-0.707042,0.707118,-0.0113928,-0.923818,0.382663,-0.0123076,-0.999924,-7.05047E-5,-0.0113772,-0.923725,-0.382886,-0.00874227,-0.707088,-0.707072,-0.00473758,-0.382689,-0.923865,3.86398E-6,-2.99085E-5,-1.0,0.00475293,0.382751,-0.923839,0.0086733,0.706906,-0.707254,-0.0782562,0.92129,0.38092,-0.0933331,0.995635,-9.79937E-5,-0.0621575,0.922204,-0.381675,-0.0809439,0.705693,0.703879,-0.0848506,0.382428,0.920081,-0.089554,0.0014179,0.995981,-0.0942879,-0.379845,0.920232,-0.0983136,-0.702756,0.704605,-0.100927,-0.918866,0.381444,-0.10188,-0.994797,2.47903E-4,-0.100935,-0.918986,-0.381151,-0.0982724,-0.703268,-0.7041,-0.0942739,-0.38017,-0.920099,-0.0896134,7.35781E-4,-0.995976,-0.0848842,0.382047,-0.920236,-0.0808732,0.705149,-0.704432,-0.207039,0.904579,0.372654,-0.232812,0.972522,-1.45231E-4,-0.180239,0.909017,-0.375769,-0.209616,0.693494,0.689294,-0.21365,0.377393,0.901071,-0.218223,0.00398621,0.975891,-0.22281,-0.369652,0.902061,-0.226627,-0.686674,0.690738,-0.229371,-0.898298,0.374766,-0.230308,-0.973117,0.00105741,-0.229331,-0.899257,-0.372483,-0.226703,-0.687951,-0.689441,-0.222847,-0.371922,-0.901118,-0.218161,0.00186782,-0.975911,-0.213623,0.375022,-0.902066,-0.209681,0.691851,-0.690924,-0.285476,0.908099,0.306364,-0.285376,0.958416,-2.07622E-4,-0.286301,0.885588,-0.365739,-0.287653,0.721797,0.629495};
			return value;
		}
		private double[] getNormal_6_415_vector_2()
		{
			double[] value = {-0.291362,0.426711,0.856169,-0.295915,0.0667911,0.952876,-0.300512,-0.301963,0.904716,-0.304297,-0.625582,0.718367,-0.307069,-0.852554,0.422918,-0.308431,-0.949152,0.0630944,-0.307809,-0.900836,-0.306183,-0.305445,-0.714661,-0.629256,-0.30186,-0.419401,-0.856144,-0.297411,-0.0593871,-0.952901,-0.292811,0.310141,-0.904474,-0.28886,0.632737,-0.718473};
			return value;
		}


		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_420_coordIndex_1()
		{
			int[] value = {0,1,33,-1,0,2,1,-1,0,3,2,-1,0,4,3,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,17,-1,0,19,18,-1,0,20,19,-1,0,21,20,-1,0,22,21,-1,0,23,22,-1,0,24,23,-1,0,26,25,-1,0,27,26,-1,0,28,27,-1,0,29,28,-1,0,30,29,-1,0,31,30,-1,0,32,31,-1,0,33,32,-1,4,5,6,-1,4,6,7,-1,4,7,8,-1,4,8,86,-1,4,83,39,-1,4,84,83,-1,4,85,84,-1,4,86,85,-1,8,9,58,-1,8,58,67,-1,8,67,68,-1,8,68,69,-1,8,69,70,-1,8,70,73,-1,8,73,89,-1,8,87,86,-1,8,88,87,-1,8,89,88,-1,9,10,58,-1,10,11,58,-1,11,12,58,-1,12,13,66,-1,12,66,58,-1,13,14,96,-1,13,96,66,-1,14,15,40,-1,14,40,43,-1,14,43,57,-1,14,57,96,-1,15,16,40,-1,16,17,40,-1,17,18,40,-1,18,19,22,-1,18,22,76,-1,18,50,51,-1,18,51,54,-1,18,54,55,-1,18,55,56,-1,18,56,40,-1,18,76,82,-1,18,80,50,-1,18,81,80,-1,18,82,81,-1,19,20,22,-1,20,21,22,-1,22,34,79,-1,22,77,76,-1,22,78,77,-1,22,79,78,-1,25,26,39,-1,25,39,36,-1,26,27,39,-1,27,28,39,-1,28,29,39,-1,29,30,39,-1,30,31,39,-1,31,32,39,-1,32,33,39,-1,33,37,39,-1,34,35,39,-1,34,39,79,-1,35,36,39,-1,37,38,39,-1,39,57,93,-1,39,66,96,-1,39,76,77,-1,39,77,78,-1,39,78,79,-1,39,83,84,-1,39,84,85,-1,39,85,86,-1,39,86,90,-1,39,90,91,-1,39,91,92,-1,39,92,66,-1,39,93,94,-1,39,94,95,-1,39,95,76,-1,39,96,57,-1,40,41,42,-1,40,42,43,-1,40,51,52,-1,40,52,53,-1,40,54,51,-1,40,55,54,-1,40,56,55,-1,43,44,57,-1,44,45,46,-1,44,46,47,-1,44,47,48,-1,44,48,49,-1,44,49,50,-1,44,50,80,-1,44,76,95,-1,44,80,81,-1,44,81,82,-1,44,82,76,-1,44,93,57,-1,44,94,93,-1,44,95,94,-1,58,59,60,-1,58,60,61,-1,58,61,72,-1,58,66,65,-1,58,68,67,-1,58,69,68,-1,58,70,69,-1,58,71,70,-1,58,72,71,-1,62,63,64,-1,62,64,65,-1,62,65,66,-1,62,66,92,-1,62,73,74,-1,62,74,75,-1,62,86,87,-1,62,87,88,-1,62,88,89,-1,62,89,73,-1,62,90,86,-1,62,91,90,-1,62,92,91,-1,97,99,98,-1,97,100,99,-1,97,101,100,-1,97,102,101,-1,97,103,102,-1,97,104,103,-1,97,105,104,-1};
			return value;
		}


		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_420_normalIndex_1()
		{
			int[] value = {0,1,33,-1,0,2,1,-1,0,3,2,-1,0,4,3,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,17,-1,0,19,18,-1,0,20,19,-1,0,21,20,-1,0,22,21,-1,0,23,22,-1,0,24,23,-1,0,26,25,-1,0,27,26,-1,0,28,27,-1,0,29,28,-1,0,30,29,-1,0,31,30,-1,0,32,31,-1,0,33,32,-1,4,5,6,-1,4,6,7,-1,4,7,8,-1,4,8,86,-1,4,83,39,-1,4,84,83,-1,4,85,84,-1,4,86,85,-1,8,9,58,-1,8,58,67,-1,8,67,68,-1,8,68,69,-1,8,69,70,-1,8,70,73,-1,8,73,89,-1,8,87,86,-1,8,88,87,-1,8,89,88,-1,9,10,58,-1,10,11,58,-1,11,12,58,-1,12,13,66,-1,12,66,58,-1,13,14,96,-1,13,96,66,-1,14,15,40,-1,14,40,43,-1,14,43,57,-1,14,57,96,-1,15,16,40,-1,16,17,40,-1,17,18,40,-1,18,19,22,-1,18,22,76,-1,18,50,51,-1,18,51,54,-1,18,54,55,-1,18,55,56,-1,18,56,40,-1,18,76,82,-1,18,80,50,-1,18,81,80,-1,18,82,81,-1,19,20,22,-1,20,21,22,-1,22,34,79,-1,22,77,76,-1,22,78,77,-1,22,79,78,-1,25,26,39,-1,25,39,36,-1,26,27,39,-1,27,28,39,-1,28,29,39,-1,29,30,39,-1,30,31,39,-1,31,32,39,-1,32,33,39,-1,33,37,39,-1,34,35,39,-1,34,39,79,-1,35,36,39,-1,37,38,39,-1,39,57,93,-1,39,66,96,-1,39,76,77,-1,39,77,78,-1,39,78,79,-1,39,83,84,-1,39,84,85,-1,39,85,86,-1,39,86,90,-1,39,90,91,-1,39,91,92,-1,39,92,66,-1,39,93,94,-1,39,94,95,-1,39,95,76,-1,39,96,57,-1,40,41,42,-1,40,42,43,-1,40,51,52,-1,40,52,53,-1,40,54,51,-1,40,55,54,-1,40,56,55,-1,43,44,57,-1,44,45,46,-1,44,46,47,-1,44,47,48,-1,44,48,49,-1,44,49,50,-1,44,50,80,-1,44,76,95,-1,44,80,81,-1,44,81,82,-1,44,82,76,-1,44,93,57,-1,44,94,93,-1,44,95,94,-1,58,59,60,-1,58,60,61,-1,58,61,72,-1,58,66,65,-1,58,68,67,-1,58,69,68,-1,58,70,69,-1,58,71,70,-1,58,72,71,-1,62,63,64,-1,62,64,65,-1,62,65,66,-1,62,66,92,-1,62,73,74,-1,62,74,75,-1,62,86,87,-1,62,87,88,-1,62,88,89,-1,62,89,73,-1,62,90,86,-1,62,91,90,-1,62,92,91,-1,97,99,98,-1,97,100,99,-1,97,101,100,-1,97,102,101,-1,97,103,102,-1,97,104,103,-1,97,105,104,-1};
			return value;
		}


		/** Define subarrays using type double[] */
		private double[] getCoordinate_6_420_point_1()
		{
			double[] value = {-7.92243,1.07637,1.45261,-7.80979,1.07637,1.45261,-7.80169,1.07787,1.45261,-7.79587,1.0843,1.45261,-7.79572,1.09371,1.45261,-7.79572,1.11105,1.45261,-7.79572,1.12838,1.45261,-7.79572,1.14572,1.45261,-7.79572,1.16306,1.45261,-7.80979,1.16306,1.45261,-7.82387,1.16306,1.45261,-7.83795,1.16306,1.45261,-7.85203,1.16306,1.45261,-7.86611,1.16306,1.45261,-7.88019,1.16306,1.45261,-7.89427,1.16306,1.45261,-7.90835,1.16306,1.45261,-7.92243,1.16306,1.45261,-7.93651,1.16306,1.45261,-7.93651,1.14572,1.45261,-7.93651,1.12838,1.45261,-7.93651,1.11105,1.45261,-7.93651,1.09371,1.45261,-7.93636,1.0843,1.45261,-7.93054,1.07787,1.45261,-7.92243,1.07637,1.45641,-7.90835,1.07637,1.45641,-7.89427,1.07637,1.45641,-7.88019,1.07637,1.45641,-7.86611,1.07637,1.45641,-7.85203,1.07637,1.45641,-7.83795,1.07637,1.45641,-7.82387,1.07637,1.45641,-7.80979,1.07637,1.45641,-7.93651,1.09371,1.45641,-7.93636,1.0843,1.45641,-7.93054,1.07787,1.45641,-7.80169,1.07787,1.45641,-7.79587,1.0843,1.45641,-7.79572,1.09371,1.45641,-7.92243,1.24974,1.45261,-7.90835,1.24974,1.45261,-7.89427,1.24974,1.45261,-7.88194,1.24533,1.45261,-7.88194,1.24533,1.45641,-7.89427,1.24974,1.45641,-7.90835,1.24974,1.45641,-7.92243,1.24974,1.45641,-7.92908,1.24789,1.45641,-7.93431,1.24481,1.45641,-7.93651,1.23241,1.45641,-7.93651,1.23241,1.45261,-7.93431,1.24481,1.45261,-7.92908,1.24789,1.45261,-7.93651,1.21507,1.45261,-7.93651,1.19773,1.45261,-7.93651,1.18039,1.45261,-7.88019,1.16306,1.45641,-7.85029,1.24533,1.45261,-7.83795,1.24974,1.45261,-7.82387,1.24974,1.45261,-7.80979,1.24974,1.45261,-7.80979,1.24974,1.45641,-7.82387,1.24974,1.45641,-7.83795,1.24974,1.45641,-7.85029,1.24533,1.45641,-7.85203,1.16306,1.45641,-7.79572,1.18039,1.45261,-7.79572,1.19773,1.45261,-7.79572,1.21507,1.45261,-7.79572,1.23241,1.45261,-7.79791,1.24481,1.45261,-7.80315,1.24789,1.45261,-7.79572,1.23241,1.45641,-7.79791,1.24481,1.45641,-7.80315,1.24789,1.45641,-7.93651,1.16306,1.45641,-7.93651,1.14572,1.45641,-7.93651,1.12838,1.45641,-7.93651,1.11105,1.45641,-7.93651,1.21507,1.45641,-7.93651,1.19773,1.45641,-7.93651,1.18039,1.45641,-7.79572,1.11105,1.45641,-7.79572,1.12838,1.45641,-7.79572,1.14572,1.45641,-7.79572,1.16306,1.45641,-7.79572,1.18039,1.45641,-7.79572,1.19773,1.45641,-7.79572,1.21507,1.45641,-7.80979,1.16306,1.45641,-7.82387,1.16306,1.45641,-7.83795,1.16306,1.45641,-7.89427,1.16306,1.45641,-7.90835,1.16306,1.45641,-7.92243,1.16306,1.45641,-7.86611,1.16306,1.45641,-7.92243,1.07637,1.45261,-7.90835,1.07637,1.45261,-7.89427,1.07637,1.45261};
			return value;
		}
		private double[] getCoordinate_6_420_point_2()
		{
			double[] value = {-7.88019,1.07637,1.45261,-7.86611,1.07637,1.45261,-7.85203,1.07637,1.45261,-7.83795,1.07637,1.45261,-7.82387,1.07637,1.45261,-7.80979,1.07637,1.45261};
			return value;
		}


		/** Define subarrays using type double[] */
		private double[] getNormal_6_421_vector_1()
		{
			double[] value = {-4.57425E-17,-0.364399,-0.931243,0.0,-0.707107,-0.707107,-5.64879E-16,0.0,-1.0,-5.64879E-16,0.0,-1.0,0.928477,0.0,-0.371391,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.83205,0.0,-0.5547,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,-0.300864,0.307314,-0.902795,0.0,0.83205,-0.5547,0.217729,0.440176,-0.871114,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,-0.83205,0.0,-0.5547,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,-0.928477,0.0,-0.371391,0.0,0.0,-1.0,0.0,0.0,-1.0,3.52223E-15,-0.447214,0.894427,0.0,-0.707107,0.707107,0.0,-0.707107,0.707107,0.0,-0.707107,0.707107,0.0,-0.707107,0.707107,0.0,-0.707107,0.707107,0.0,-0.707107,0.707107,0.0,-0.707107,0.707107,-7.69865E-15,-0.707107,0.707107,-0.447214,0.0,0.894427,-1.80868E-15,0.0,1.0,2.12929E-15,0.0,1.0,2.13939E-14,0.0,1.0,6.45628E-14,0.0,1.0,0.0370117,0.0,0.999315,0.0,0.0,-1.0,0.0,0.0,0.0,0.0,0.0,-1.0,0.706948,0.0149971,-0.707107,0.0766792,0.00162666,0.997054,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.83937E-15,0.0,1.0,-0.707107,0.0,0.707107,-0.447214,0.0,-0.894427,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.53279,0.277758,0.799365,-0.152023,0.00322499,-0.988372,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,-4.12847E-14,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,-0.447113,0.00948499,0.894427,-0.406721,0.415441,0.813626,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.447214,0.0,-0.894427,2.05166E-15,0.0,-1.0,2.05166E-15,0.0,-1.0,0.707107,0.0,0.707107,-8.07864E-14,0.0,1.0,-1.61573E-13,0.0,1.0,-0.6,0.0,0.8,-0.707107,0.0,0.707107,-0.707107,0.0,0.707107,-0.707107,0.0,0.707107,-0.707107,0.0,0.707107,-0.707107,0.0,0.707107,-0.707107,0.0,0.707107,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.707107,0.0,0.707107,0.707107,0.0,0.707107,0.707107,0.0,0.707107,0.707107,0.0,0.707107,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.83205,0.5547,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0};
			return value;
		}
		private double[] getNormal_6_421_vector_2()
		{
			double[] value = {0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0};
			return value;
		}


		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_426_coordIndex_1()
		{
			int[] value = {0,1,9,-1,0,2,1,-1,0,3,2,-1,0,4,3,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,14,-1,0,9,8,-1,0,10,7,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,1,2,22,-1,1,15,9,-1,1,16,15,-1,1,17,16,-1,1,18,17,-1,1,19,18,-1,1,20,19,-1,1,21,25,-1,1,22,21,-1,1,23,20,-1,1,24,23,-1,1,25,24,-1,2,3,30,-1,2,30,31,-1,2,31,22,-1,3,4,28,-1,3,28,29,-1,3,29,30,-1,4,5,27,-1,4,27,28,-1,5,6,27,-1,6,7,35,-1,6,26,27,-1,6,35,42,-1,6,38,26,-1,6,39,38,-1,6,40,39,-1,6,41,40,-1,6,42,41,-1,7,10,37,-1,7,36,35,-1,7,37,36,-1,8,9,29,-1,8,26,14,-1,8,27,26,-1,8,28,27,-1,8,29,28,-1,9,15,16,-1,9,16,17,-1,9,17,34,-1,9,30,29,-1,9,31,30,-1,9,32,31,-1,9,33,32,-1,9,34,33,-1,10,11,12,-1,10,12,13,-1,10,13,38,-1,10,38,39,-1,10,39,40,-1,10,40,41,-1,10,41,42,-1,10,42,37,-1,13,14,46,-1,13,45,38,-1,13,46,45,-1,14,26,43,-1,14,43,46,-1,17,18,65,-1,17,65,34,-1,18,19,51,-1,18,51,65,-1,19,20,51,-1,20,23,74,-1,20,47,51,-1,20,74,47,-1,21,22,31,-1,21,31,32,-1,21,32,53,-1,21,47,58,-1,21,53,47,-1,21,56,25,-1,21,57,56,-1,21,58,57,-1,23,24,25,-1,23,25,74,-1,25,56,74,-1,26,38,45,-1,26,44,43,-1,26,45,44,-1,32,33,55,-1,32,54,53,-1,32,55,54,-1,33,34,59,-1,33,59,60,-1,33,60,61,-1,33,61,70,-1,33,66,51,-1,33,67,66,-1,33,68,67,-1,33,69,68,-1,33,70,69,-1,34,65,59,-1,35,36,42,-1,36,37,42,-1,47,48,51,-1,47,52,48,-1,47,53,52,-1,47,74,83,-1,47,83,58,-1,48,49,51,-1,48,52,49,-1,49,50,51,-1,49,52,50,-1,50,52,51,-1,51,62,63,-1,51,63,65,-1,51,66,73,-1,51,71,62,-1,51,72,71,-1,51,73,72,-1,56,57,87,-1,56,83,74,-1,56,85,84,-1,56,86,85,-1,56,87,86,-1,57,58,87,-1,58,88,87,-1,59,61,60,-1,59,62,61,-1,59,63,62,-1,59,64,63,-1,59,65,64,-1,61,62,70,-1,62,71,70,-1,63,64,65,-1,66,67,78,-1,66,78,81,-1,66,81,73,-1,67,68,80,-1,67,79,78,-1,67,80,79,-1,68,69,80,-1,69,70,77,-1,69,77,80,-1,70,71,76,-1,70,75,77,-1,70,76,75,-1,71,72,82,-1,71,82,76,-1,72,73,82,-1,73,81,82,-1,75,76,82,-1,75,82,77,-1,77,82,80,-1,78,79,81,-1,79,80,81,-1,80,82,81,-1};
			return value;
		}


		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_426_normalIndex_1()
		{
			int[] value = {0,1,9,-1,0,2,1,-1,0,3,2,-1,0,4,3,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,14,-1,0,9,8,-1,0,10,7,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,1,2,22,-1,1,15,9,-1,1,16,15,-1,1,17,16,-1,1,18,17,-1,1,19,18,-1,1,20,19,-1,1,21,25,-1,1,22,21,-1,1,23,20,-1,1,24,23,-1,1,25,24,-1,2,3,30,-1,2,30,31,-1,2,31,22,-1,3,4,28,-1,3,28,29,-1,3,29,30,-1,4,5,27,-1,4,27,28,-1,5,6,27,-1,6,7,35,-1,6,26,27,-1,6,35,42,-1,6,38,26,-1,6,39,38,-1,6,40,39,-1,6,41,40,-1,6,42,41,-1,7,10,37,-1,7,36,35,-1,7,37,36,-1,8,9,29,-1,8,26,14,-1,8,27,26,-1,8,28,27,-1,8,29,28,-1,9,15,16,-1,9,16,17,-1,9,17,34,-1,9,30,29,-1,9,31,30,-1,9,32,31,-1,9,33,32,-1,9,34,33,-1,10,11,12,-1,10,12,13,-1,10,13,38,-1,10,38,39,-1,10,39,40,-1,10,40,41,-1,10,41,42,-1,10,42,37,-1,13,14,46,-1,13,45,38,-1,13,46,45,-1,14,26,43,-1,14,43,46,-1,17,18,65,-1,17,65,34,-1,18,19,51,-1,18,51,65,-1,19,20,51,-1,20,23,74,-1,20,47,51,-1,20,74,47,-1,21,22,31,-1,21,31,32,-1,21,32,53,-1,21,47,58,-1,21,53,47,-1,21,56,25,-1,21,57,56,-1,21,58,57,-1,23,24,25,-1,23,25,74,-1,25,56,74,-1,26,38,45,-1,26,44,43,-1,26,45,44,-1,32,33,55,-1,32,54,53,-1,32,55,54,-1,33,34,59,-1,33,59,60,-1,33,60,61,-1,33,61,70,-1,33,66,51,-1,33,67,66,-1,33,68,67,-1,33,69,68,-1,33,70,69,-1,34,65,59,-1,35,36,42,-1,36,37,42,-1,47,48,51,-1,47,52,48,-1,47,53,52,-1,47,74,83,-1,47,83,58,-1,48,49,51,-1,48,52,49,-1,49,50,51,-1,49,52,50,-1,50,52,51,-1,51,62,63,-1,51,63,65,-1,51,66,73,-1,51,71,62,-1,51,72,71,-1,51,73,72,-1,56,57,87,-1,56,83,74,-1,56,85,84,-1,56,86,85,-1,56,87,86,-1,57,58,87,-1,58,88,87,-1,59,61,60,-1,59,62,61,-1,59,63,62,-1,59,64,63,-1,59,65,64,-1,61,62,70,-1,62,71,70,-1,63,64,65,-1,66,67,78,-1,66,78,81,-1,66,81,73,-1,67,68,80,-1,67,79,78,-1,67,80,79,-1,68,69,80,-1,69,70,77,-1,69,77,80,-1,70,71,76,-1,70,75,77,-1,70,76,75,-1,71,72,82,-1,71,82,76,-1,72,73,82,-1,73,81,82,-1,75,76,82,-1,75,82,77,-1,77,82,80,-1,78,79,81,-1,79,80,81,-1,80,82,81,-1};
			return value;
		}




		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_432_coordIndex_1()
		{
			int[] value = {0,1,37,-1,0,2,1,-1,0,3,2,-1,0,4,3,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,38,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,17,-1,0,19,18,-1,0,20,19,-1,0,21,20,-1,0,22,21,-1,0,23,22,-1,0,24,23,-1,0,25,24,-1,0,26,25,-1,0,27,26,-1,0,28,27,-1,0,29,28,-1,0,30,29,-1,0,31,30,-1,0,32,31,-1,0,33,32,-1,0,34,33,-1,0,35,34,-1,0,36,35,-1,0,37,36,-1,0,38,10,-1,1,2,39,-1,1,39,37,-1,2,3,10,-1,2,10,39,-1,3,4,10,-1,4,5,10,-1,5,6,10,-1,6,7,10,-1,7,8,10,-1,8,9,10,-1,10,38,40,-1,10,40,41,-1,10,41,42,-1,10,42,43,-1,10,43,44,-1,10,44,45,-1,10,45,46,-1,10,46,47,-1,10,47,48,-1,10,48,64,-1,10,49,39,-1,10,50,49,-1,10,51,50,-1,10,52,51,-1,10,53,52,-1,10,54,53,-1,10,55,54,-1,10,56,55,-1,10,57,56,-1,10,58,57,-1,10,59,58,-1,10,60,59,-1,10,61,60,-1,10,62,61,-1,10,63,62,-1,10,64,63,-1,11,12,13,-1,11,13,14,-1,11,14,15,-1,11,15,16,-1,11,16,17,-1,11,17,18,-1,11,18,19,-1,11,19,47,-1,11,40,38,-1,11,41,40,-1,11,42,41,-1,11,43,42,-1,11,44,43,-1,11,45,44,-1,11,46,45,-1,11,47,46,-1,19,20,48,-1,19,48,47,-1,20,21,22,-1,20,22,23,-1,20,23,24,-1,20,24,25,-1,20,25,26,-1,20,26,27,-1,20,27,28,-1,20,28,57,-1,20,57,58,-1,20,58,59,-1,20,59,60,-1,20,60,61,-1,20,61,62,-1,20,62,63,-1,20,63,64,-1,20,64,48,-1,28,29,56,-1,28,56,57,-1,29,30,39,-1,29,39,56,-1,30,31,39,-1,31,32,39,-1,32,33,39,-1,33,34,39,-1,34,35,39,-1,35,36,39,-1,36,37,39,-1,39,49,50,-1,39,50,51,-1,39,51,52,-1,39,52,53,-1,39,53,54,-1,39,54,55,-1,39,55,56,-1,65,67,66,-1,65,68,67,-1,65,69,68,-1,65,70,69,-1,65,71,70,-1,65,72,71,-1,65,73,72,-1};
			return value;
		}


		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_432_normalIndex_1()
		{
			int[] value = {0,1,37,-1,0,2,1,-1,0,3,2,-1,0,4,3,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,38,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,17,-1,0,19,18,-1,0,20,19,-1,0,21,20,-1,0,22,21,-1,0,23,22,-1,0,24,23,-1,0,25,24,-1,0,26,25,-1,0,27,26,-1,0,28,27,-1,0,29,28,-1,0,30,29,-1,0,31,30,-1,0,32,31,-1,0,33,32,-1,0,34,33,-1,0,35,34,-1,0,36,35,-1,0,37,36,-1,0,38,10,-1,1,2,39,-1,1,39,37,-1,2,3,10,-1,2,10,39,-1,3,4,10,-1,4,5,10,-1,5,6,10,-1,6,7,10,-1,7,8,10,-1,8,9,10,-1,10,38,40,-1,10,40,41,-1,10,41,42,-1,10,42,43,-1,10,43,44,-1,10,44,45,-1,10,45,46,-1,10,46,47,-1,10,47,48,-1,10,48,64,-1,10,49,39,-1,10,50,49,-1,10,51,50,-1,10,52,51,-1,10,53,52,-1,10,54,53,-1,10,55,54,-1,10,56,55,-1,10,57,56,-1,10,58,57,-1,10,59,58,-1,10,60,59,-1,10,61,60,-1,10,62,61,-1,10,63,62,-1,10,64,63,-1,11,12,13,-1,11,13,14,-1,11,14,15,-1,11,15,16,-1,11,16,17,-1,11,17,18,-1,11,18,19,-1,11,19,47,-1,11,40,38,-1,11,41,40,-1,11,42,41,-1,11,43,42,-1,11,44,43,-1,11,45,44,-1,11,46,45,-1,11,47,46,-1,19,20,48,-1,19,48,47,-1,20,21,22,-1,20,22,23,-1,20,23,24,-1,20,24,25,-1,20,25,26,-1,20,26,27,-1,20,27,28,-1,20,28,57,-1,20,57,58,-1,20,58,59,-1,20,59,60,-1,20,60,61,-1,20,61,62,-1,20,62,63,-1,20,63,64,-1,20,64,48,-1,28,29,56,-1,28,56,57,-1,29,30,39,-1,29,39,56,-1,30,31,39,-1,31,32,39,-1,32,33,39,-1,33,34,39,-1,34,35,39,-1,35,36,39,-1,36,37,39,-1,39,49,50,-1,39,50,51,-1,39,51,52,-1,39,52,53,-1,39,53,54,-1,39,54,55,-1,39,55,56,-1,65,67,66,-1,65,68,67,-1,65,69,68,-1,65,70,69,-1,65,71,70,-1,65,72,71,-1,65,73,72,-1};
			return value;
		}




		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_438_coordIndex_1()
		{
			int[] value = {0,1,37,-1,0,2,1,-1,0,3,2,-1,0,4,3,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,38,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,17,-1,0,19,18,-1,0,20,19,-1,0,21,20,-1,0,22,21,-1,0,23,22,-1,0,24,23,-1,0,25,24,-1,0,26,25,-1,0,27,26,-1,0,28,27,-1,0,29,28,-1,0,30,29,-1,0,31,30,-1,0,32,31,-1,0,33,32,-1,0,34,33,-1,0,35,34,-1,0,36,35,-1,0,37,36,-1,0,38,10,-1,1,2,39,-1,1,39,37,-1,2,3,10,-1,2,10,39,-1,3,4,10,-1,4,5,10,-1,5,6,10,-1,6,7,10,-1,7,8,10,-1,8,9,10,-1,10,38,40,-1,10,40,41,-1,10,41,42,-1,10,42,43,-1,10,43,44,-1,10,44,45,-1,10,45,46,-1,10,46,47,-1,10,47,48,-1,10,48,64,-1,10,49,39,-1,10,50,49,-1,10,51,50,-1,10,52,51,-1,10,53,52,-1,10,54,53,-1,10,55,54,-1,10,56,55,-1,10,57,56,-1,10,58,57,-1,10,59,58,-1,10,60,59,-1,10,61,60,-1,10,62,61,-1,10,63,62,-1,10,64,63,-1,11,12,13,-1,11,13,14,-1,11,14,15,-1,11,15,16,-1,11,16,17,-1,11,17,18,-1,11,18,19,-1,11,19,47,-1,11,40,38,-1,11,41,40,-1,11,42,41,-1,11,43,42,-1,11,44,43,-1,11,45,44,-1,11,46,45,-1,11,47,46,-1,19,20,48,-1,19,48,47,-1,20,21,22,-1,20,22,23,-1,20,23,24,-1,20,24,25,-1,20,25,26,-1,20,26,27,-1,20,27,28,-1,20,28,57,-1,20,57,58,-1,20,58,59,-1,20,59,60,-1,20,60,61,-1,20,61,62,-1,20,62,63,-1,20,63,64,-1,20,64,48,-1,28,29,56,-1,28,56,57,-1,29,30,39,-1,29,39,56,-1,30,31,39,-1,31,32,39,-1,32,33,39,-1,33,34,39,-1,34,35,39,-1,35,36,39,-1,36,37,39,-1,39,49,50,-1,39,50,51,-1,39,51,52,-1,39,52,53,-1,39,53,54,-1,39,54,55,-1,39,55,56,-1,65,67,66,-1,65,68,67,-1,65,69,68,-1,65,70,69,-1,65,71,70,-1,65,72,71,-1,65,73,72,-1};
			return value;
		}


		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_438_normalIndex_1()
		{
			int[] value = {0,1,37,-1,0,2,1,-1,0,3,2,-1,0,4,3,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,38,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,17,-1,0,19,18,-1,0,20,19,-1,0,21,20,-1,0,22,21,-1,0,23,22,-1,0,24,23,-1,0,25,24,-1,0,26,25,-1,0,27,26,-1,0,28,27,-1,0,29,28,-1,0,30,29,-1,0,31,30,-1,0,32,31,-1,0,33,32,-1,0,34,33,-1,0,35,34,-1,0,36,35,-1,0,37,36,-1,0,38,10,-1,1,2,39,-1,1,39,37,-1,2,3,10,-1,2,10,39,-1,3,4,10,-1,4,5,10,-1,5,6,10,-1,6,7,10,-1,7,8,10,-1,8,9,10,-1,10,38,40,-1,10,40,41,-1,10,41,42,-1,10,42,43,-1,10,43,44,-1,10,44,45,-1,10,45,46,-1,10,46,47,-1,10,47,48,-1,10,48,64,-1,10,49,39,-1,10,50,49,-1,10,51,50,-1,10,52,51,-1,10,53,52,-1,10,54,53,-1,10,55,54,-1,10,56,55,-1,10,57,56,-1,10,58,57,-1,10,59,58,-1,10,60,59,-1,10,61,60,-1,10,62,61,-1,10,63,62,-1,10,64,63,-1,11,12,13,-1,11,13,14,-1,11,14,15,-1,11,15,16,-1,11,16,17,-1,11,17,18,-1,11,18,19,-1,11,19,47,-1,11,40,38,-1,11,41,40,-1,11,42,41,-1,11,43,42,-1,11,44,43,-1,11,45,44,-1,11,46,45,-1,11,47,46,-1,19,20,48,-1,19,48,47,-1,20,21,22,-1,20,22,23,-1,20,23,24,-1,20,24,25,-1,20,25,26,-1,20,26,27,-1,20,27,28,-1,20,28,57,-1,20,57,58,-1,20,58,59,-1,20,59,60,-1,20,60,61,-1,20,61,62,-1,20,62,63,-1,20,63,64,-1,20,64,48,-1,28,29,56,-1,28,56,57,-1,29,30,39,-1,29,39,56,-1,30,31,39,-1,31,32,39,-1,32,33,39,-1,33,34,39,-1,34,35,39,-1,35,36,39,-1,36,37,39,-1,39,49,50,-1,39,50,51,-1,39,51,52,-1,39,52,53,-1,39,53,54,-1,39,54,55,-1,39,55,56,-1,65,67,66,-1,65,68,67,-1,65,69,68,-1,65,70,69,-1,65,71,70,-1,65,72,71,-1,65,73,72,-1};
			return value;
		}




		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_444_coordIndex_1()
		{
			int[] value = {0,1,8,-1,0,2,1,-1,0,3,2,-1,0,4,7,-1,0,5,4,-1,0,6,5,-1,0,7,3,-1,0,8,6,-1,1,2,10,-1,1,9,11,-1,1,10,9,-1,1,11,8,-1,2,3,10,-1,3,7,46,-1,3,13,10,-1,3,16,13,-1,3,19,16,-1,3,22,19,-1,3,25,22,-1,3,28,25,-1,3,31,28,-1,3,34,31,-1,3,37,34,-1,3,40,37,-1,3,43,40,-1,3,46,43,-1,4,5,45,-1,4,45,7,-1,5,6,51,-1,5,47,45,-1,5,51,52,-1,5,52,47,-1,6,8,48,-1,6,48,51,-1,7,45,46,-1,8,11,50,-1,8,49,48,-1,8,50,49,-1,9,10,13,-1,9,12,14,-1,9,13,12,-1,9,14,11,-1,11,14,50,-1,12,13,16,-1,12,15,17,-1,12,16,15,-1,12,17,14,-1,14,17,63,-1,14,63,50,-1,15,16,19,-1,15,18,20,-1,15,19,18,-1,15,20,17,-1,17,20,62,-1,17,62,63,-1,18,19,22,-1,18,21,23,-1,18,22,21,-1,18,23,20,-1,20,23,61,-1,20,61,62,-1,21,22,25,-1,21,24,26,-1,21,25,24,-1,21,26,23,-1,23,26,60,-1,23,60,61,-1,24,25,28,-1,24,27,29,-1,24,28,27,-1,24,29,26,-1,26,29,59,-1,26,59,60,-1,27,28,31,-1,27,30,32,-1,27,31,30,-1,27,32,29,-1,29,32,58,-1,29,58,59,-1,30,31,34,-1,30,33,35,-1,30,34,33,-1,30,35,32,-1,32,35,57,-1,32,57,58,-1,33,34,37,-1,33,36,38,-1,33,37,36,-1,33,38,35,-1,35,38,56,-1,35,56,57,-1,36,37,40,-1,36,39,41,-1,36,40,39,-1,36,41,38,-1,38,41,55,-1,38,55,56,-1,39,40,43,-1,39,42,44,-1,39,43,42,-1,39,44,41,-1,41,44,54,-1,41,54,55,-1,42,43,46,-1,42,45,47,-1,42,46,45,-1,42,47,44,-1,44,47,53,-1,44,53,54,-1,47,52,53,-1,48,49,51,-1,49,50,63,-1,49,52,51,-1,49,53,52,-1,49,54,53,-1,49,55,54,-1,49,56,55,-1,49,57,56,-1,49,58,57,-1,49,59,58,-1,49,60,59,-1,49,61,60,-1,49,62,61,-1,49,63,62,-1};
			return value;
		}


		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_444_normalIndex_1()
		{
			int[] value = {0,1,8,-1,0,2,1,-1,0,3,2,-1,0,4,7,-1,0,5,4,-1,0,6,5,-1,0,7,3,-1,0,8,6,-1,1,2,10,-1,1,9,11,-1,1,10,9,-1,1,11,8,-1,2,3,10,-1,3,7,46,-1,3,13,10,-1,3,16,13,-1,3,19,16,-1,3,22,19,-1,3,25,22,-1,3,28,25,-1,3,31,28,-1,3,34,31,-1,3,37,34,-1,3,40,37,-1,3,43,40,-1,3,46,43,-1,4,5,45,-1,4,45,7,-1,5,6,51,-1,5,47,45,-1,5,51,52,-1,5,52,47,-1,6,8,48,-1,6,48,51,-1,7,45,46,-1,8,11,50,-1,8,49,48,-1,8,50,49,-1,9,10,13,-1,9,12,14,-1,9,13,12,-1,9,14,11,-1,11,14,50,-1,12,13,16,-1,12,15,17,-1,12,16,15,-1,12,17,14,-1,14,17,63,-1,14,63,50,-1,15,16,19,-1,15,18,20,-1,15,19,18,-1,15,20,17,-1,17,20,62,-1,17,62,63,-1,18,19,22,-1,18,21,23,-1,18,22,21,-1,18,23,20,-1,20,23,61,-1,20,61,62,-1,21,22,25,-1,21,24,26,-1,21,25,24,-1,21,26,23,-1,23,26,60,-1,23,60,61,-1,24,25,28,-1,24,27,29,-1,24,28,27,-1,24,29,26,-1,26,29,59,-1,26,59,60,-1,27,28,31,-1,27,30,32,-1,27,31,30,-1,27,32,29,-1,29,32,58,-1,29,58,59,-1,30,31,34,-1,30,33,35,-1,30,34,33,-1,30,35,32,-1,32,35,57,-1,32,57,58,-1,33,34,37,-1,33,36,38,-1,33,37,36,-1,33,38,35,-1,35,38,56,-1,35,56,57,-1,36,37,40,-1,36,39,41,-1,36,40,39,-1,36,41,38,-1,38,41,55,-1,38,55,56,-1,39,40,43,-1,39,42,44,-1,39,43,42,-1,39,44,41,-1,41,44,54,-1,41,54,55,-1,42,43,46,-1,42,45,47,-1,42,46,45,-1,42,47,44,-1,44,47,53,-1,44,53,54,-1,47,52,53,-1,48,49,51,-1,49,50,63,-1,49,52,51,-1,49,53,52,-1,49,54,53,-1,49,55,54,-1,49,56,55,-1,49,57,56,-1,49,58,57,-1,49,59,58,-1,49,60,59,-1,49,61,60,-1,49,62,61,-1,49,63,62,-1};
			return value;
		}




		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_450_coordIndex_1()
		{
			int[] value = {0,1,8,-1,0,2,1,-1,0,3,2,-1,0,4,7,-1,0,5,4,-1,0,6,5,-1,0,7,3,-1,0,8,6,-1,1,9,8,-1,1,10,9,-1,2,3,45,-1,3,7,43,-1,3,18,19,-1,3,19,47,-1,3,22,18,-1,3,25,22,-1,3,28,25,-1,3,31,28,-1,3,34,31,-1,3,37,34,-1,3,40,37,-1,3,43,40,-1,3,46,45,-1,3,47,46,-1,4,5,42,-1,4,42,7,-1,5,6,51,-1,5,44,42,-1,5,51,52,-1,5,52,44,-1,6,8,48,-1,6,48,51,-1,7,42,43,-1,8,9,50,-1,8,49,48,-1,8,50,49,-1,9,10,11,-1,9,11,50,-1,10,12,11,-1,11,12,13,-1,11,13,63,-1,11,63,50,-1,12,14,13,-1,13,14,15,-1,13,15,62,-1,13,62,63,-1,14,16,15,-1,15,16,20,-1,15,20,61,-1,15,61,62,-1,16,17,20,-1,16,18,17,-1,16,19,18,-1,17,18,22,-1,17,21,23,-1,17,22,21,-1,17,23,20,-1,20,23,60,-1,20,60,61,-1,21,22,25,-1,21,24,26,-1,21,25,24,-1,21,26,23,-1,23,26,59,-1,23,59,60,-1,24,25,28,-1,24,27,29,-1,24,28,27,-1,24,29,26,-1,26,29,58,-1,26,58,59,-1,27,28,31,-1,27,30,32,-1,27,31,30,-1,27,32,29,-1,29,32,57,-1,29,57,58,-1,30,31,34,-1,30,33,35,-1,30,34,33,-1,30,35,32,-1,32,35,56,-1,32,56,57,-1,33,34,37,-1,33,36,38,-1,33,37,36,-1,33,38,35,-1,35,38,55,-1,35,55,56,-1,36,37,40,-1,36,39,41,-1,36,40,39,-1,36,41,38,-1,38,41,54,-1,38,54,55,-1,39,40,43,-1,39,42,44,-1,39,43,42,-1,39,44,41,-1,41,44,53,-1,41,53,54,-1,44,52,53,-1,48,49,51,-1,49,50,63,-1,49,52,51,-1,49,53,52,-1,49,54,53,-1,49,55,54,-1,49,56,55,-1,49,57,56,-1,49,58,57,-1,49,59,58,-1,49,60,59,-1,49,61,60,-1,49,62,61,-1,49,63,62,-1};
			return value;
		}


		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_450_normalIndex_1()
		{
			int[] value = {0,1,8,-1,0,2,1,-1,0,3,2,-1,0,4,7,-1,0,5,4,-1,0,6,5,-1,0,7,3,-1,0,8,6,-1,1,9,8,-1,1,10,9,-1,2,3,45,-1,3,7,43,-1,3,18,19,-1,3,19,47,-1,3,22,18,-1,3,25,22,-1,3,28,25,-1,3,31,28,-1,3,34,31,-1,3,37,34,-1,3,40,37,-1,3,43,40,-1,3,46,45,-1,3,47,46,-1,4,5,42,-1,4,42,7,-1,5,6,51,-1,5,44,42,-1,5,51,52,-1,5,52,44,-1,6,8,48,-1,6,48,51,-1,7,42,43,-1,8,9,50,-1,8,49,48,-1,8,50,49,-1,9,10,11,-1,9,11,50,-1,10,12,11,-1,11,12,13,-1,11,13,63,-1,11,63,50,-1,12,14,13,-1,13,14,15,-1,13,15,62,-1,13,62,63,-1,14,16,15,-1,15,16,20,-1,15,20,61,-1,15,61,62,-1,16,17,20,-1,16,18,17,-1,16,19,18,-1,17,18,22,-1,17,21,23,-1,17,22,21,-1,17,23,20,-1,20,23,60,-1,20,60,61,-1,21,22,25,-1,21,24,26,-1,21,25,24,-1,21,26,23,-1,23,26,59,-1,23,59,60,-1,24,25,28,-1,24,27,29,-1,24,28,27,-1,24,29,26,-1,26,29,58,-1,26,58,59,-1,27,28,31,-1,27,30,32,-1,27,31,30,-1,27,32,29,-1,29,32,57,-1,29,57,58,-1,30,31,34,-1,30,33,35,-1,30,34,33,-1,30,35,32,-1,32,35,56,-1,32,56,57,-1,33,34,37,-1,33,36,38,-1,33,37,36,-1,33,38,35,-1,35,38,55,-1,35,55,56,-1,36,37,40,-1,36,39,41,-1,36,40,39,-1,36,41,38,-1,38,41,54,-1,38,54,55,-1,39,40,43,-1,39,42,44,-1,39,43,42,-1,39,44,41,-1,41,44,53,-1,41,53,54,-1,44,52,53,-1,48,49,51,-1,49,50,63,-1,49,52,51,-1,49,53,52,-1,49,54,53,-1,49,55,54,-1,49,56,55,-1,49,57,56,-1,49,58,57,-1,49,59,58,-1,49,60,59,-1,49,61,60,-1,49,62,61,-1,49,63,62,-1};
			return value;
		}




		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_456_coordIndex_1()
		{
			int[] value = {0,2,1,-1,0,3,2,-1,0,4,3,-1,0,5,4,-1,1,2,43,-1,2,3,51,-1,2,42,43,-1,2,51,52,-1,2,52,42,-1,3,4,48,-1,3,48,51,-1,4,5,9,-1,4,9,50,-1,4,49,48,-1,4,50,49,-1,5,6,9,-1,5,7,6,-1,5,8,7,-1,6,7,11,-1,6,10,12,-1,6,11,10,-1,6,12,9,-1,7,8,44,-1,7,44,11,-1,9,12,50,-1,10,11,14,-1,10,13,15,-1,10,14,13,-1,10,15,12,-1,11,44,14,-1,12,15,63,-1,12,63,50,-1,13,14,17,-1,13,16,18,-1,13,17,16,-1,13,18,15,-1,14,44,17,-1,15,18,62,-1,15,62,63,-1,16,17,20,-1,16,19,21,-1,16,20,19,-1,16,21,18,-1,17,44,20,-1,18,21,61,-1,18,61,62,-1,19,20,23,-1,19,22,24,-1,19,23,22,-1,19,24,21,-1,20,44,23,-1,21,24,60,-1,21,60,61,-1,22,23,26,-1,22,25,27,-1,22,26,25,-1,22,27,24,-1,23,44,26,-1,24,27,59,-1,24,59,60,-1,25,26,29,-1,25,28,30,-1,25,29,28,-1,25,30,27,-1,26,44,29,-1,27,30,58,-1,27,58,59,-1,28,29,32,-1,28,31,33,-1,28,32,31,-1,28,33,30,-1,29,44,32,-1,30,33,57,-1,30,57,58,-1,31,32,35,-1,31,34,36,-1,31,35,34,-1,31,36,33,-1,32,44,35,-1,33,36,56,-1,33,56,57,-1,34,35,38,-1,34,37,39,-1,34,38,37,-1,34,39,36,-1,35,44,38,-1,36,39,55,-1,36,55,56,-1,37,40,39,-1,37,41,40,-1,38,44,45,-1,39,40,54,-1,39,54,55,-1,40,41,42,-1,40,42,53,-1,40,53,54,-1,41,43,42,-1,42,52,53,-1,44,46,45,-1,44,47,46,-1,48,49,51,-1,49,50,63,-1,49,52,51,-1,49,53,52,-1,49,54,53,-1,49,55,54,-1,49,56,55,-1,49,57,56,-1,49,58,57,-1,49,59,58,-1,49,60,59,-1,49,61,60,-1,49,62,61,-1,49,63,62,-1};
			return value;
		}


		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_456_normalIndex_1()
		{
			int[] value = {0,2,1,-1,0,3,2,-1,0,4,3,-1,0,5,4,-1,1,2,43,-1,2,3,51,-1,2,42,43,-1,2,51,52,-1,2,52,42,-1,3,4,48,-1,3,48,51,-1,4,5,9,-1,4,9,50,-1,4,49,48,-1,4,50,49,-1,5,6,9,-1,5,7,6,-1,5,8,7,-1,6,7,11,-1,6,10,12,-1,6,11,10,-1,6,12,9,-1,7,8,44,-1,7,44,11,-1,9,12,50,-1,10,11,14,-1,10,13,15,-1,10,14,13,-1,10,15,12,-1,11,44,14,-1,12,15,63,-1,12,63,50,-1,13,14,17,-1,13,16,18,-1,13,17,16,-1,13,18,15,-1,14,44,17,-1,15,18,62,-1,15,62,63,-1,16,17,20,-1,16,19,21,-1,16,20,19,-1,16,21,18,-1,17,44,20,-1,18,21,61,-1,18,61,62,-1,19,20,23,-1,19,22,24,-1,19,23,22,-1,19,24,21,-1,20,44,23,-1,21,24,60,-1,21,60,61,-1,22,23,26,-1,22,25,27,-1,22,26,25,-1,22,27,24,-1,23,44,26,-1,24,27,59,-1,24,59,60,-1,25,26,29,-1,25,28,30,-1,25,29,28,-1,25,30,27,-1,26,44,29,-1,27,30,58,-1,27,58,59,-1,28,29,32,-1,28,31,33,-1,28,32,31,-1,28,33,30,-1,29,44,32,-1,30,33,57,-1,30,57,58,-1,31,32,35,-1,31,34,36,-1,31,35,34,-1,31,36,33,-1,32,44,35,-1,33,36,56,-1,33,56,57,-1,34,35,38,-1,34,37,39,-1,34,38,37,-1,34,39,36,-1,35,44,38,-1,36,39,55,-1,36,55,56,-1,37,40,39,-1,37,41,40,-1,38,44,45,-1,39,40,54,-1,39,54,55,-1,40,41,42,-1,40,42,53,-1,40,53,54,-1,41,43,42,-1,42,52,53,-1,44,46,45,-1,44,47,46,-1,48,49,51,-1,49,50,63,-1,49,52,51,-1,49,53,52,-1,49,54,53,-1,49,55,54,-1,49,56,55,-1,49,57,56,-1,49,58,57,-1,49,59,58,-1,49,60,59,-1,49,61,60,-1,49,62,61,-1,49,63,62,-1};
			return value;
		}




		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_462_coordIndex_1()
		{
			int[] value = {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,19,-1,3,18,38,-1,3,20,19,-1,3,21,20,-1,3,22,21,-1,3,23,22,-1,3,24,23,-1,3,25,24,-1,3,26,25,-1,3,36,26,-1,3,38,39,-1,3,39,49,-1,3,48,36,-1,3,49,48,-1,4,5,18,-1,5,6,37,-1,5,37,46,-1,5,38,18,-1,5,40,38,-1,5,42,40,-1,5,44,42,-1,5,46,44,-1,6,7,9,-1,6,9,37,-1,7,8,9,-1,9,10,27,-1,9,27,37,-1,10,11,26,-1,10,26,36,-1,10,29,27,-1,10,31,29,-1,10,33,31,-1,10,35,33,-1,10,36,35,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,27,28,47,-1,27,29,28,-1,27,47,37,-1,28,29,46,-1,28,46,47,-1,29,30,45,-1,29,31,30,-1,29,45,46,-1,30,31,44,-1,30,44,45,-1,31,32,43,-1,31,33,32,-1,31,43,44,-1,32,33,42,-1,32,42,43,-1,33,34,41,-1,33,35,34,-1,33,41,42,-1,34,35,40,-1,34,40,41,-1,35,36,40,-1,36,39,40,-1,36,48,49,-1,36,49,39,-1,37,47,46,-1,38,40,39,-1,40,42,41,-1,42,44,43,-1,44,46,45,-1};
			return value;
		}


		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_462_normalIndex_1()
		{
			int[] value = {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,19,-1,3,18,38,-1,3,20,19,-1,3,21,20,-1,3,22,21,-1,3,23,22,-1,3,24,23,-1,3,25,24,-1,3,26,25,-1,3,36,26,-1,3,38,39,-1,3,39,49,-1,3,48,36,-1,3,49,48,-1,4,5,18,-1,5,6,37,-1,5,37,46,-1,5,38,18,-1,5,40,38,-1,5,42,40,-1,5,44,42,-1,5,46,44,-1,6,7,9,-1,6,9,37,-1,7,8,9,-1,9,10,27,-1,9,27,37,-1,10,11,26,-1,10,26,36,-1,10,29,27,-1,10,31,29,-1,10,33,31,-1,10,35,33,-1,10,36,35,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,27,28,47,-1,27,29,28,-1,27,47,37,-1,28,29,46,-1,28,46,47,-1,29,30,45,-1,29,31,30,-1,29,45,46,-1,30,31,44,-1,30,44,45,-1,31,32,43,-1,31,33,32,-1,31,43,44,-1,32,33,42,-1,32,42,43,-1,33,34,41,-1,33,35,34,-1,33,41,42,-1,34,35,40,-1,34,40,41,-1,35,36,40,-1,36,39,40,-1,36,48,49,-1,36,49,39,-1,37,47,46,-1,38,40,39,-1,40,42,41,-1,42,44,43,-1,44,46,45,-1};
			return value;
		}




		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_468_coordIndex_1()
		{
			int[] value = {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,19,-1,3,18,38,-1,3,20,19,-1,3,21,20,-1,3,22,21,-1,3,23,22,-1,3,24,23,-1,3,25,24,-1,3,26,25,-1,3,36,26,-1,3,38,39,-1,3,39,49,-1,3,48,36,-1,3,49,48,-1,4,5,18,-1,5,6,37,-1,5,37,46,-1,5,38,18,-1,5,40,38,-1,5,42,40,-1,5,44,42,-1,5,46,44,-1,6,7,9,-1,6,9,37,-1,7,8,9,-1,9,10,27,-1,9,27,37,-1,10,11,26,-1,10,26,36,-1,10,29,27,-1,10,31,29,-1,10,33,31,-1,10,35,33,-1,10,36,35,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,27,28,47,-1,27,29,28,-1,27,47,37,-1,28,29,46,-1,28,46,47,-1,29,30,45,-1,29,31,30,-1,29,45,46,-1,30,31,44,-1,30,44,45,-1,31,32,43,-1,31,33,32,-1,31,43,44,-1,32,33,42,-1,32,42,43,-1,33,34,41,-1,33,35,34,-1,33,41,42,-1,34,35,40,-1,34,40,41,-1,35,36,40,-1,36,39,40,-1,36,48,49,-1,36,49,39,-1,37,47,46,-1,38,40,39,-1,40,42,41,-1,42,44,43,-1,44,46,45,-1};
			return value;
		}


		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_468_normalIndex_1()
		{
			int[] value = {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,19,-1,3,18,38,-1,3,20,19,-1,3,21,20,-1,3,22,21,-1,3,23,22,-1,3,24,23,-1,3,25,24,-1,3,26,25,-1,3,36,26,-1,3,38,39,-1,3,39,49,-1,3,48,36,-1,3,49,48,-1,4,5,18,-1,5,6,37,-1,5,37,46,-1,5,38,18,-1,5,40,38,-1,5,42,40,-1,5,44,42,-1,5,46,44,-1,6,7,9,-1,6,9,37,-1,7,8,9,-1,9,10,27,-1,9,27,37,-1,10,11,26,-1,10,26,36,-1,10,29,27,-1,10,31,29,-1,10,33,31,-1,10,35,33,-1,10,36,35,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,27,28,47,-1,27,29,28,-1,27,47,37,-1,28,29,46,-1,28,46,47,-1,29,30,45,-1,29,31,30,-1,29,45,46,-1,30,31,44,-1,30,44,45,-1,31,32,43,-1,31,33,32,-1,31,43,44,-1,32,33,42,-1,32,42,43,-1,33,34,41,-1,33,35,34,-1,33,41,42,-1,34,35,40,-1,34,40,41,-1,35,36,40,-1,36,39,40,-1,36,48,49,-1,36,49,39,-1,37,47,46,-1,38,40,39,-1,40,42,41,-1,42,44,43,-1,44,46,45,-1};
			return value;
		}




		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_474_coordIndex_1()
		{
			int[] value = {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,32,-1,2,32,33,-1,2,33,19,-1,3,18,32,-1,4,5,18,-1,5,6,31,-1,5,31,18,-1,6,7,30,-1,6,30,31,-1,7,8,29,-1,7,29,30,-1,8,9,28,-1,8,28,29,-1,9,10,27,-1,9,27,28,-1,10,11,26,-1,10,26,27,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,18,31,46,-1,18,46,47,-1,18,47,32,-1,19,33,34,-1,19,34,20,-1,20,34,35,-1,20,35,21,-1,21,35,36,-1,21,36,22,-1,22,36,37,-1,22,37,23,-1,23,37,38,-1,23,38,24,-1,24,38,39,-1,24,39,25,-1,25,39,40,-1,25,40,26,-1,26,40,41,-1,26,41,27,-1,27,41,42,-1,27,42,28,-1,28,42,43,-1,28,43,29,-1,29,43,44,-1,29,44,30,-1,30,44,45,-1,30,45,31,-1,31,45,46,-1,32,41,33,-1,32,42,41,-1,32,47,42,-1,33,40,34,-1,33,41,40,-1,34,39,35,-1,34,40,39,-1,35,38,36,-1,35,39,38,-1,36,38,37,-1,42,47,43,-1,43,46,44,-1,43,47,46,-1,44,46,45,-1};
			return value;
		}


		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_474_normalIndex_1()
		{
			int[] value = {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,32,-1,2,32,33,-1,2,33,19,-1,3,18,32,-1,4,5,18,-1,5,6,31,-1,5,31,18,-1,6,7,30,-1,6,30,31,-1,7,8,29,-1,7,29,30,-1,8,9,28,-1,8,28,29,-1,9,10,27,-1,9,27,28,-1,10,11,26,-1,10,26,27,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,18,31,46,-1,18,46,47,-1,18,47,32,-1,19,33,34,-1,19,34,20,-1,20,34,35,-1,20,35,21,-1,21,35,36,-1,21,36,22,-1,22,36,37,-1,22,37,23,-1,23,37,38,-1,23,38,24,-1,24,38,39,-1,24,39,25,-1,25,39,40,-1,25,40,26,-1,26,40,41,-1,26,41,27,-1,27,41,42,-1,27,42,28,-1,28,42,43,-1,28,43,29,-1,29,43,44,-1,29,44,30,-1,30,44,45,-1,30,45,31,-1,31,45,46,-1,32,41,33,-1,32,42,41,-1,32,47,42,-1,33,40,34,-1,33,41,40,-1,34,39,35,-1,34,40,39,-1,35,38,36,-1,35,39,38,-1,36,38,37,-1,42,47,43,-1,43,46,44,-1,43,47,46,-1,44,46,45,-1};
			return value;
		}















		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_601_coordIndex_1()
		{
			int[] value = {0,2,1,-1,0,3,2,-1,0,4,3,-1,0,5,4,-1,1,2,7,-1,1,7,6,-1,2,3,32,-1,2,32,35,-1,2,35,7,-1,3,4,34,-1,3,33,32,-1,3,34,33,-1,4,5,30,-1,4,30,31,-1,4,31,34,-1,6,7,9,-1,6,9,8,-1,7,35,36,-1,7,36,9,-1,8,9,11,-1,8,11,10,-1,9,36,37,-1,9,37,11,-1,10,11,13,-1,10,13,12,-1,11,37,38,-1,11,38,13,-1,12,13,15,-1,12,15,14,-1,13,38,39,-1,13,39,15,-1,14,15,17,-1,14,17,16,-1,15,39,40,-1,15,40,17,-1,16,17,19,-1,16,19,18,-1,17,40,41,-1,17,41,19,-1,18,19,21,-1,18,21,20,-1,19,41,42,-1,19,42,21,-1,20,21,23,-1,20,23,22,-1,21,42,43,-1,21,43,23,-1,22,23,25,-1,22,25,24,-1,23,43,44,-1,23,44,25,-1,24,25,27,-1,24,27,26,-1,25,44,45,-1,25,45,27,-1,26,27,29,-1,26,29,28,-1,27,45,46,-1,27,46,29,-1,28,29,31,-1,28,31,30,-1,29,46,47,-1,29,47,31,-1,31,47,34,-1,32,33,48,-1,32,48,51,-1,32,51,35,-1,33,34,50,-1,33,49,48,-1,33,50,49,-1,34,47,50,-1,35,51,52,-1,35,52,36,-1,36,52,53,-1,36,53,37,-1,37,53,54,-1,37,54,38,-1,38,54,55,-1,38,55,39,-1,39,55,56,-1,39,56,40,-1,40,56,57,-1,40,57,41,-1,41,57,58,-1,41,58,42,-1,42,58,59,-1,42,59,43,-1,43,59,60,-1,43,60,44,-1,44,60,61,-1,44,61,45,-1,45,61,62,-1,45,62,46,-1,46,62,63,-1,46,63,47,-1,47,63,50,-1,48,49,64,-1,48,64,67,-1,48,67,51,-1,49,50,66,-1,49,65,64,-1,49,66,65,-1,50,63,66,-1,51,67,68,-1,51,68,52,-1,52,68,69,-1,52,69,53,-1,53,69,70,-1,53,70,54,-1,54,70,71,-1,54,71,55,-1,55,71,72,-1,55,72,56,-1,56,72,73,-1,56,73,57,-1,57,73,74,-1,57,74,58,-1,58,74,75,-1,58,75,59,-1,59,75,76,-1,59,76,60,-1,60,76,77,-1,60,77,61,-1,61,77,78,-1,61,78,62,-1,62,78,79,-1,62,79,63,-1,63,79,66,-1,64,65,88,-1,64,88,89,-1,64,89,67,-1,65,66,81,-1,65,80,88,-1,65,81,80,-1,66,79,81,-1,67,82,68,-1,67,89,82,-1,68,82,83,-1,68,83,69,-1,69,83,90,-1,69,90,70,-1,70,90,91,-1,70,91,71,-1,71,91,92,-1,71,92,72,-1,72,92,93,-1,72,93,73,-1,73,93,94,-1,73,94,74,-1,74,84,75,-1,74,94,84,-1,75,84,85,-1,75,85,76,-1,76,85,95,-1,76,95,77,-1,77,86,78,-1,77,95,86,-1,78,86,87,-1,78,87,79,-1,79,87,81,-1,80,81,98,-1,80,96,88,-1,80,97,96,-1,80,98,97,-1,81,87,98,-1,82,89,100,-1,82,100,101,-1,82,101,83,-1,83,101,102,-1,83,102,90,-1,84,94,107,-1,84,107,108,-1,84,108,85,-1,85,108,109,-1,85,109,95,-1,86,95,110,-1,86,110,111,-1,86,111,87,-1,87,111,98,-1,88,96,99,-1,88,99,89,-1,89,99,100,-1,90,102,103,-1,90,103,91,-1,91,103,104,-1,91,104,92,-1,92,104,105,-1,92,105,93,-1,93,105,106,-1,93,106,94,-1,94,106,107,-1,95,109,110,-1,96,97,112,-1,96,112,115,-1,96,115,99,-1,97,98,114,-1,97,113,112,-1,97,114,113,-1,98,111,114,-1,99,115,116,-1,99,116,100,-1,100,116,117,-1,100,117,101,-1,101,117,118,-1,101,118,102,-1,102,118,119,-1,102,119,103,-1,103,119,120,-1,103,120,104,-1,104,120,121,-1,104,121,105,-1,105,121,122,-1,105,122,106,-1,106,122,123,-1,106,123,107,-1,107,123,124,-1,107,124,108,-1,108,124,125,-1,108,125,109,-1,109,125,126,-1,109,126,110,-1,110,126,127,-1,110,127,111,-1,111,127,114,-1,112,113,115,-1,113,114,127,-1,113,116,115,-1,113,117,116,-1,113,118,117,-1,113,119,118,-1,113,120,119,-1,113,121,120,-1,113,122,121,-1,113,123,122,-1,113,124,123,-1,113,125,124,-1,113,126,125,-1,113,127,126,-1};
			return value;
		}


		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_601_normalIndex_1()
		{
			int[] value = {0,2,1,-1,0,3,2,-1,0,4,3,-1,0,5,4,-1,1,2,7,-1,1,7,6,-1,2,3,32,-1,2,32,35,-1,2,35,7,-1,3,4,34,-1,3,33,32,-1,3,34,33,-1,4,5,30,-1,4,30,31,-1,4,31,34,-1,6,7,9,-1,6,9,8,-1,7,35,36,-1,7,36,9,-1,8,9,11,-1,8,11,10,-1,9,36,37,-1,9,37,11,-1,10,11,13,-1,10,13,12,-1,11,37,38,-1,11,38,13,-1,12,13,15,-1,12,15,14,-1,13,38,39,-1,13,39,15,-1,14,15,17,-1,14,17,16,-1,15,39,40,-1,15,40,17,-1,16,17,19,-1,16,19,18,-1,17,40,41,-1,17,41,19,-1,18,19,21,-1,18,21,20,-1,19,41,42,-1,19,42,21,-1,20,21,23,-1,20,23,22,-1,21,42,43,-1,21,43,23,-1,22,23,25,-1,22,25,24,-1,23,43,44,-1,23,44,25,-1,24,25,27,-1,24,27,26,-1,25,44,45,-1,25,45,27,-1,26,27,29,-1,26,29,28,-1,27,45,46,-1,27,46,29,-1,28,29,31,-1,28,31,30,-1,29,46,47,-1,29,47,31,-1,31,47,34,-1,32,33,48,-1,32,48,51,-1,32,51,35,-1,33,34,50,-1,33,49,48,-1,33,50,49,-1,34,47,50,-1,35,51,52,-1,35,52,36,-1,36,52,53,-1,36,53,37,-1,37,53,54,-1,37,54,38,-1,38,54,55,-1,38,55,39,-1,39,55,56,-1,39,56,40,-1,40,56,57,-1,40,57,41,-1,41,57,58,-1,41,58,42,-1,42,58,59,-1,42,59,43,-1,43,59,60,-1,43,60,44,-1,44,60,61,-1,44,61,45,-1,45,61,62,-1,45,62,46,-1,46,62,63,-1,46,63,47,-1,47,63,50,-1,48,49,64,-1,48,64,67,-1,48,67,51,-1,49,50,66,-1,49,65,64,-1,49,66,65,-1,50,63,66,-1,51,67,68,-1,51,68,52,-1,52,68,69,-1,52,69,53,-1,53,69,70,-1,53,70,54,-1,54,70,71,-1,54,71,55,-1,55,71,72,-1,55,72,56,-1,56,72,73,-1,56,73,57,-1,57,73,74,-1,57,74,58,-1,58,74,75,-1,58,75,59,-1,59,75,76,-1,59,76,60,-1,60,76,77,-1,60,77,61,-1,61,77,78,-1,61,78,62,-1,62,78,79,-1,62,79,63,-1,63,79,66,-1,64,65,88,-1,64,88,89,-1,64,89,67,-1,65,66,81,-1,65,80,88,-1,65,81,80,-1,66,79,81,-1,67,82,68,-1,67,89,82,-1,68,82,83,-1,68,83,69,-1,69,83,90,-1,69,90,70,-1,70,90,91,-1,70,91,71,-1,71,91,92,-1,71,92,72,-1,72,92,93,-1,72,93,73,-1,73,93,94,-1,73,94,74,-1,74,84,75,-1,74,94,84,-1,75,84,85,-1,75,85,76,-1,76,85,95,-1,76,95,77,-1,77,86,78,-1,77,95,86,-1,78,86,87,-1,78,87,79,-1,79,87,81,-1,80,81,98,-1,80,96,88,-1,80,97,96,-1,80,98,97,-1,81,87,98,-1,82,89,100,-1,82,100,101,-1,82,101,83,-1,83,101,102,-1,83,102,90,-1,84,94,107,-1,84,107,108,-1,84,108,85,-1,85,108,109,-1,85,109,95,-1,86,95,110,-1,86,110,111,-1,86,111,87,-1,87,111,98,-1,88,96,99,-1,88,99,89,-1,89,99,100,-1,90,102,103,-1,90,103,91,-1,91,103,104,-1,91,104,92,-1,92,104,105,-1,92,105,93,-1,93,105,106,-1,93,106,94,-1,94,106,107,-1,95,109,110,-1,96,97,112,-1,96,112,115,-1,96,115,99,-1,97,98,114,-1,97,113,112,-1,97,114,113,-1,98,111,114,-1,99,115,116,-1,99,116,100,-1,100,116,117,-1,100,117,101,-1,101,117,118,-1,101,118,102,-1,102,118,119,-1,102,119,103,-1,103,119,120,-1,103,120,104,-1,104,120,121,-1,104,121,105,-1,105,121,122,-1,105,122,106,-1,106,122,123,-1,106,123,107,-1,107,123,124,-1,107,124,108,-1,108,124,125,-1,108,125,109,-1,109,125,126,-1,109,126,110,-1,110,126,127,-1,110,127,111,-1,111,127,114,-1,112,113,115,-1,113,114,127,-1,113,116,115,-1,113,117,116,-1,113,118,117,-1,113,119,118,-1,113,120,119,-1,113,121,120,-1,113,122,121,-1,113,123,122,-1,113,124,123,-1,113,125,124,-1,113,126,125,-1,113,127,126,-1};
			return value;
		}


		/** Define subarrays using type double[] */
		private double[] getCoordinate_6_601_point_1()
		{
			double[] value = {-7.92792,1.17825,0.0202713,-7.92792,1.17308,0.0192425,-7.96658,1.17308,0.0192452,-7.96658,1.17825,0.020274,-7.96658,1.18342,0.0192452,-7.92792,1.18342,0.0192425,-7.92792,1.16869,0.0163144,-7.96658,1.16869,0.0163171,-7.92792,1.16576,0.0119301,-7.96658,1.16576,0.0119328,-7.92792,1.16474,0.00675999,-7.96659,1.16474,0.00676269,-7.92792,1.16576,0.00158986,-7.96659,1.16576,0.00159256,-7.92792,1.16869,-0.00279443,-7.96659,1.16869,-0.00279173,-7.92792,1.17308,-0.00572256,-7.96659,1.17308,-0.00571986,-7.92792,1.17825,-0.00675129,-7.96659,1.17825,-0.00674859,-7.92792,1.18342,-0.00572256,-7.96659,1.18342,-0.00571986,-7.92792,1.1878,-0.00279443,-7.96659,1.1878,-0.00279173,-7.92792,1.19073,0.00158986,-7.96659,1.19073,0.00159256,-7.92792,1.19176,0.00675999,-7.96659,1.19176,0.00676269,-7.92792,1.19073,0.0119301,-7.96658,1.19073,0.0119328,-7.92792,1.1878,0.0163144,-7.96658,1.1878,0.0163171,-7.9703,1.17453,0.0157458,-7.9703,1.17825,0.0164864,-7.9703,1.18197,0.0157458,-7.9703,1.17137,0.0136379,-7.9703,1.16926,0.0104839,-7.9703,1.16852,0.00676295,-7.9703,1.16926,0.00304199,-7.9703,1.17137,-1.12014E-4,-7.9703,1.17453,-0.00221995,-7.9703,1.17825,-0.00296049,-7.9703,1.18197,-0.00221995,-7.9703,1.18512,-1.12014E-4,-7.9703,1.18723,0.00304199,-7.9703,1.18797,0.00676295,-7.9703,1.18723,0.0104839,-7.9703,1.18512,0.0136379,-7.98036,1.17453,0.0157465,-7.98036,1.17825,0.0164871,-7.98036,1.18197,0.0157465,-7.98036,1.17137,0.0136386,-7.98036,1.16926,0.0104846,-7.98036,1.16852,0.00676365,-7.98036,1.16926,0.00304269,-7.98036,1.17137,-1.11312E-4,-7.98036,1.17453,-0.00221925,-7.98036,1.17825,-0.00295979,-7.98036,1.18197,-0.00221925,-7.98036,1.18512,-1.11312E-4,-7.98036,1.18723,0.00304269,-7.98036,1.18797,0.00676365,-7.98036,1.18723,0.0104846,-7.98036,1.18512,0.0136386,-7.98354,1.17577,0.012749,-7.98354,1.17825,0.013243,-7.98354,1.18073,0.012749,-7.98354,1.17367,0.0113445,-7.98354,1.17226,0.00924299,-7.98354,1.17177,0.00676387,-7.98354,1.17226,0.00428475,-7.98354,1.17367,0.0021832,-7.98354,1.17577,7.78718E-4,-7.98354,1.17825,2.84718E-4,-7.98354,1.18073,7.78718E-4,-7.98354,1.18283,0.0021832,-7.98354,1.18423,0.00428475,-7.98354,1.18473,0.00676387,-7.98354,1.18423,0.00924299,-7.98354,1.18283,0.0113445,-8.14085,1.17825,0.013254,-8.14085,1.18073,0.01276,-8.14085,1.17226,0.00925397,-8.14085,1.17177,0.00677485,-8.14085,1.18283,0.00219418,-8.14085,1.18423,0.00429573,-8.14085,1.18423,0.00925397,-8.14085,1.18283,0.0113555,-8.14085,1.17577,0.01276,-8.14085,1.17367,0.0113555,-8.14085,1.17226,0.00429573,-8.14085,1.17367,0.00219418,-8.14085,1.17577,7.89701E-4,-8.14085,1.17825,2.95701E-4,-8.14085,1.18073,7.89701E-4,-8.14085,1.18473,0.00677485,-8.1417,1.17511,0.0143521,-8.1417,1.17825,0.0149771,-8.1417,1.18139,0.0143521,-8.1417,1.17245,0.012574};
			return value;
		}
		private double[] getCoordinate_6_601_point_2()
		{
			double[] value = {-8.1417,1.17067,0.00991432,-8.1417,1.17004,0.00677491,-8.1417,1.17067,0.0036355,-8.1417,1.17245,9.75808E-4,-8.1417,1.17511,-8.02288E-4,-8.1417,1.17825,-0.00142731,-8.1417,1.18139,-8.02288E-4,-8.1417,1.18405,9.75808E-4,-8.1417,1.18582,0.0036355,-8.1417,1.18645,0.00677491,-8.1417,1.18582,0.00991432,-8.1417,1.18405,0.012574,-8.16466,1.17511,0.0143537,-8.16466,1.17825,0.0149787,-8.16466,1.18139,0.0143537,-8.16466,1.17245,0.0125756,-8.16466,1.17067,0.00991592,-8.16466,1.17004,0.00677652,-8.16466,1.17067,0.00363711,-8.16467,1.17245,9.77411E-4,-8.16467,1.17511,-8.00685E-4,-8.16467,1.17825,-0.00142571,-8.16467,1.18139,-8.00685E-4,-8.16467,1.18405,9.77411E-4,-8.16466,1.18582,0.00363711,-8.16466,1.18645,0.00677652,-8.16466,1.18582,0.00991592,-8.16466,1.18405,0.0125756};
			return value;
		}


		/** Define subarrays using type double[] */
		private double[] getNormal_6_602_vector_1()
		{
			double[] value = {6.98132E-5,-2.81274E-5,1.0,6.2594E-5,-0.442857,0.896592,-0.388968,-0.34279,0.855102,-0.512663,-2.51597E-5,0.85859,-0.257281,0.369786,0.892785,6.44992E-5,0.382676,0.923883,4.59874E-5,-0.752388,0.658721,-0.389033,-0.643923,0.658799,2.23887E-5,-0.947182,0.320695,-0.389033,-0.847056,0.362146,-4.62025E-6,-0.997808,-0.0661802,-0.389079,-0.921144,0.0105167,-3.09172E-5,-0.896592,-0.442857,-0.389079,-0.855067,-0.34275,-5.25266E-5,-0.658721,-0.752388,-0.389117,-0.658781,-0.643891,-6.61258E-5,-0.320695,-0.947182,-0.38906,-0.362138,-0.847047,-6.96603E-5,0.0661425,-0.99781,-0.38906,-0.010493,-0.921153,-6.25905E-5,0.442956,-0.896543,-0.389096,0.342839,-0.855024,-4.59858E-5,0.752408,-0.658697,-0.389091,0.643968,-0.658721,-2.23898E-5,0.947177,-0.32071,-0.389013,0.847076,-0.36212,4.62025E-6,0.997808,0.0661802,-0.389006,0.921176,-0.010458,3.09193E-5,0.896578,0.442886,-0.38898,0.855069,0.342858,5.25213E-5,0.658806,0.752313,-0.389015,0.658826,0.643907,-0.38894,-0.362221,0.847067,-0.257256,-3.03931E-5,0.966343,-0.512701,0.328599,0.793196,-0.38902,-0.658781,0.643949,-0.389034,-0.855069,0.342796,-0.389078,-0.921145,-0.0104505,-0.389086,-0.847046,-0.362111,-0.38912,-0.643969,-0.658703,-0.389092,-0.34286,-0.855017,-0.389066,0.0104697,-0.92115,-0.389068,0.362275,-0.846985,-0.389094,0.658751,-0.643936,-0.389041,0.855053,-0.342829,-0.389002,0.921177,0.0105004,-0.388969,0.847023,0.362292,-0.388985,0.643985,0.658768,-0.389021,-0.34289,0.855038,-0.512788,-1.69924E-5,0.858515,-0.257345,0.369883,0.892726,-0.389042,-0.643937,0.658781,-0.38901,-0.847068,0.362143,-0.389046,-0.921158,0.0105277,-0.389072,-0.85506,-0.342777,-0.389139,-0.658802,-0.643856,-0.389132,-0.362249,-0.846966,-0.389159,-0.0104869,-0.921111,-0.389161,0.342868,-0.854982,-0.389102,0.643986,-0.658697,-0.389122,0.846968,-0.362256,-0.389074,0.921148,-0.0104171,-0.389066,0.855031,0.342855,-0.389015,0.658731,0.644003,-0.389009,-0.362348,0.846981,-0.257318,1.14151E-5,0.966327,-0.512762,0.328591,0.79316,-0.389038,-0.65874,0.64398,-0.389037,-0.855068,0.342796,-0.389038,-0.921163,-0.0104235,-0.389072,-0.847027,-0.362172,-0.389121,-0.643965,-0.658706,-0.389144,-0.342993,-0.85494,-0.389165,0.0105358,-0.921108,-0.389148,0.362191,-0.846984,-0.389128,0.658825,-0.643839,-0.389089,0.855011,-0.34288,-0.389092,0.921138,0.0105706,-0.38905,0.847036,0.362174,-0.389035,0.643906,0.658814,0.692355,-2.51476E-6,0.721557,0.348609,0.358733,0.8659,0.532035,-0.773865,0.343615,0.532015,-0.846468,0.0212432,0.531967,0.583421,-0.613703,0.531991,0.773904,-0.343595,0.532039,0.790156,0.304284,0.53202,0.613696,0.58338,0.531984,-0.304432,0.790136,0.531994,-0.583489,0.613615,0.53195,-0.790224,-0.304261,0.531887,-0.613645,-0.583555,0.531868,-0.343793,-0.773901,0.531908,-0.0213688,-0.846532,0.531898,0.304345,-0.790227,0.532004,0.84647,-0.021456,0.531978,-0.343753,0.773843,0.348598,-3.49765E-5,0.937272,0.692345,0.276206,0.66661,0.531966,-0.613587,0.583543};
			return value;
		}
		private double[] getNormal_6_602_vector_2()
		{
			double[] value = {0.531991,-0.790162,0.304351,0.532033,-0.846453,-0.0214065,0.531979,-0.773816,-0.343813,0.531903,-0.583451,-0.61373,0.531874,-0.30438,-0.79023,0.531889,0.021303,-0.846546,0.531912,0.343722,-0.773902,0.531913,0.613559,-0.583622,0.532034,0.79019,-0.304204,0.53197,0.846497,0.0212233,0.532077,0.773815,0.343663,0.532021,0.583456,0.613622,-0.321087,-0.303891,0.896969,-0.990318,-5.1478E-6,0.13882,-0.246934,0.370918,0.895234,-0.56126,-0.545174,0.622714,-0.56129,-0.741895,0.366804,-0.56132,-0.82578,0.0548406,-0.561334,-0.783831,-0.265544,-0.561341,-0.62256,-0.545267,-0.561357,-0.366681,-0.741905,-0.561384,-0.0548425,-0.825736,-0.561363,0.265531,-0.783815,-0.561347,0.545174,-0.622636,-0.561353,0.741932,-0.366631,-0.561303,0.825804,-0.0546572,-0.561309,0.783889,0.265423,-0.561265,0.62256,0.545345};
			return value;
		}


		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_607_coordIndex_1()
		{
			int[] value = {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,32,-1,2,32,35,-1,2,35,19,-1,3,18,34,-1,3,33,32,-1,3,34,33,-1,4,5,18,-1,5,6,31,-1,5,31,18,-1,6,7,30,-1,6,30,31,-1,7,8,29,-1,7,29,30,-1,8,9,28,-1,8,28,29,-1,9,10,27,-1,9,27,28,-1,10,11,26,-1,10,26,27,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,18,31,34,-1,19,35,36,-1,19,36,20,-1,20,36,37,-1,20,37,21,-1,21,37,38,-1,21,38,22,-1,22,38,39,-1,22,39,23,-1,23,39,40,-1,23,40,24,-1,24,40,41,-1,24,41,25,-1,25,41,42,-1,25,42,26,-1,26,42,43,-1,26,43,27,-1,27,43,44,-1,27,44,28,-1,28,44,45,-1,28,45,29,-1,29,45,46,-1,29,46,30,-1,30,46,47,-1,30,47,31,-1,31,47,34,-1,32,33,48,-1,32,48,51,-1,32,51,35,-1,33,34,50,-1,33,49,48,-1,33,50,49,-1,34,47,50,-1,35,51,52,-1,35,52,36,-1,36,52,53,-1,36,53,37,-1,37,53,54,-1,37,54,38,-1,38,54,55,-1,38,55,39,-1,39,55,56,-1,39,56,40,-1,40,56,57,-1,40,57,41,-1,41,57,58,-1,41,58,42,-1,42,58,59,-1,42,59,43,-1,43,59,60,-1,43,60,44,-1,44,60,61,-1,44,61,45,-1,45,61,62,-1,45,62,46,-1,46,62,63,-1,46,63,47,-1,47,63,50,-1,48,49,64,-1,48,64,67,-1,48,67,51,-1,49,50,66,-1,49,65,64,-1,49,66,65,-1,50,63,66,-1,51,67,68,-1,51,68,52,-1,52,68,69,-1,52,69,53,-1,53,69,70,-1,53,70,54,-1,54,70,71,-1,54,71,55,-1,55,71,72,-1,55,72,56,-1,56,72,73,-1,56,73,57,-1,57,73,74,-1,57,74,58,-1,58,74,75,-1,58,75,59,-1,59,75,76,-1,59,76,60,-1,60,76,77,-1,60,77,61,-1,61,77,78,-1,61,78,62,-1,62,78,79,-1,62,79,63,-1,63,79,66,-1,64,65,80,-1,64,80,83,-1,64,83,67,-1,65,66,82,-1,65,81,80,-1,65,82,81,-1,66,79,82,-1,67,83,84,-1,67,84,68,-1,68,84,85,-1,68,85,69,-1,69,85,86,-1,69,86,70,-1,70,86,87,-1,70,87,71,-1,71,87,88,-1,71,88,72,-1,72,88,89,-1,72,89,73,-1,73,89,90,-1,73,90,74,-1,74,90,91,-1,74,91,75,-1,75,91,92,-1,75,92,76,-1,76,92,93,-1,76,93,77,-1,77,93,94,-1,77,94,78,-1,78,94,95,-1,78,95,79,-1,79,95,82,-1,80,81,96,-1,80,96,99,-1,80,99,83,-1,81,82,98,-1,81,97,96,-1,81,98,97,-1,82,95,98,-1,83,99,100,-1,83,100,84,-1,84,100,101,-1,84,101,85,-1,85,101,102,-1,85,102,86,-1,86,102,103,-1,86,103,87,-1,87,103,104,-1,87,104,88,-1,88,104,105,-1,88,105,89,-1,89,105,106,-1,89,106,90,-1,90,106,107,-1,90,107,91,-1,91,107,108,-1,91,108,92,-1,92,108,109,-1,92,109,93,-1,93,109,110,-1,93,110,94,-1,94,110,111,-1,94,111,95,-1,95,111,98,-1};
			return value;
		}


		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_607_normalIndex_1()
		{
			int[] value = {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,32,-1,2,32,35,-1,2,35,19,-1,3,18,34,-1,3,33,32,-1,3,34,33,-1,4,5,18,-1,5,6,31,-1,5,31,18,-1,6,7,30,-1,6,30,31,-1,7,8,29,-1,7,29,30,-1,8,9,28,-1,8,28,29,-1,9,10,27,-1,9,27,28,-1,10,11,26,-1,10,26,27,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,18,31,34,-1,19,35,36,-1,19,36,20,-1,20,36,37,-1,20,37,21,-1,21,37,38,-1,21,38,22,-1,22,38,39,-1,22,39,23,-1,23,39,40,-1,23,40,24,-1,24,40,41,-1,24,41,25,-1,25,41,42,-1,25,42,26,-1,26,42,43,-1,26,43,27,-1,27,43,44,-1,27,44,28,-1,28,44,45,-1,28,45,29,-1,29,45,46,-1,29,46,30,-1,30,46,47,-1,30,47,31,-1,31,47,34,-1,32,33,48,-1,32,48,51,-1,32,51,35,-1,33,34,50,-1,33,49,48,-1,33,50,49,-1,34,47,50,-1,35,51,52,-1,35,52,36,-1,36,52,53,-1,36,53,37,-1,37,53,54,-1,37,54,38,-1,38,54,55,-1,38,55,39,-1,39,55,56,-1,39,56,40,-1,40,56,57,-1,40,57,41,-1,41,57,58,-1,41,58,42,-1,42,58,59,-1,42,59,43,-1,43,59,60,-1,43,60,44,-1,44,60,61,-1,44,61,45,-1,45,61,62,-1,45,62,46,-1,46,62,63,-1,46,63,47,-1,47,63,50,-1,48,49,64,-1,48,64,67,-1,48,67,51,-1,49,50,66,-1,49,65,64,-1,49,66,65,-1,50,63,66,-1,51,67,68,-1,51,68,52,-1,52,68,69,-1,52,69,53,-1,53,69,70,-1,53,70,54,-1,54,70,71,-1,54,71,55,-1,55,71,72,-1,55,72,56,-1,56,72,73,-1,56,73,57,-1,57,73,74,-1,57,74,58,-1,58,74,75,-1,58,75,59,-1,59,75,76,-1,59,76,60,-1,60,76,77,-1,60,77,61,-1,61,77,78,-1,61,78,62,-1,62,78,79,-1,62,79,63,-1,63,79,66,-1,64,65,80,-1,64,80,83,-1,64,83,67,-1,65,66,82,-1,65,81,80,-1,65,82,81,-1,66,79,82,-1,67,83,84,-1,67,84,68,-1,68,84,85,-1,68,85,69,-1,69,85,86,-1,69,86,70,-1,70,86,87,-1,70,87,71,-1,71,87,88,-1,71,88,72,-1,72,88,89,-1,72,89,73,-1,73,89,90,-1,73,90,74,-1,74,90,91,-1,74,91,75,-1,75,91,92,-1,75,92,76,-1,76,92,93,-1,76,93,77,-1,77,93,94,-1,77,94,78,-1,78,94,95,-1,78,95,79,-1,79,95,82,-1,80,81,96,-1,80,96,99,-1,80,99,83,-1,81,82,98,-1,81,97,96,-1,81,98,97,-1,82,95,98,-1,83,99,100,-1,83,100,84,-1,84,100,101,-1,84,101,85,-1,85,101,102,-1,85,102,86,-1,86,102,103,-1,86,103,87,-1,87,103,104,-1,87,104,88,-1,88,104,105,-1,88,105,89,-1,89,105,106,-1,89,106,90,-1,90,106,107,-1,90,107,91,-1,91,107,108,-1,91,108,92,-1,92,108,109,-1,92,109,93,-1,93,109,110,-1,93,110,94,-1,94,110,111,-1,94,111,95,-1,95,111,98,-1};
			return value;
		}


		/** Define subarrays using type double[] */
		private double[] getCoordinate_6_607_point_1()
		{
			double[] value = {-7.85201,1.20176,0.0646226,-7.85268,1.20162,0.0646202,-7.85325,1.20301,0.0638484,-7.85201,1.20326,0.0638511,-7.85133,1.20162,0.0646201,-7.85076,1.20124,0.0646161,-7.85038,1.20067,0.0646082,-7.85024,1.2,0.0646003,-7.85038,1.19932,0.0645924,-7.85076,1.19875,0.0645845,-7.85133,1.19837,0.0645809,-7.85201,1.19824,0.0645782,-7.85268,1.19837,0.064581,-7.85325,1.19875,0.0645847,-7.85363,1.19932,0.0645926,-7.85377,1.2,0.0646005,-7.85363,1.20067,0.0646084,-7.85325,1.20124,0.0646163,-7.85076,1.20301,0.0638482,-7.85431,1.20231,0.0638394,-7.85501,1.20125,0.0638276,-7.85526,1.20001,0.0638121,-7.85501,1.19876,0.0637962,-7.85431,1.19771,0.0637831,-7.85325,1.197,0.0637739,-7.85201,1.19675,0.0637711,-7.85076,1.197,0.0637738,-7.84971,1.19771,0.0637828,-7.849,1.19876,0.0637958,-7.84875,1.20001,0.0638116,-7.849,1.20125,0.0638271,-7.84971,1.20231,0.063839,-7.85363,1.20402,0.0566828,-7.85201,1.20435,0.0566867,-7.85038,1.20402,0.0566826,-7.85501,1.2031,0.0566723,-7.85593,1.20172,0.0566553,-7.85626,1.2001,0.0566344,-7.85593,1.19847,0.0566149,-7.85501,1.19709,0.0565978,-7.85363,1.19617,0.0565859,-7.85201,1.19585,0.0565818,-7.85038,1.19617,0.0565856,-7.849,1.19709,0.0565974,-7.84808,1.19847,0.0566144,-7.84776,1.2001,0.0566338,-7.84808,1.20172,0.0566548,-7.849,1.2031,0.0566719,-7.85377,1.20445,0.0482213,-7.85201,1.2048,0.0482264,-7.85025,1.20445,0.0482211,-7.85526,1.20345,0.0482096,-7.85626,1.20196,0.0481914,-7.85661,1.2002,0.0481689,-7.85626,1.19844,0.0481482,-7.85526,1.19695,0.0481296,-7.85377,1.19595,0.0481164,-7.85201,1.1956,0.0481124,-7.85025,1.19595,0.0481162,-7.84875,1.19695,0.0481292,-7.84776,1.19844,0.0481476,-7.84741,1.2002,0.0481683,-7.84776,1.20196,0.0481908,-7.84875,1.20345,0.0482091,-7.85363,1.20423,0.0397519,-7.85201,1.20456,0.0397557,-7.85038,1.20423,0.0397516,-7.85501,1.20331,0.0397416,-7.85594,1.20193,0.0397247,-7.85626,1.20031,0.0397037,-7.85594,1.19868,0.0396839,-7.85501,1.1973,0.0396668,-7.85363,1.19638,0.0396549,-7.85201,1.19605,0.0396508,-7.85038,1.19638,0.0396547,-7.849,1.1973,0.0396664,-7.84808,1.19868,0.0396834,-7.84776,1.20031,0.0397031,-7.84808,1.20193,0.0397241,-7.849,1.20331,0.0397412,-7.85325,1.2034,0.0325638,-7.85201,1.20365,0.0325676,-7.85076,1.2034,0.0325636,-7.85431,1.20269,0.0325562,-7.85502,1.20164,0.0325429,-7.85526,1.20039,0.0325274,-7.85502,1.19915,0.0325116,-7.85431,1.19809,0.0324985,-7.85325,1.19739,0.0324905,-7.85201,1.19714,0.0324865,-7.85076,1.19739,0.0324903,-7.84971,1.19809,0.0324982,-7.849,1.19915,0.0325112,-7.84875,1.20039,0.032527,-7.849,1.20164,0.0325425,-7.84971,1.20269,0.0325559,-7.85268,1.20208,0.0277514,-7.85201,1.20221,0.0277538,-7.85133,1.20208,0.0277513,-7.85325,1.2017,0.0277475};
			return value;
		}
		private double[] getCoordinate_6_607_point_2()
		{
			double[] value = {-7.85364,1.20113,0.0277396,-7.85377,1.20045,0.0277317,-7.85364,1.19978,0.0277238,-7.85325,1.19921,0.0277159,-7.85268,1.19883,0.0277119,-7.85201,1.19869,0.0277094,-7.85133,1.19883,0.0277118,-7.85076,1.19921,0.0277157,-7.85038,1.19978,0.0277236,-7.85025,1.20045,0.0277315,-7.85038,1.20113,0.0277394,-7.85076,1.2017,0.0277473};
			return value;
		}


		/** Define subarrays using type double[] */
		private double[] getNormal_6_608_vector_1()
		{
			double[] value = {8.72003E-5,0.0937951,0.995592,-0.15938,0.311407,0.936816,-0.330078,0.739935,0.586127,1.26764E-4,0.897047,0.441935,0.122869,0.285037,0.950609,0.190546,0.205932,0.959836,0.2588,0.115836,0.95896,0.288162,0.00765403,0.957551,0.27331,-0.104695,0.956211,0.217365,-0.201909,0.954979,0.127922,-0.270646,0.954142,0.0192956,-0.300084,0.953718,-0.0926769,-0.285286,0.953951,-0.190256,-0.22916,0.954614,-0.25857,-0.139767,0.955828,-0.288162,-0.0305199,0.957095,-0.273173,0.080142,0.958621,-0.217213,0.179122,0.959549,0.270998,0.645818,0.713778,-0.590706,0.557076,0.583723,-0.76163,0.287616,0.580687,-0.816408,-0.0262534,0.576879,-0.747093,-0.337136,0.57288,-0.563563,-0.598234,0.569661,-0.294986,-0.768824,0.567357,0.0193404,-0.823675,0.566732,0.329887,-0.754441,0.567444,0.591033,-0.570831,0.56994,0.761754,-0.301998,0.573174,0.816619,0.0118064,0.577057,0.746979,0.323051,0.581086,0.564029,0.583715,0.584078,-0.381197,0.918964,0.10097,7.08241E-5,0.996308,0.0858556,0.380356,0.917411,0.116992,-0.704458,0.7029,0.0983417,-0.920324,0.379607,0.0943548,-0.995975,-0.0014165,0.0896189,-0.920128,-0.382297,0.0849322,-0.703991,-0.705579,0.0809657,-0.380767,-0.92135,0.078292,4.31267E-4,-0.997004,0.0773541,0.381324,-0.921125,0.0782303,0.704404,-0.705179,0.0808582,0.920342,-0.381802,0.0848401,0.995983,-7.97097E-4,0.0895345,0.92015,0.380067,0.0941905,0.704166,0.703209,0.0982248,-0.382608,0.92384,0.0114108,4.06756E-5,0.999999,-0.00150262,0.382721,0.923522,0.0251212,-0.707112,0.707048,0.00876399,-0.923947,0.382491,0.00478487,-1.0,-1.70388E-5,6.93223E-5,-0.92391,-0.382581,-0.00465007,-0.707118,-0.707042,-0.00867711,-0.382664,-0.923818,-0.0113661,6.96454E-5,-0.999924,-0.0123076,0.382886,-0.923725,-0.011404,0.707071,-0.707088,-0.00879164,0.923865,-0.382689,-0.00480208,1.0,-2.99085E-5,-6.59492E-5,0.923839,0.382751,0.00468844,0.707255,0.706906,0.00862392,-0.380926,0.92129,-0.0782297,9.14778E-5,0.995635,-0.0933331,0.381671,0.922204,-0.0621841,-0.703885,0.705693,-0.0808948,-0.920087,0.382428,-0.0847864,-0.995987,0.0014179,-0.0894844,-0.920239,-0.379845,-0.0942236,-0.704612,-0.702756,-0.0982645,-0.381451,-0.918866,-0.1009,-2.55016E-4,-0.994797,-0.10188,0.381144,-0.918986,-0.100961,0.704093,-0.703268,-0.0983216,0.920093,-0.38017,-0.0943381,0.99597,7.35781E-4,-0.0896829,0.92023,0.382047,-0.0849485,0.704426,0.705149,-0.0809224,-0.372669,0.904579,-0.207013,1.28977E-4,0.972522,-0.232812,0.375756,0.909017,-0.180265,-0.689309,0.693494,-0.209568,-0.901086,0.377393,-0.213587,-0.975906,0.00398621,-0.218154,-0.902076,-0.369652,-0.222747,-0.690754,-0.686674,-0.226579,-0.374782,-0.898298,-0.229344,-0.00107349,-0.973117,-0.230307,0.372467,-0.899257,-0.229357,0.689425,-0.687951,-0.226751,0.901102,-0.371922,-0.22291,0.975896,0.00186782,-0.218229,0.902051,0.375022,-0.213686,0.690909,0.691851,-0.20973,-0.306384,0.908099,-0.285454,1.87699E-4,0.958416,-0.285376,0.365719,0.885588,-0.286326,-0.629515,0.721797,-0.287609};
			return value;
		}
		private double[] getNormal_6_608_vector_2()
		{
			double[] value = {-0.856189,0.426711,-0.291302,-0.952897,0.0667911,-0.295849,-0.904737,-0.301963,-0.300449,-0.718388,-0.625582,-0.304247,-0.42294,-0.852554,-0.307039,-0.0631159,-0.949152,-0.308426,0.306161,-0.900836,-0.30783,0.629235,-0.714661,-0.305489,0.856123,-0.419401,-0.30192,0.95288,-0.0593871,-0.297478,0.904454,0.310141,-0.292875,0.718453,0.632737,-0.28891};
			return value;
		}


		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_613_coordIndex_1()
		{
			int[] value = {0,1,33,-1,0,2,1,-1,0,3,2,-1,0,4,3,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,17,-1,0,19,18,-1,0,20,19,-1,0,21,20,-1,0,22,21,-1,0,23,22,-1,0,24,23,-1,0,26,25,-1,0,27,26,-1,0,28,27,-1,0,29,28,-1,0,30,29,-1,0,31,30,-1,0,32,31,-1,0,33,32,-1,4,5,6,-1,4,6,7,-1,4,7,8,-1,4,8,86,-1,4,83,39,-1,4,84,83,-1,4,85,84,-1,4,86,85,-1,8,9,58,-1,8,58,67,-1,8,67,68,-1,8,68,69,-1,8,69,70,-1,8,70,73,-1,8,73,89,-1,8,87,86,-1,8,88,87,-1,8,89,88,-1,9,10,58,-1,10,11,58,-1,11,12,58,-1,12,13,66,-1,12,66,58,-1,13,14,96,-1,13,96,66,-1,14,15,40,-1,14,40,43,-1,14,43,57,-1,14,57,96,-1,15,16,40,-1,16,17,40,-1,17,18,40,-1,18,19,22,-1,18,22,76,-1,18,50,51,-1,18,51,54,-1,18,54,55,-1,18,55,56,-1,18,56,40,-1,18,76,82,-1,18,80,50,-1,18,81,80,-1,18,82,81,-1,19,20,22,-1,20,21,22,-1,22,34,79,-1,22,77,76,-1,22,78,77,-1,22,79,78,-1,25,26,39,-1,25,39,36,-1,26,27,39,-1,27,28,39,-1,28,29,39,-1,29,30,39,-1,30,31,39,-1,31,32,39,-1,32,33,39,-1,33,37,39,-1,34,35,39,-1,34,39,79,-1,35,36,39,-1,37,38,39,-1,39,57,93,-1,39,66,96,-1,39,76,77,-1,39,77,78,-1,39,78,79,-1,39,83,84,-1,39,84,85,-1,39,85,86,-1,39,86,90,-1,39,90,91,-1,39,91,92,-1,39,92,66,-1,39,93,94,-1,39,94,95,-1,39,95,76,-1,39,96,57,-1,40,41,42,-1,40,42,43,-1,40,51,52,-1,40,52,53,-1,40,54,51,-1,40,55,54,-1,40,56,55,-1,43,44,57,-1,44,45,46,-1,44,46,47,-1,44,47,48,-1,44,48,49,-1,44,49,50,-1,44,50,80,-1,44,76,95,-1,44,80,81,-1,44,81,82,-1,44,82,76,-1,44,93,57,-1,44,94,93,-1,44,95,94,-1,58,59,60,-1,58,60,61,-1,58,61,72,-1,58,66,65,-1,58,68,67,-1,58,69,68,-1,58,70,69,-1,58,71,70,-1,58,72,71,-1,62,63,64,-1,62,64,65,-1,62,65,66,-1,62,66,92,-1,62,73,74,-1,62,74,75,-1,62,86,87,-1,62,87,88,-1,62,88,89,-1,62,89,73,-1,62,90,86,-1,62,91,90,-1,62,92,91,-1,97,99,98,-1,97,100,99,-1,97,101,100,-1,97,102,101,-1,97,103,102,-1,97,104,103,-1,97,105,104,-1};
			return value;
		}


		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_613_normalIndex_1()
		{
			int[] value = {0,1,33,-1,0,2,1,-1,0,3,2,-1,0,4,3,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,17,-1,0,19,18,-1,0,20,19,-1,0,21,20,-1,0,22,21,-1,0,23,22,-1,0,24,23,-1,0,26,25,-1,0,27,26,-1,0,28,27,-1,0,29,28,-1,0,30,29,-1,0,31,30,-1,0,32,31,-1,0,33,32,-1,4,5,6,-1,4,6,7,-1,4,7,8,-1,4,8,86,-1,4,83,39,-1,4,84,83,-1,4,85,84,-1,4,86,85,-1,8,9,58,-1,8,58,67,-1,8,67,68,-1,8,68,69,-1,8,69,70,-1,8,70,73,-1,8,73,89,-1,8,87,86,-1,8,88,87,-1,8,89,88,-1,9,10,58,-1,10,11,58,-1,11,12,58,-1,12,13,66,-1,12,66,58,-1,13,14,96,-1,13,96,66,-1,14,15,40,-1,14,40,43,-1,14,43,57,-1,14,57,96,-1,15,16,40,-1,16,17,40,-1,17,18,40,-1,18,19,22,-1,18,22,76,-1,18,50,51,-1,18,51,54,-1,18,54,55,-1,18,55,56,-1,18,56,40,-1,18,76,82,-1,18,80,50,-1,18,81,80,-1,18,82,81,-1,19,20,22,-1,20,21,22,-1,22,34,79,-1,22,77,76,-1,22,78,77,-1,22,79,78,-1,25,26,39,-1,25,39,36,-1,26,27,39,-1,27,28,39,-1,28,29,39,-1,29,30,39,-1,30,31,39,-1,31,32,39,-1,32,33,39,-1,33,37,39,-1,34,35,39,-1,34,39,79,-1,35,36,39,-1,37,38,39,-1,39,57,93,-1,39,66,96,-1,39,76,77,-1,39,77,78,-1,39,78,79,-1,39,83,84,-1,39,84,85,-1,39,85,86,-1,39,86,90,-1,39,90,91,-1,39,91,92,-1,39,92,66,-1,39,93,94,-1,39,94,95,-1,39,95,76,-1,39,96,57,-1,40,41,42,-1,40,42,43,-1,40,51,52,-1,40,52,53,-1,40,54,51,-1,40,55,54,-1,40,56,55,-1,43,44,57,-1,44,45,46,-1,44,46,47,-1,44,47,48,-1,44,48,49,-1,44,49,50,-1,44,50,80,-1,44,76,95,-1,44,80,81,-1,44,81,82,-1,44,82,76,-1,44,93,57,-1,44,94,93,-1,44,95,94,-1,58,59,60,-1,58,60,61,-1,58,61,72,-1,58,66,65,-1,58,68,67,-1,58,69,68,-1,58,70,69,-1,58,71,70,-1,58,72,71,-1,62,63,64,-1,62,64,65,-1,62,65,66,-1,62,66,92,-1,62,73,74,-1,62,74,75,-1,62,86,87,-1,62,87,88,-1,62,88,89,-1,62,89,73,-1,62,90,86,-1,62,91,90,-1,62,92,91,-1,97,99,98,-1,97,100,99,-1,97,101,100,-1,97,102,101,-1,97,103,102,-1,97,104,103,-1,97,105,104,-1};
			return value;
		}


		/** Define subarrays using type double[] */
		private double[] getCoordinate_6_613_point_1()
		{
			double[] value = {-7.95366,1.07637,-0.0491894,-7.95365,1.07637,0.0634468,-7.95365,1.07787,0.0715557,-7.95365,1.0843,0.0773719,-7.95365,1.09371,0.0775251,-7.95365,1.11105,0.0775251,-7.95365,1.12838,0.0775251,-7.95365,1.14572,0.0775251,-7.95365,1.16306,0.0775251,-7.95365,1.16306,0.0634468,-7.95365,1.16306,0.0493668,-7.95365,1.16306,0.035287,-7.95365,1.16306,0.0212085,-7.95365,1.16306,0.00712871,-7.95365,1.16306,-0.00695105,-7.95365,1.16306,-0.0210296,-7.95365,1.16306,-0.0351097,-7.95366,1.16306,-0.0491894,-7.95366,1.16306,-0.063268,-7.95366,1.14572,-0.063268,-7.95366,1.12838,-0.063268,-7.95366,1.11105,-0.063268,-7.95366,1.09371,-0.063268,-7.95366,1.0843,-0.0631147,-7.95366,1.07787,-0.0572986,-7.95746,1.07637,-0.0491892,-7.95746,1.07637,-0.0351094,-7.95746,1.07637,-0.0210293,-7.95746,1.07637,-0.00695078,-7.95746,1.07637,0.00712898,-7.95746,1.07637,0.0212087,-7.95746,1.07637,0.0352873,-7.95745,1.07637,0.049367,-7.95745,1.07637,0.0634471,-7.95746,1.09371,-0.0632677,-7.95746,1.0843,-0.0631145,-7.95746,1.07787,-0.0572984,-7.95745,1.07787,0.071556,-7.95745,1.0843,0.0773721,-7.95745,1.09371,0.0775253,-7.95366,1.24974,-0.0491894,-7.95365,1.24974,-0.0351097,-7.95365,1.24974,-0.0210296,-7.95365,1.24533,-0.00869631,-7.95746,1.24533,-0.00869605,-7.95746,1.24974,-0.0210293,-7.95746,1.24974,-0.0351094,-7.95746,1.24974,-0.0491892,-7.95746,1.24789,-0.0558346,-7.95746,1.24481,-0.0610716,-7.95746,1.23241,-0.0632677,-7.95366,1.23241,-0.063268,-7.95366,1.24481,-0.0610719,-7.95366,1.24789,-0.0558349,-7.95366,1.21507,-0.063268,-7.95366,1.19773,-0.063268,-7.95366,1.18039,-0.063268,-7.95746,1.16306,-0.00695078,-7.95365,1.24533,0.0229537,-7.95365,1.24974,0.035287,-7.95365,1.24974,0.0493668,-7.95365,1.24974,0.0634468,-7.95745,1.24974,0.0634471,-7.95745,1.24974,0.049367,-7.95746,1.24974,0.0352873,-7.95746,1.24533,0.022954,-7.95746,1.16306,0.0212087,-7.95365,1.18039,0.0775251,-7.95365,1.19773,0.0775251,-7.95365,1.21507,0.0775251,-7.95365,1.23241,0.0775251,-7.95365,1.24481,0.0753293,-7.95365,1.24789,0.0700923,-7.95745,1.23241,0.0775253,-7.95745,1.24481,0.0753296,-7.95745,1.24789,0.0700925,-7.95746,1.16306,-0.0632677,-7.95746,1.14572,-0.0632677,-7.95746,1.12838,-0.0632677,-7.95746,1.11105,-0.0632677,-7.95746,1.21507,-0.0632677,-7.95746,1.19773,-0.0632677,-7.95746,1.18039,-0.0632677,-7.95745,1.11105,0.0775253,-7.95745,1.12838,0.0775253,-7.95745,1.14572,0.0775253,-7.95745,1.16306,0.0775253,-7.95745,1.18039,0.0775253,-7.95745,1.19773,0.0775253,-7.95745,1.21507,0.0775253,-7.95745,1.16306,0.0634471,-7.95745,1.16306,0.049367,-7.95746,1.16306,0.0352873,-7.95746,1.16306,-0.0210293,-7.95746,1.16306,-0.0351094,-7.95746,1.16306,-0.0491892,-7.95746,1.16306,0.00712898,-7.95366,1.07637,-0.0491894,-7.95365,1.07637,-0.0351097,-7.95365,1.07637,-0.0210296};
			return value;
		}
		private double[] getCoordinate_6_613_point_2()
		{
			double[] value = {-7.95365,1.07637,-0.00695105,-7.95365,1.07637,0.00712871,-7.95365,1.07637,0.0212085,-7.95365,1.07637,0.035287,-7.95365,1.07637,0.0493668,-7.95365,1.07637,0.0634468};
			return value;
		}


		/** Define subarrays using type double[] */
		private double[] getNormal_6_614_vector_1()
		{
			double[] value = {0.931243,-0.364399,-6.5013E-5,0.707107,-0.707107,-4.93654E-5,1.0,5.13467E-13,-6.98132E-5,1.0,-1.44609E-13,-6.98132E-5,0.371455,0.0,0.928451,1.0,0.0,-6.98132E-5,1.0,0.0,-6.98132E-5,1.0,0.0,-6.98132E-5,0.554758,-3.32322E-15,0.832012,1.0,-1.79715E-14,-6.98132E-5,1.0,3.35007E-14,-6.98132E-5,1.0,4.54812E-14,-6.98132E-5,0.902774,0.307314,-0.300927,0.5547,0.83205,-3.87254E-5,0.871129,0.440176,0.217669,1.0,0.0,-6.98132E-5,1.0,0.0,-6.98132E-5,1.0,0.0,-6.98132E-5,0.554642,0.0,-0.832089,1.0,0.0,-6.98132E-5,1.0,0.0,-6.98132E-5,1.0,0.0,-6.98132E-5,0.371326,0.0,-0.928503,1.0,0.0,-6.98132E-5,1.0,0.0,-6.98132E-5,-0.894427,-0.447214,6.24428E-5,-0.707107,-0.707107,4.93654E-5,-0.707107,-0.707107,4.93654E-5,-0.707107,-0.707107,4.93654E-5,-0.707107,-0.707107,4.93654E-5,-0.707107,-0.707107,4.93654E-5,-0.707107,-0.707107,4.93654E-5,-0.707107,-0.707107,4.93654E-5,-0.707107,-0.707107,4.93654E-5,-0.894458,-7.15943E-14,-0.447151,-1.0,1.73171E-13,6.98132E-5,-1.0,-2.92849E-13,6.98132E-5,-1.0,-1.2992E-14,6.98132E-5,-1.0,-2.58251E-13,6.98132E-5,-0.999312,-3.17203E-14,0.0370814,1.0,-1.98488E-13,-6.98132E-5,0.0,0.0,0.0,1.0,0.0,-6.98132E-5,0.707156,0.0149971,0.706898,-0.997049,0.00162666,0.0767489,-1.0,4.46433E-13,6.98132E-5,-1.0,-2.23226E-13,6.98132E-5,-1.0,8.45998E-14,6.98132E-5,-1.0,5.31042E-13,6.98132E-5,-1.0,-8.56143E-14,6.98132E-5,-0.707156,-6.05384E-14,-0.707057,0.894396,9.09224E-14,-0.447276,1.0,-1.19093E-12,-6.98132E-5,1.0,-2.58517E-12,-6.98132E-5,1.0,0.0,-6.98132E-5,1.0,0.0,-6.98132E-5,1.0,0.0,-6.98132E-5,-0.799328,0.277758,0.532846,0.988361,0.00322499,-0.152092,1.0,0.0,-6.98132E-5,1.0,4.46433E-13,-6.98132E-5,1.0,-8.46095E-14,-6.98132E-5,-1.0,-1.21449E-14,6.98132E-5,0.0,0.0,0.0,-1.0,0.0,6.98132E-5,-0.894458,0.00948499,-0.447051,-0.813654,0.415441,-0.406664,1.0,0.0,-6.98132E-5,1.0,0.0,-6.98132E-5,1.0,0.0,-6.98132E-5,0.894458,7.65757E-14,0.447151,1.0,4.35763E-13,-6.98132E-5,1.0,-1.80893E-13,-6.98132E-5,-0.707057,-7.18797E-14,0.707156,-1.0,-1.01653E-13,6.98132E-5,-1.0,0.0,6.98132E-5,-0.800042,0.0,-0.599944,-0.707156,0.0,-0.707057,-0.707156,0.0,-0.707057,-0.707156,0.0,-0.707057,-0.707156,0.0,-0.707057,-0.707156,0.0,-0.707057,-0.707156,0.0,-0.707057,6.98132E-5,0.0,1.0,6.98132E-5,0.0,1.0,6.98132E-5,0.0,1.0,-0.707057,0.0,0.707156,-0.707057,0.0,0.707156,-0.707057,0.0,0.707156,-0.707057,0.0,0.707156,-1.0,7.10626E-15,6.98132E-5,-1.0,7.10626E-15,6.98132E-5,-1.0,2.27429E-14,6.98132E-5,-1.0,-6.13487E-14,6.98132E-5,-1.0,5.9905E-15,6.98132E-5,-1.0,1.19807E-14,6.98132E-5,-0.5547,0.83205,3.87254E-5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0};
			return value;
		}
		private double[] getNormal_6_614_vector_2()
		{
			double[] value = {0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0};
			return value;
		}


		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_619_coordIndex_1()
		{
			int[] value = {0,1,9,-1,0,2,1,-1,0,3,2,-1,0,4,3,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,14,-1,0,9,8,-1,0,10,7,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,1,2,22,-1,1,15,9,-1,1,16,15,-1,1,17,16,-1,1,18,17,-1,1,19,18,-1,1,20,19,-1,1,21,25,-1,1,22,21,-1,1,23,20,-1,1,24,23,-1,1,25,24,-1,2,3,30,-1,2,30,31,-1,2,31,22,-1,3,4,28,-1,3,28,29,-1,3,29,30,-1,4,5,27,-1,4,27,28,-1,5,6,27,-1,6,7,35,-1,6,26,27,-1,6,35,42,-1,6,38,26,-1,6,39,38,-1,6,40,39,-1,6,41,40,-1,6,42,41,-1,7,10,37,-1,7,36,35,-1,7,37,36,-1,8,9,29,-1,8,26,14,-1,8,27,26,-1,8,28,27,-1,8,29,28,-1,9,15,16,-1,9,16,17,-1,9,17,34,-1,9,30,29,-1,9,31,30,-1,9,32,31,-1,9,33,32,-1,9,34,33,-1,10,11,12,-1,10,12,13,-1,10,13,38,-1,10,38,39,-1,10,39,40,-1,10,40,41,-1,10,41,42,-1,10,42,37,-1,13,14,46,-1,13,45,38,-1,13,46,45,-1,14,26,43,-1,14,43,46,-1,17,18,65,-1,17,65,34,-1,18,19,51,-1,18,51,65,-1,19,20,51,-1,20,23,74,-1,20,47,51,-1,20,74,47,-1,21,22,31,-1,21,31,32,-1,21,32,53,-1,21,47,58,-1,21,53,47,-1,21,56,25,-1,21,57,56,-1,21,58,57,-1,23,24,25,-1,23,25,74,-1,25,56,74,-1,26,38,45,-1,26,44,43,-1,26,45,44,-1,32,33,55,-1,32,54,53,-1,32,55,54,-1,33,34,59,-1,33,59,60,-1,33,60,61,-1,33,61,70,-1,33,66,51,-1,33,67,66,-1,33,68,67,-1,33,69,68,-1,33,70,69,-1,34,65,59,-1,35,36,42,-1,36,37,42,-1,47,48,51,-1,47,52,48,-1,47,53,52,-1,47,74,83,-1,47,83,58,-1,48,49,51,-1,48,52,49,-1,49,50,51,-1,49,52,50,-1,50,52,51,-1,51,62,63,-1,51,63,65,-1,51,66,73,-1,51,71,62,-1,51,72,71,-1,51,73,72,-1,56,57,87,-1,56,83,74,-1,56,85,84,-1,56,86,85,-1,56,87,86,-1,57,58,87,-1,58,88,87,-1,59,61,60,-1,59,62,61,-1,59,63,62,-1,59,64,63,-1,59,65,64,-1,61,62,70,-1,62,71,70,-1,63,64,65,-1,66,67,78,-1,66,78,81,-1,66,81,73,-1,67,68,80,-1,67,79,78,-1,67,80,79,-1,68,69,80,-1,69,70,77,-1,69,77,80,-1,70,71,76,-1,70,75,77,-1,70,76,75,-1,71,72,82,-1,71,82,76,-1,72,73,82,-1,73,81,82,-1,75,76,82,-1,75,82,77,-1,77,82,80,-1,78,79,81,-1,79,80,81,-1,80,82,81,-1};
			return value;
		}


		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_619_normalIndex_1()
		{
			int[] value = {0,1,9,-1,0,2,1,-1,0,3,2,-1,0,4,3,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,14,-1,0,9,8,-1,0,10,7,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,1,2,22,-1,1,15,9,-1,1,16,15,-1,1,17,16,-1,1,18,17,-1,1,19,18,-1,1,20,19,-1,1,21,25,-1,1,22,21,-1,1,23,20,-1,1,24,23,-1,1,25,24,-1,2,3,30,-1,2,30,31,-1,2,31,22,-1,3,4,28,-1,3,28,29,-1,3,29,30,-1,4,5,27,-1,4,27,28,-1,5,6,27,-1,6,7,35,-1,6,26,27,-1,6,35,42,-1,6,38,26,-1,6,39,38,-1,6,40,39,-1,6,41,40,-1,6,42,41,-1,7,10,37,-1,7,36,35,-1,7,37,36,-1,8,9,29,-1,8,26,14,-1,8,27,26,-1,8,28,27,-1,8,29,28,-1,9,15,16,-1,9,16,17,-1,9,17,34,-1,9,30,29,-1,9,31,30,-1,9,32,31,-1,9,33,32,-1,9,34,33,-1,10,11,12,-1,10,12,13,-1,10,13,38,-1,10,38,39,-1,10,39,40,-1,10,40,41,-1,10,41,42,-1,10,42,37,-1,13,14,46,-1,13,45,38,-1,13,46,45,-1,14,26,43,-1,14,43,46,-1,17,18,65,-1,17,65,34,-1,18,19,51,-1,18,51,65,-1,19,20,51,-1,20,23,74,-1,20,47,51,-1,20,74,47,-1,21,22,31,-1,21,31,32,-1,21,32,53,-1,21,47,58,-1,21,53,47,-1,21,56,25,-1,21,57,56,-1,21,58,57,-1,23,24,25,-1,23,25,74,-1,25,56,74,-1,26,38,45,-1,26,44,43,-1,26,45,44,-1,32,33,55,-1,32,54,53,-1,32,55,54,-1,33,34,59,-1,33,59,60,-1,33,60,61,-1,33,61,70,-1,33,66,51,-1,33,67,66,-1,33,68,67,-1,33,69,68,-1,33,70,69,-1,34,65,59,-1,35,36,42,-1,36,37,42,-1,47,48,51,-1,47,52,48,-1,47,53,52,-1,47,74,83,-1,47,83,58,-1,48,49,51,-1,48,52,49,-1,49,50,51,-1,49,52,50,-1,50,52,51,-1,51,62,63,-1,51,63,65,-1,51,66,73,-1,51,71,62,-1,51,72,71,-1,51,73,72,-1,56,57,87,-1,56,83,74,-1,56,85,84,-1,56,86,85,-1,56,87,86,-1,57,58,87,-1,58,88,87,-1,59,61,60,-1,59,62,61,-1,59,63,62,-1,59,64,63,-1,59,65,64,-1,61,62,70,-1,62,71,70,-1,63,64,65,-1,66,67,78,-1,66,78,81,-1,66,81,73,-1,67,68,80,-1,67,79,78,-1,67,80,79,-1,68,69,80,-1,69,70,77,-1,69,77,80,-1,70,71,76,-1,70,75,77,-1,70,76,75,-1,71,72,82,-1,71,82,76,-1,72,73,82,-1,73,81,82,-1,75,76,82,-1,75,82,77,-1,77,82,80,-1,78,79,81,-1,79,80,81,-1,80,82,81,-1};
			return value;
		}




		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_625_coordIndex_1()
		{
			int[] value = {0,1,37,-1,0,2,1,-1,0,3,2,-1,0,4,3,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,38,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,17,-1,0,19,18,-1,0,20,19,-1,0,21,20,-1,0,22,21,-1,0,23,22,-1,0,24,23,-1,0,25,24,-1,0,26,25,-1,0,27,26,-1,0,28,27,-1,0,29,28,-1,0,30,29,-1,0,31,30,-1,0,32,31,-1,0,33,32,-1,0,34,33,-1,0,35,34,-1,0,36,35,-1,0,37,36,-1,0,38,10,-1,1,2,39,-1,1,39,37,-1,2,3,10,-1,2,10,39,-1,3,4,10,-1,4,5,10,-1,5,6,10,-1,6,7,10,-1,7,8,10,-1,8,9,10,-1,10,38,40,-1,10,40,41,-1,10,41,42,-1,10,42,43,-1,10,43,44,-1,10,44,45,-1,10,45,46,-1,10,46,47,-1,10,47,48,-1,10,48,64,-1,10,49,39,-1,10,50,49,-1,10,51,50,-1,10,52,51,-1,10,53,52,-1,10,54,53,-1,10,55,54,-1,10,56,55,-1,10,57,56,-1,10,58,57,-1,10,59,58,-1,10,60,59,-1,10,61,60,-1,10,62,61,-1,10,63,62,-1,10,64,63,-1,11,12,13,-1,11,13,14,-1,11,14,15,-1,11,15,16,-1,11,16,17,-1,11,17,18,-1,11,18,19,-1,11,19,47,-1,11,40,38,-1,11,41,40,-1,11,42,41,-1,11,43,42,-1,11,44,43,-1,11,45,44,-1,11,46,45,-1,11,47,46,-1,19,20,48,-1,19,48,47,-1,20,21,22,-1,20,22,23,-1,20,23,24,-1,20,24,25,-1,20,25,26,-1,20,26,27,-1,20,27,28,-1,20,28,57,-1,20,57,58,-1,20,58,59,-1,20,59,60,-1,20,60,61,-1,20,61,62,-1,20,62,63,-1,20,63,64,-1,20,64,48,-1,28,29,56,-1,28,56,57,-1,29,30,39,-1,29,39,56,-1,30,31,39,-1,31,32,39,-1,32,33,39,-1,33,34,39,-1,34,35,39,-1,35,36,39,-1,36,37,39,-1,39,49,50,-1,39,50,51,-1,39,51,52,-1,39,52,53,-1,39,53,54,-1,39,54,55,-1,39,55,56,-1,65,67,66,-1,65,68,67,-1,65,69,68,-1,65,70,69,-1,65,71,70,-1,65,72,71,-1,65,73,72,-1};
			return value;
		}


		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_625_normalIndex_1()
		{
			int[] value = {0,1,37,-1,0,2,1,-1,0,3,2,-1,0,4,3,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,38,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,17,-1,0,19,18,-1,0,20,19,-1,0,21,20,-1,0,22,21,-1,0,23,22,-1,0,24,23,-1,0,25,24,-1,0,26,25,-1,0,27,26,-1,0,28,27,-1,0,29,28,-1,0,30,29,-1,0,31,30,-1,0,32,31,-1,0,33,32,-1,0,34,33,-1,0,35,34,-1,0,36,35,-1,0,37,36,-1,0,38,10,-1,1,2,39,-1,1,39,37,-1,2,3,10,-1,2,10,39,-1,3,4,10,-1,4,5,10,-1,5,6,10,-1,6,7,10,-1,7,8,10,-1,8,9,10,-1,10,38,40,-1,10,40,41,-1,10,41,42,-1,10,42,43,-1,10,43,44,-1,10,44,45,-1,10,45,46,-1,10,46,47,-1,10,47,48,-1,10,48,64,-1,10,49,39,-1,10,50,49,-1,10,51,50,-1,10,52,51,-1,10,53,52,-1,10,54,53,-1,10,55,54,-1,10,56,55,-1,10,57,56,-1,10,58,57,-1,10,59,58,-1,10,60,59,-1,10,61,60,-1,10,62,61,-1,10,63,62,-1,10,64,63,-1,11,12,13,-1,11,13,14,-1,11,14,15,-1,11,15,16,-1,11,16,17,-1,11,17,18,-1,11,18,19,-1,11,19,47,-1,11,40,38,-1,11,41,40,-1,11,42,41,-1,11,43,42,-1,11,44,43,-1,11,45,44,-1,11,46,45,-1,11,47,46,-1,19,20,48,-1,19,48,47,-1,20,21,22,-1,20,22,23,-1,20,23,24,-1,20,24,25,-1,20,25,26,-1,20,26,27,-1,20,27,28,-1,20,28,57,-1,20,57,58,-1,20,58,59,-1,20,59,60,-1,20,60,61,-1,20,61,62,-1,20,62,63,-1,20,63,64,-1,20,64,48,-1,28,29,56,-1,28,56,57,-1,29,30,39,-1,29,39,56,-1,30,31,39,-1,31,32,39,-1,32,33,39,-1,33,34,39,-1,34,35,39,-1,35,36,39,-1,36,37,39,-1,39,49,50,-1,39,50,51,-1,39,51,52,-1,39,52,53,-1,39,53,54,-1,39,54,55,-1,39,55,56,-1,65,67,66,-1,65,68,67,-1,65,69,68,-1,65,70,69,-1,65,71,70,-1,65,72,71,-1,65,73,72,-1};
			return value;
		}




		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_631_coordIndex_1()
		{
			int[] value = {0,1,37,-1,0,2,1,-1,0,3,2,-1,0,4,3,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,38,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,17,-1,0,19,18,-1,0,20,19,-1,0,21,20,-1,0,22,21,-1,0,23,22,-1,0,24,23,-1,0,25,24,-1,0,26,25,-1,0,27,26,-1,0,28,27,-1,0,29,28,-1,0,30,29,-1,0,31,30,-1,0,32,31,-1,0,33,32,-1,0,34,33,-1,0,35,34,-1,0,36,35,-1,0,37,36,-1,0,38,10,-1,1,2,39,-1,1,39,37,-1,2,3,10,-1,2,10,39,-1,3,4,10,-1,4,5,10,-1,5,6,10,-1,6,7,10,-1,7,8,10,-1,8,9,10,-1,10,38,40,-1,10,40,41,-1,10,41,42,-1,10,42,43,-1,10,43,44,-1,10,44,45,-1,10,45,46,-1,10,46,47,-1,10,47,48,-1,10,48,64,-1,10,49,39,-1,10,50,49,-1,10,51,50,-1,10,52,51,-1,10,53,52,-1,10,54,53,-1,10,55,54,-1,10,56,55,-1,10,57,56,-1,10,58,57,-1,10,59,58,-1,10,60,59,-1,10,61,60,-1,10,62,61,-1,10,63,62,-1,10,64,63,-1,11,12,13,-1,11,13,14,-1,11,14,15,-1,11,15,16,-1,11,16,17,-1,11,17,18,-1,11,18,19,-1,11,19,47,-1,11,40,38,-1,11,41,40,-1,11,42,41,-1,11,43,42,-1,11,44,43,-1,11,45,44,-1,11,46,45,-1,11,47,46,-1,19,20,48,-1,19,48,47,-1,20,21,22,-1,20,22,23,-1,20,23,24,-1,20,24,25,-1,20,25,26,-1,20,26,27,-1,20,27,28,-1,20,28,57,-1,20,57,58,-1,20,58,59,-1,20,59,60,-1,20,60,61,-1,20,61,62,-1,20,62,63,-1,20,63,64,-1,20,64,48,-1,28,29,56,-1,28,56,57,-1,29,30,39,-1,29,39,56,-1,30,31,39,-1,31,32,39,-1,32,33,39,-1,33,34,39,-1,34,35,39,-1,35,36,39,-1,36,37,39,-1,39,49,50,-1,39,50,51,-1,39,51,52,-1,39,52,53,-1,39,53,54,-1,39,54,55,-1,39,55,56,-1,65,67,66,-1,65,68,67,-1,65,69,68,-1,65,70,69,-1,65,71,70,-1,65,72,71,-1,65,73,72,-1};
			return value;
		}


		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_631_normalIndex_1()
		{
			int[] value = {0,1,37,-1,0,2,1,-1,0,3,2,-1,0,4,3,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,38,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,17,-1,0,19,18,-1,0,20,19,-1,0,21,20,-1,0,22,21,-1,0,23,22,-1,0,24,23,-1,0,25,24,-1,0,26,25,-1,0,27,26,-1,0,28,27,-1,0,29,28,-1,0,30,29,-1,0,31,30,-1,0,32,31,-1,0,33,32,-1,0,34,33,-1,0,35,34,-1,0,36,35,-1,0,37,36,-1,0,38,10,-1,1,2,39,-1,1,39,37,-1,2,3,10,-1,2,10,39,-1,3,4,10,-1,4,5,10,-1,5,6,10,-1,6,7,10,-1,7,8,10,-1,8,9,10,-1,10,38,40,-1,10,40,41,-1,10,41,42,-1,10,42,43,-1,10,43,44,-1,10,44,45,-1,10,45,46,-1,10,46,47,-1,10,47,48,-1,10,48,64,-1,10,49,39,-1,10,50,49,-1,10,51,50,-1,10,52,51,-1,10,53,52,-1,10,54,53,-1,10,55,54,-1,10,56,55,-1,10,57,56,-1,10,58,57,-1,10,59,58,-1,10,60,59,-1,10,61,60,-1,10,62,61,-1,10,63,62,-1,10,64,63,-1,11,12,13,-1,11,13,14,-1,11,14,15,-1,11,15,16,-1,11,16,17,-1,11,17,18,-1,11,18,19,-1,11,19,47,-1,11,40,38,-1,11,41,40,-1,11,42,41,-1,11,43,42,-1,11,44,43,-1,11,45,44,-1,11,46,45,-1,11,47,46,-1,19,20,48,-1,19,48,47,-1,20,21,22,-1,20,22,23,-1,20,23,24,-1,20,24,25,-1,20,25,26,-1,20,26,27,-1,20,27,28,-1,20,28,57,-1,20,57,58,-1,20,58,59,-1,20,59,60,-1,20,60,61,-1,20,61,62,-1,20,62,63,-1,20,63,64,-1,20,64,48,-1,28,29,56,-1,28,56,57,-1,29,30,39,-1,29,39,56,-1,30,31,39,-1,31,32,39,-1,32,33,39,-1,33,34,39,-1,34,35,39,-1,35,36,39,-1,36,37,39,-1,39,49,50,-1,39,50,51,-1,39,51,52,-1,39,52,53,-1,39,53,54,-1,39,54,55,-1,39,55,56,-1,65,67,66,-1,65,68,67,-1,65,69,68,-1,65,70,69,-1,65,71,70,-1,65,72,71,-1,65,73,72,-1};
			return value;
		}




		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_637_coordIndex_1()
		{
			int[] value = {0,1,8,-1,0,2,1,-1,0,3,2,-1,0,4,7,-1,0,5,4,-1,0,6,5,-1,0,7,3,-1,0,8,6,-1,1,2,10,-1,1,9,11,-1,1,10,9,-1,1,11,8,-1,2,3,10,-1,3,7,46,-1,3,13,10,-1,3,16,13,-1,3,19,16,-1,3,22,19,-1,3,25,22,-1,3,28,25,-1,3,31,28,-1,3,34,31,-1,3,37,34,-1,3,40,37,-1,3,43,40,-1,3,46,43,-1,4,5,45,-1,4,45,7,-1,5,6,51,-1,5,47,45,-1,5,51,52,-1,5,52,47,-1,6,8,48,-1,6,48,51,-1,7,45,46,-1,8,11,50,-1,8,49,48,-1,8,50,49,-1,9,10,13,-1,9,12,14,-1,9,13,12,-1,9,14,11,-1,11,14,50,-1,12,13,16,-1,12,15,17,-1,12,16,15,-1,12,17,14,-1,14,17,63,-1,14,63,50,-1,15,16,19,-1,15,18,20,-1,15,19,18,-1,15,20,17,-1,17,20,62,-1,17,62,63,-1,18,19,22,-1,18,21,23,-1,18,22,21,-1,18,23,20,-1,20,23,61,-1,20,61,62,-1,21,22,25,-1,21,24,26,-1,21,25,24,-1,21,26,23,-1,23,26,60,-1,23,60,61,-1,24,25,28,-1,24,27,29,-1,24,28,27,-1,24,29,26,-1,26,29,59,-1,26,59,60,-1,27,28,31,-1,27,30,32,-1,27,31,30,-1,27,32,29,-1,29,32,58,-1,29,58,59,-1,30,31,34,-1,30,33,35,-1,30,34,33,-1,30,35,32,-1,32,35,57,-1,32,57,58,-1,33,34,37,-1,33,36,38,-1,33,37,36,-1,33,38,35,-1,35,38,56,-1,35,56,57,-1,36,37,40,-1,36,39,41,-1,36,40,39,-1,36,41,38,-1,38,41,55,-1,38,55,56,-1,39,40,43,-1,39,42,44,-1,39,43,42,-1,39,44,41,-1,41,44,54,-1,41,54,55,-1,42,43,46,-1,42,45,47,-1,42,46,45,-1,42,47,44,-1,44,47,53,-1,44,53,54,-1,47,52,53,-1,48,49,51,-1,49,50,63,-1,49,52,51,-1,49,53,52,-1,49,54,53,-1,49,55,54,-1,49,56,55,-1,49,57,56,-1,49,58,57,-1,49,59,58,-1,49,60,59,-1,49,61,60,-1,49,62,61,-1,49,63,62,-1};
			return value;
		}


		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_637_normalIndex_1()
		{
			int[] value = {0,1,8,-1,0,2,1,-1,0,3,2,-1,0,4,7,-1,0,5,4,-1,0,6,5,-1,0,7,3,-1,0,8,6,-1,1,2,10,-1,1,9,11,-1,1,10,9,-1,1,11,8,-1,2,3,10,-1,3,7,46,-1,3,13,10,-1,3,16,13,-1,3,19,16,-1,3,22,19,-1,3,25,22,-1,3,28,25,-1,3,31,28,-1,3,34,31,-1,3,37,34,-1,3,40,37,-1,3,43,40,-1,3,46,43,-1,4,5,45,-1,4,45,7,-1,5,6,51,-1,5,47,45,-1,5,51,52,-1,5,52,47,-1,6,8,48,-1,6,48,51,-1,7,45,46,-1,8,11,50,-1,8,49,48,-1,8,50,49,-1,9,10,13,-1,9,12,14,-1,9,13,12,-1,9,14,11,-1,11,14,50,-1,12,13,16,-1,12,15,17,-1,12,16,15,-1,12,17,14,-1,14,17,63,-1,14,63,50,-1,15,16,19,-1,15,18,20,-1,15,19,18,-1,15,20,17,-1,17,20,62,-1,17,62,63,-1,18,19,22,-1,18,21,23,-1,18,22,21,-1,18,23,20,-1,20,23,61,-1,20,61,62,-1,21,22,25,-1,21,24,26,-1,21,25,24,-1,21,26,23,-1,23,26,60,-1,23,60,61,-1,24,25,28,-1,24,27,29,-1,24,28,27,-1,24,29,26,-1,26,29,59,-1,26,59,60,-1,27,28,31,-1,27,30,32,-1,27,31,30,-1,27,32,29,-1,29,32,58,-1,29,58,59,-1,30,31,34,-1,30,33,35,-1,30,34,33,-1,30,35,32,-1,32,35,57,-1,32,57,58,-1,33,34,37,-1,33,36,38,-1,33,37,36,-1,33,38,35,-1,35,38,56,-1,35,56,57,-1,36,37,40,-1,36,39,41,-1,36,40,39,-1,36,41,38,-1,38,41,55,-1,38,55,56,-1,39,40,43,-1,39,42,44,-1,39,43,42,-1,39,44,41,-1,41,44,54,-1,41,54,55,-1,42,43,46,-1,42,45,47,-1,42,46,45,-1,42,47,44,-1,44,47,53,-1,44,53,54,-1,47,52,53,-1,48,49,51,-1,49,50,63,-1,49,52,51,-1,49,53,52,-1,49,54,53,-1,49,55,54,-1,49,56,55,-1,49,57,56,-1,49,58,57,-1,49,59,58,-1,49,60,59,-1,49,61,60,-1,49,62,61,-1,49,63,62,-1};
			return value;
		}




		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_643_coordIndex_1()
		{
			int[] value = {0,1,8,-1,0,2,1,-1,0,3,2,-1,0,4,7,-1,0,5,4,-1,0,6,5,-1,0,7,3,-1,0,8,6,-1,1,9,8,-1,1,10,9,-1,2,3,45,-1,3,7,43,-1,3,18,19,-1,3,19,47,-1,3,22,18,-1,3,25,22,-1,3,28,25,-1,3,31,28,-1,3,34,31,-1,3,37,34,-1,3,40,37,-1,3,43,40,-1,3,46,45,-1,3,47,46,-1,4,5,42,-1,4,42,7,-1,5,6,51,-1,5,44,42,-1,5,51,52,-1,5,52,44,-1,6,8,48,-1,6,48,51,-1,7,42,43,-1,8,9,50,-1,8,49,48,-1,8,50,49,-1,9,10,11,-1,9,11,50,-1,10,12,11,-1,11,12,13,-1,11,13,63,-1,11,63,50,-1,12,14,13,-1,13,14,15,-1,13,15,62,-1,13,62,63,-1,14,16,15,-1,15,16,20,-1,15,20,61,-1,15,61,62,-1,16,17,20,-1,16,18,17,-1,16,19,18,-1,17,18,22,-1,17,21,23,-1,17,22,21,-1,17,23,20,-1,20,23,60,-1,20,60,61,-1,21,22,25,-1,21,24,26,-1,21,25,24,-1,21,26,23,-1,23,26,59,-1,23,59,60,-1,24,25,28,-1,24,27,29,-1,24,28,27,-1,24,29,26,-1,26,29,58,-1,26,58,59,-1,27,28,31,-1,27,30,32,-1,27,31,30,-1,27,32,29,-1,29,32,57,-1,29,57,58,-1,30,31,34,-1,30,33,35,-1,30,34,33,-1,30,35,32,-1,32,35,56,-1,32,56,57,-1,33,34,37,-1,33,36,38,-1,33,37,36,-1,33,38,35,-1,35,38,55,-1,35,55,56,-1,36,37,40,-1,36,39,41,-1,36,40,39,-1,36,41,38,-1,38,41,54,-1,38,54,55,-1,39,40,43,-1,39,42,44,-1,39,43,42,-1,39,44,41,-1,41,44,53,-1,41,53,54,-1,44,52,53,-1,48,49,51,-1,49,50,63,-1,49,52,51,-1,49,53,52,-1,49,54,53,-1,49,55,54,-1,49,56,55,-1,49,57,56,-1,49,58,57,-1,49,59,58,-1,49,60,59,-1,49,61,60,-1,49,62,61,-1,49,63,62,-1};
			return value;
		}


		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_643_normalIndex_1()
		{
			int[] value = {0,1,8,-1,0,2,1,-1,0,3,2,-1,0,4,7,-1,0,5,4,-1,0,6,5,-1,0,7,3,-1,0,8,6,-1,1,9,8,-1,1,10,9,-1,2,3,45,-1,3,7,43,-1,3,18,19,-1,3,19,47,-1,3,22,18,-1,3,25,22,-1,3,28,25,-1,3,31,28,-1,3,34,31,-1,3,37,34,-1,3,40,37,-1,3,43,40,-1,3,46,45,-1,3,47,46,-1,4,5,42,-1,4,42,7,-1,5,6,51,-1,5,44,42,-1,5,51,52,-1,5,52,44,-1,6,8,48,-1,6,48,51,-1,7,42,43,-1,8,9,50,-1,8,49,48,-1,8,50,49,-1,9,10,11,-1,9,11,50,-1,10,12,11,-1,11,12,13,-1,11,13,63,-1,11,63,50,-1,12,14,13,-1,13,14,15,-1,13,15,62,-1,13,62,63,-1,14,16,15,-1,15,16,20,-1,15,20,61,-1,15,61,62,-1,16,17,20,-1,16,18,17,-1,16,19,18,-1,17,18,22,-1,17,21,23,-1,17,22,21,-1,17,23,20,-1,20,23,60,-1,20,60,61,-1,21,22,25,-1,21,24,26,-1,21,25,24,-1,21,26,23,-1,23,26,59,-1,23,59,60,-1,24,25,28,-1,24,27,29,-1,24,28,27,-1,24,29,26,-1,26,29,58,-1,26,58,59,-1,27,28,31,-1,27,30,32,-1,27,31,30,-1,27,32,29,-1,29,32,57,-1,29,57,58,-1,30,31,34,-1,30,33,35,-1,30,34,33,-1,30,35,32,-1,32,35,56,-1,32,56,57,-1,33,34,37,-1,33,36,38,-1,33,37,36,-1,33,38,35,-1,35,38,55,-1,35,55,56,-1,36,37,40,-1,36,39,41,-1,36,40,39,-1,36,41,38,-1,38,41,54,-1,38,54,55,-1,39,40,43,-1,39,42,44,-1,39,43,42,-1,39,44,41,-1,41,44,53,-1,41,53,54,-1,44,52,53,-1,48,49,51,-1,49,50,63,-1,49,52,51,-1,49,53,52,-1,49,54,53,-1,49,55,54,-1,49,56,55,-1,49,57,56,-1,49,58,57,-1,49,59,58,-1,49,60,59,-1,49,61,60,-1,49,62,61,-1,49,63,62,-1};
			return value;
		}




		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_649_coordIndex_1()
		{
			int[] value = {0,2,1,-1,0,3,2,-1,0,4,3,-1,0,5,4,-1,1,2,43,-1,2,3,51,-1,2,42,43,-1,2,51,52,-1,2,52,42,-1,3,4,48,-1,3,48,51,-1,4,5,9,-1,4,9,50,-1,4,49,48,-1,4,50,49,-1,5,6,9,-1,5,7,6,-1,5,8,7,-1,6,7,11,-1,6,10,12,-1,6,11,10,-1,6,12,9,-1,7,8,44,-1,7,44,11,-1,9,12,50,-1,10,11,14,-1,10,13,15,-1,10,14,13,-1,10,15,12,-1,11,44,14,-1,12,15,63,-1,12,63,50,-1,13,14,17,-1,13,16,18,-1,13,17,16,-1,13,18,15,-1,14,44,17,-1,15,18,62,-1,15,62,63,-1,16,17,20,-1,16,19,21,-1,16,20,19,-1,16,21,18,-1,17,44,20,-1,18,21,61,-1,18,61,62,-1,19,20,23,-1,19,22,24,-1,19,23,22,-1,19,24,21,-1,20,44,23,-1,21,24,60,-1,21,60,61,-1,22,23,26,-1,22,25,27,-1,22,26,25,-1,22,27,24,-1,23,44,26,-1,24,27,59,-1,24,59,60,-1,25,26,29,-1,25,28,30,-1,25,29,28,-1,25,30,27,-1,26,44,29,-1,27,30,58,-1,27,58,59,-1,28,29,32,-1,28,31,33,-1,28,32,31,-1,28,33,30,-1,29,44,32,-1,30,33,57,-1,30,57,58,-1,31,32,35,-1,31,34,36,-1,31,35,34,-1,31,36,33,-1,32,44,35,-1,33,36,56,-1,33,56,57,-1,34,35,38,-1,34,37,39,-1,34,38,37,-1,34,39,36,-1,35,44,38,-1,36,39,55,-1,36,55,56,-1,37,40,39,-1,37,41,40,-1,38,44,45,-1,39,40,54,-1,39,54,55,-1,40,41,42,-1,40,42,53,-1,40,53,54,-1,41,43,42,-1,42,52,53,-1,44,46,45,-1,44,47,46,-1,48,49,51,-1,49,50,63,-1,49,52,51,-1,49,53,52,-1,49,54,53,-1,49,55,54,-1,49,56,55,-1,49,57,56,-1,49,58,57,-1,49,59,58,-1,49,60,59,-1,49,61,60,-1,49,62,61,-1,49,63,62,-1};
			return value;
		}


		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_649_normalIndex_1()
		{
			int[] value = {0,2,1,-1,0,3,2,-1,0,4,3,-1,0,5,4,-1,1,2,43,-1,2,3,51,-1,2,42,43,-1,2,51,52,-1,2,52,42,-1,3,4,48,-1,3,48,51,-1,4,5,9,-1,4,9,50,-1,4,49,48,-1,4,50,49,-1,5,6,9,-1,5,7,6,-1,5,8,7,-1,6,7,11,-1,6,10,12,-1,6,11,10,-1,6,12,9,-1,7,8,44,-1,7,44,11,-1,9,12,50,-1,10,11,14,-1,10,13,15,-1,10,14,13,-1,10,15,12,-1,11,44,14,-1,12,15,63,-1,12,63,50,-1,13,14,17,-1,13,16,18,-1,13,17,16,-1,13,18,15,-1,14,44,17,-1,15,18,62,-1,15,62,63,-1,16,17,20,-1,16,19,21,-1,16,20,19,-1,16,21,18,-1,17,44,20,-1,18,21,61,-1,18,61,62,-1,19,20,23,-1,19,22,24,-1,19,23,22,-1,19,24,21,-1,20,44,23,-1,21,24,60,-1,21,60,61,-1,22,23,26,-1,22,25,27,-1,22,26,25,-1,22,27,24,-1,23,44,26,-1,24,27,59,-1,24,59,60,-1,25,26,29,-1,25,28,30,-1,25,29,28,-1,25,30,27,-1,26,44,29,-1,27,30,58,-1,27,58,59,-1,28,29,32,-1,28,31,33,-1,28,32,31,-1,28,33,30,-1,29,44,32,-1,30,33,57,-1,30,57,58,-1,31,32,35,-1,31,34,36,-1,31,35,34,-1,31,36,33,-1,32,44,35,-1,33,36,56,-1,33,56,57,-1,34,35,38,-1,34,37,39,-1,34,38,37,-1,34,39,36,-1,35,44,38,-1,36,39,55,-1,36,55,56,-1,37,40,39,-1,37,41,40,-1,38,44,45,-1,39,40,54,-1,39,54,55,-1,40,41,42,-1,40,42,53,-1,40,53,54,-1,41,43,42,-1,42,52,53,-1,44,46,45,-1,44,47,46,-1,48,49,51,-1,49,50,63,-1,49,52,51,-1,49,53,52,-1,49,54,53,-1,49,55,54,-1,49,56,55,-1,49,57,56,-1,49,58,57,-1,49,59,58,-1,49,60,59,-1,49,61,60,-1,49,62,61,-1,49,63,62,-1};
			return value;
		}




		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_655_coordIndex_1()
		{
			int[] value = {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,19,-1,3,18,38,-1,3,20,19,-1,3,21,20,-1,3,22,21,-1,3,23,22,-1,3,24,23,-1,3,25,24,-1,3,26,25,-1,3,36,26,-1,3,38,39,-1,3,39,49,-1,3,48,36,-1,3,49,48,-1,4,5,18,-1,5,6,37,-1,5,37,46,-1,5,38,18,-1,5,40,38,-1,5,42,40,-1,5,44,42,-1,5,46,44,-1,6,7,9,-1,6,9,37,-1,7,8,9,-1,9,10,27,-1,9,27,37,-1,10,11,26,-1,10,26,36,-1,10,29,27,-1,10,31,29,-1,10,33,31,-1,10,35,33,-1,10,36,35,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,27,28,47,-1,27,29,28,-1,27,47,37,-1,28,29,46,-1,28,46,47,-1,29,30,45,-1,29,31,30,-1,29,45,46,-1,30,31,44,-1,30,44,45,-1,31,32,43,-1,31,33,32,-1,31,43,44,-1,32,33,42,-1,32,42,43,-1,33,34,41,-1,33,35,34,-1,33,41,42,-1,34,35,40,-1,34,40,41,-1,35,36,40,-1,36,39,40,-1,36,48,49,-1,36,49,39,-1,37,47,46,-1,38,40,39,-1,40,42,41,-1,42,44,43,-1,44,46,45,-1};
			return value;
		}


		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_655_normalIndex_1()
		{
			int[] value = {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,19,-1,3,18,38,-1,3,20,19,-1,3,21,20,-1,3,22,21,-1,3,23,22,-1,3,24,23,-1,3,25,24,-1,3,26,25,-1,3,36,26,-1,3,38,39,-1,3,39,49,-1,3,48,36,-1,3,49,48,-1,4,5,18,-1,5,6,37,-1,5,37,46,-1,5,38,18,-1,5,40,38,-1,5,42,40,-1,5,44,42,-1,5,46,44,-1,6,7,9,-1,6,9,37,-1,7,8,9,-1,9,10,27,-1,9,27,37,-1,10,11,26,-1,10,26,36,-1,10,29,27,-1,10,31,29,-1,10,33,31,-1,10,35,33,-1,10,36,35,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,27,28,47,-1,27,29,28,-1,27,47,37,-1,28,29,46,-1,28,46,47,-1,29,30,45,-1,29,31,30,-1,29,45,46,-1,30,31,44,-1,30,44,45,-1,31,32,43,-1,31,33,32,-1,31,43,44,-1,32,33,42,-1,32,42,43,-1,33,34,41,-1,33,35,34,-1,33,41,42,-1,34,35,40,-1,34,40,41,-1,35,36,40,-1,36,39,40,-1,36,48,49,-1,36,49,39,-1,37,47,46,-1,38,40,39,-1,40,42,41,-1,42,44,43,-1,44,46,45,-1};
			return value;
		}




		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_661_coordIndex_1()
		{
			int[] value = {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,19,-1,3,18,38,-1,3,20,19,-1,3,21,20,-1,3,22,21,-1,3,23,22,-1,3,24,23,-1,3,25,24,-1,3,26,25,-1,3,36,26,-1,3,38,39,-1,3,39,49,-1,3,48,36,-1,3,49,48,-1,4,5,18,-1,5,6,37,-1,5,37,46,-1,5,38,18,-1,5,40,38,-1,5,42,40,-1,5,44,42,-1,5,46,44,-1,6,7,9,-1,6,9,37,-1,7,8,9,-1,9,10,27,-1,9,27,37,-1,10,11,26,-1,10,26,36,-1,10,29,27,-1,10,31,29,-1,10,33,31,-1,10,35,33,-1,10,36,35,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,27,28,47,-1,27,29,28,-1,27,47,37,-1,28,29,46,-1,28,46,47,-1,29,30,45,-1,29,31,30,-1,29,45,46,-1,30,31,44,-1,30,44,45,-1,31,32,43,-1,31,33,32,-1,31,43,44,-1,32,33,42,-1,32,42,43,-1,33,34,41,-1,33,35,34,-1,33,41,42,-1,34,35,40,-1,34,40,41,-1,35,36,40,-1,36,39,40,-1,36,48,49,-1,36,49,39,-1,37,47,46,-1,38,40,39,-1,40,42,41,-1,42,44,43,-1,44,46,45,-1};
			return value;
		}


		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_661_normalIndex_1()
		{
			int[] value = {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,19,-1,3,18,38,-1,3,20,19,-1,3,21,20,-1,3,22,21,-1,3,23,22,-1,3,24,23,-1,3,25,24,-1,3,26,25,-1,3,36,26,-1,3,38,39,-1,3,39,49,-1,3,48,36,-1,3,49,48,-1,4,5,18,-1,5,6,37,-1,5,37,46,-1,5,38,18,-1,5,40,38,-1,5,42,40,-1,5,44,42,-1,5,46,44,-1,6,7,9,-1,6,9,37,-1,7,8,9,-1,9,10,27,-1,9,27,37,-1,10,11,26,-1,10,26,36,-1,10,29,27,-1,10,31,29,-1,10,33,31,-1,10,35,33,-1,10,36,35,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,27,28,47,-1,27,29,28,-1,27,47,37,-1,28,29,46,-1,28,46,47,-1,29,30,45,-1,29,31,30,-1,29,45,46,-1,30,31,44,-1,30,44,45,-1,31,32,43,-1,31,33,32,-1,31,43,44,-1,32,33,42,-1,32,42,43,-1,33,34,41,-1,33,35,34,-1,33,41,42,-1,34,35,40,-1,34,40,41,-1,35,36,40,-1,36,39,40,-1,36,48,49,-1,36,49,39,-1,37,47,46,-1,38,40,39,-1,40,42,41,-1,42,44,43,-1,44,46,45,-1};
			return value;
		}




		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_667_coordIndex_1()
		{
			int[] value = {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,32,-1,2,32,33,-1,2,33,19,-1,3,18,32,-1,4,5,18,-1,5,6,31,-1,5,31,18,-1,6,7,30,-1,6,30,31,-1,7,8,29,-1,7,29,30,-1,8,9,28,-1,8,28,29,-1,9,10,27,-1,9,27,28,-1,10,11,26,-1,10,26,27,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,18,31,46,-1,18,46,47,-1,18,47,32,-1,19,33,34,-1,19,34,20,-1,20,34,35,-1,20,35,21,-1,21,35,36,-1,21,36,22,-1,22,36,37,-1,22,37,23,-1,23,37,38,-1,23,38,24,-1,24,38,39,-1,24,39,25,-1,25,39,40,-1,25,40,26,-1,26,40,41,-1,26,41,27,-1,27,41,42,-1,27,42,28,-1,28,42,43,-1,28,43,29,-1,29,43,44,-1,29,44,30,-1,30,44,45,-1,30,45,31,-1,31,45,46,-1,32,41,33,-1,32,42,41,-1,32,47,42,-1,33,40,34,-1,33,41,40,-1,34,39,35,-1,34,40,39,-1,35,38,36,-1,35,39,38,-1,36,38,37,-1,42,47,43,-1,43,46,44,-1,43,47,46,-1,44,46,45,-1};
			return value;
		}


		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_667_normalIndex_1()
		{
			int[] value = {0,1,17,-1,0,2,1,-1,0,3,2,-1,0,4,18,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,3,-1,1,2,19,-1,1,19,17,-1,2,3,32,-1,2,32,33,-1,2,33,19,-1,3,18,32,-1,4,5,18,-1,5,6,31,-1,5,31,18,-1,6,7,30,-1,6,30,31,-1,7,8,29,-1,7,29,30,-1,8,9,28,-1,8,28,29,-1,9,10,27,-1,9,27,28,-1,10,11,26,-1,10,26,27,-1,11,12,25,-1,11,25,26,-1,12,13,24,-1,12,24,25,-1,13,14,23,-1,13,23,24,-1,14,15,22,-1,14,22,23,-1,15,16,21,-1,15,21,22,-1,16,17,20,-1,16,20,21,-1,17,19,20,-1,18,31,46,-1,18,46,47,-1,18,47,32,-1,19,33,34,-1,19,34,20,-1,20,34,35,-1,20,35,21,-1,21,35,36,-1,21,36,22,-1,22,36,37,-1,22,37,23,-1,23,37,38,-1,23,38,24,-1,24,38,39,-1,24,39,25,-1,25,39,40,-1,25,40,26,-1,26,40,41,-1,26,41,27,-1,27,41,42,-1,27,42,28,-1,28,42,43,-1,28,43,29,-1,29,43,44,-1,29,44,30,-1,30,44,45,-1,30,45,31,-1,31,45,46,-1,32,41,33,-1,32,42,41,-1,32,47,42,-1,33,40,34,-1,33,41,40,-1,34,39,35,-1,34,40,39,-1,35,38,36,-1,35,39,38,-1,36,38,37,-1,42,47,43,-1,43,46,44,-1,43,47,46,-1,44,46,45,-1};
			return value;
		}






















		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_794_coordIndex_1()
		{
			int[] value = {0,1,2,-1,0,2,3,-1,0,3,4,-1,0,4,5,-1,1,6,7,-1,1,7,2,-1,2,7,35,-1,2,32,3,-1,2,35,32,-1,3,32,33,-1,3,33,34,-1,3,34,4,-1,4,30,5,-1,4,31,30,-1,4,34,31,-1,6,8,9,-1,6,9,7,-1,7,9,36,-1,7,36,35,-1,8,10,11,-1,8,11,9,-1,9,11,37,-1,9,37,36,-1,10,12,13,-1,10,13,11,-1,11,13,38,-1,11,38,37,-1,12,14,15,-1,12,15,13,-1,13,15,39,-1,13,39,38,-1,14,16,17,-1,14,17,15,-1,15,17,40,-1,15,40,39,-1,16,18,19,-1,16,19,17,-1,17,19,41,-1,17,41,40,-1,18,20,21,-1,18,21,19,-1,19,21,42,-1,19,42,41,-1,20,22,23,-1,20,23,21,-1,21,23,43,-1,21,43,42,-1,22,24,25,-1,22,25,23,-1,23,25,44,-1,23,44,43,-1,24,26,27,-1,24,27,25,-1,25,27,45,-1,25,45,44,-1,26,28,29,-1,26,29,27,-1,27,29,46,-1,27,46,45,-1,28,30,31,-1,28,31,29,-1,29,31,47,-1,29,47,46,-1,31,34,47,-1,32,35,51,-1,32,48,33,-1,32,51,48,-1,33,48,49,-1,33,49,50,-1,33,50,34,-1,34,50,47,-1,35,36,52,-1,35,52,51,-1,36,37,53,-1,36,53,52,-1,37,38,54,-1,37,54,53,-1,38,39,55,-1,38,55,54,-1,39,40,56,-1,39,56,55,-1,40,41,57,-1,40,57,56,-1,41,42,58,-1,41,58,57,-1,42,43,59,-1,42,59,58,-1,43,44,60,-1,43,60,59,-1,44,45,61,-1,44,61,60,-1,45,46,62,-1,45,62,61,-1,46,47,63,-1,46,63,62,-1,47,50,63,-1,48,51,67,-1,48,64,49,-1,48,67,64,-1,49,64,65,-1,49,65,66,-1,49,66,50,-1,50,66,63,-1,51,52,68,-1,51,68,67,-1,52,53,69,-1,52,69,68,-1,53,54,70,-1,53,70,69,-1,54,55,71,-1,54,71,70,-1,55,56,72,-1,55,72,71,-1,56,57,73,-1,56,73,72,-1,57,58,74,-1,57,74,73,-1,58,59,75,-1,58,75,74,-1,59,60,76,-1,59,76,75,-1,60,61,77,-1,60,77,76,-1,61,62,78,-1,61,78,77,-1,62,63,79,-1,62,79,78,-1,63,66,79,-1,64,67,89,-1,64,88,65,-1,64,89,88,-1,65,80,81,-1,65,81,66,-1,65,88,80,-1,66,81,79,-1,67,68,82,-1,67,82,89,-1,68,69,83,-1,68,83,82,-1,69,70,90,-1,69,90,83,-1,70,71,91,-1,70,91,90,-1,71,72,92,-1,71,92,91,-1,72,73,93,-1,72,93,92,-1,73,74,94,-1,73,94,93,-1,74,75,84,-1,74,84,94,-1,75,76,85,-1,75,85,84,-1,76,77,95,-1,76,95,85,-1,77,78,86,-1,77,86,95,-1,78,79,87,-1,78,87,86,-1,79,81,87,-1,80,88,96,-1,80,96,97,-1,80,97,98,-1,80,98,81,-1,81,98,87,-1,82,83,101,-1,82,100,89,-1,82,101,100,-1,83,90,102,-1,83,102,101,-1,84,85,108,-1,84,107,94,-1,84,108,107,-1,85,95,109,-1,85,109,108,-1,86,87,111,-1,86,110,95,-1,86,111,110,-1,87,98,111,-1,88,89,99,-1,88,99,96,-1,89,100,99,-1,90,91,103,-1,90,103,102,-1,91,92,104,-1,91,104,103,-1,92,93,105,-1,92,105,104,-1,93,94,106,-1,93,106,105,-1,94,107,106,-1,95,110,109,-1,96,99,115,-1,96,112,97,-1,96,115,112,-1,97,112,113,-1,97,113,114,-1,97,114,98,-1,98,114,111,-1,99,100,116,-1,99,116,115,-1,100,101,117,-1,100,117,116,-1,101,102,118,-1,101,118,117,-1,102,103,119,-1,102,119,118,-1,103,104,120,-1,103,120,119,-1,104,105,121,-1,104,121,120,-1,105,106,122,-1,105,122,121,-1,106,107,123,-1,106,123,122,-1,107,108,124,-1,107,124,123,-1,108,109,125,-1,108,125,124,-1,109,110,126,-1,109,126,125,-1,110,111,127,-1,110,127,126,-1,111,114,127,-1,112,115,113,-1,113,115,116,-1,113,116,117,-1,113,117,118,-1,113,118,119,-1,113,119,120,-1,113,120,121,-1,113,121,122,-1,113,122,123,-1,113,123,124,-1,113,124,125,-1,113,125,126,-1,113,126,127,-1,113,127,114,-1};
			return value;
		}


		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_794_normalIndex_1()
		{
			int[] value = {0,1,2,-1,0,2,3,-1,0,3,4,-1,0,4,5,-1,1,6,7,-1,1,7,2,-1,2,7,35,-1,2,32,3,-1,2,35,32,-1,3,32,33,-1,3,33,34,-1,3,34,4,-1,4,30,5,-1,4,31,30,-1,4,34,31,-1,6,8,9,-1,6,9,7,-1,7,9,36,-1,7,36,35,-1,8,10,11,-1,8,11,9,-1,9,11,37,-1,9,37,36,-1,10,12,13,-1,10,13,11,-1,11,13,38,-1,11,38,37,-1,12,14,15,-1,12,15,13,-1,13,15,39,-1,13,39,38,-1,14,16,17,-1,14,17,15,-1,15,17,40,-1,15,40,39,-1,16,18,19,-1,16,19,17,-1,17,19,41,-1,17,41,40,-1,18,20,21,-1,18,21,19,-1,19,21,42,-1,19,42,41,-1,20,22,23,-1,20,23,21,-1,21,23,43,-1,21,43,42,-1,22,24,25,-1,22,25,23,-1,23,25,44,-1,23,44,43,-1,24,26,27,-1,24,27,25,-1,25,27,45,-1,25,45,44,-1,26,28,29,-1,26,29,27,-1,27,29,46,-1,27,46,45,-1,28,30,31,-1,28,31,29,-1,29,31,47,-1,29,47,46,-1,31,34,47,-1,32,35,51,-1,32,48,33,-1,32,51,48,-1,33,48,49,-1,33,49,50,-1,33,50,34,-1,34,50,47,-1,35,36,52,-1,35,52,51,-1,36,37,53,-1,36,53,52,-1,37,38,54,-1,37,54,53,-1,38,39,55,-1,38,55,54,-1,39,40,56,-1,39,56,55,-1,40,41,57,-1,40,57,56,-1,41,42,58,-1,41,58,57,-1,42,43,59,-1,42,59,58,-1,43,44,60,-1,43,60,59,-1,44,45,61,-1,44,61,60,-1,45,46,62,-1,45,62,61,-1,46,47,63,-1,46,63,62,-1,47,50,63,-1,48,51,67,-1,48,64,49,-1,48,67,64,-1,49,64,65,-1,49,65,66,-1,49,66,50,-1,50,66,63,-1,51,52,68,-1,51,68,67,-1,52,53,69,-1,52,69,68,-1,53,54,70,-1,53,70,69,-1,54,55,71,-1,54,71,70,-1,55,56,72,-1,55,72,71,-1,56,57,73,-1,56,73,72,-1,57,58,74,-1,57,74,73,-1,58,59,75,-1,58,75,74,-1,59,60,76,-1,59,76,75,-1,60,61,77,-1,60,77,76,-1,61,62,78,-1,61,78,77,-1,62,63,79,-1,62,79,78,-1,63,66,79,-1,64,67,89,-1,64,88,65,-1,64,89,88,-1,65,80,81,-1,65,81,66,-1,65,88,80,-1,66,81,79,-1,67,68,82,-1,67,82,89,-1,68,69,83,-1,68,83,82,-1,69,70,90,-1,69,90,83,-1,70,71,91,-1,70,91,90,-1,71,72,92,-1,71,92,91,-1,72,73,93,-1,72,93,92,-1,73,74,94,-1,73,94,93,-1,74,75,84,-1,74,84,94,-1,75,76,85,-1,75,85,84,-1,76,77,95,-1,76,95,85,-1,77,78,86,-1,77,86,95,-1,78,79,87,-1,78,87,86,-1,79,81,87,-1,80,88,96,-1,80,96,97,-1,80,97,98,-1,80,98,81,-1,81,98,87,-1,82,83,101,-1,82,100,89,-1,82,101,100,-1,83,90,102,-1,83,102,101,-1,84,85,108,-1,84,107,94,-1,84,108,107,-1,85,95,109,-1,85,109,108,-1,86,87,111,-1,86,110,95,-1,86,111,110,-1,87,98,111,-1,88,89,99,-1,88,99,96,-1,89,100,99,-1,90,91,103,-1,90,103,102,-1,91,92,104,-1,91,104,103,-1,92,93,105,-1,92,105,104,-1,93,94,106,-1,93,106,105,-1,94,107,106,-1,95,110,109,-1,96,99,115,-1,96,112,97,-1,96,115,112,-1,97,112,113,-1,97,113,114,-1,97,114,98,-1,98,114,111,-1,99,100,116,-1,99,116,115,-1,100,101,117,-1,100,117,116,-1,101,102,118,-1,101,118,117,-1,102,103,119,-1,102,119,118,-1,103,104,120,-1,103,120,119,-1,104,105,121,-1,104,121,120,-1,105,106,122,-1,105,122,121,-1,106,107,123,-1,106,123,122,-1,107,108,124,-1,107,124,123,-1,108,109,125,-1,108,125,124,-1,109,110,126,-1,109,126,125,-1,110,111,127,-1,110,127,126,-1,111,114,127,-1,112,115,113,-1,113,115,116,-1,113,116,117,-1,113,117,118,-1,113,118,119,-1,113,119,120,-1,113,120,121,-1,113,121,122,-1,113,122,123,-1,113,123,124,-1,113,124,125,-1,113,125,126,-1,113,126,127,-1,113,127,114,-1};
			return value;
		}


		/** Define subarrays using type double[] */
		private double[] getCoordinate_6_794_point_1()
		{
			double[] value = {-7.85297,1.17825,-1.45015,-7.854,1.17308,-1.45015,-7.854,1.17308,-1.48881,-7.85297,1.17825,-1.48881,-7.854,1.18342,-1.48881,-7.854,1.18342,-1.45015,-7.85692,1.16869,-1.45015,-7.85692,1.16869,-1.48881,-7.86131,1.16576,-1.45015,-7.86131,1.16576,-1.48881,-7.86648,1.16474,-1.45015,-7.86648,1.16474,-1.48881,-7.87165,1.16576,-1.45015,-7.87165,1.16576,-1.48881,-7.87603,1.16869,-1.45015,-7.87603,1.16869,-1.48881,-7.87896,1.17308,-1.45015,-7.87896,1.17308,-1.48881,-7.87999,1.17825,-1.45015,-7.87999,1.17825,-1.48881,-7.87896,1.18342,-1.45015,-7.87896,1.18342,-1.48881,-7.87603,1.1878,-1.45015,-7.87603,1.1878,-1.48881,-7.87165,1.19073,-1.45015,-7.87165,1.19073,-1.48881,-7.86648,1.19176,-1.45015,-7.86648,1.19176,-1.48881,-7.86131,1.19073,-1.45015,-7.86131,1.19073,-1.48881,-7.85692,1.1878,-1.45015,-7.85692,1.1878,-1.48881,-7.8575,1.17453,-1.49253,-7.85676,1.17825,-1.49253,-7.8575,1.18197,-1.49253,-7.8596,1.17137,-1.49253,-7.86276,1.16926,-1.49253,-7.86648,1.16852,-1.49253,-7.8702,1.16926,-1.49253,-7.87335,1.17137,-1.49253,-7.87546,1.17453,-1.49253,-7.8762,1.17825,-1.49253,-7.87546,1.18197,-1.49253,-7.87335,1.18512,-1.49253,-7.8702,1.18723,-1.49253,-7.86648,1.18797,-1.49253,-7.86276,1.18723,-1.49253,-7.8596,1.18512,-1.49253,-7.8575,1.17453,-1.50259,-7.85676,1.17825,-1.50259,-7.8575,1.18197,-1.50259,-7.8596,1.17137,-1.50259,-7.86276,1.16926,-1.50259,-7.86648,1.16852,-1.50259,-7.8702,1.16926,-1.50259,-7.87335,1.17137,-1.50259,-7.87546,1.17453,-1.50259,-7.8762,1.17825,-1.50259,-7.87546,1.18197,-1.50259,-7.87335,1.18512,-1.50259,-7.8702,1.18723,-1.50259,-7.86648,1.18797,-1.50259,-7.86276,1.18723,-1.50259,-7.8596,1.18512,-1.50259,-7.86049,1.17577,-1.50577,-7.86,1.17825,-1.50577,-7.86049,1.18073,-1.50577,-7.8619,1.17367,-1.50577,-7.864,1.17226,-1.50577,-7.86648,1.17177,-1.50577,-7.86896,1.17226,-1.50577,-7.87106,1.17367,-1.50577,-7.87246,1.17577,-1.50577,-7.87296,1.17825,-1.50577,-7.87246,1.18073,-1.50577,-7.87106,1.18283,-1.50577,-7.86896,1.18423,-1.50577,-7.86648,1.18473,-1.50577,-7.864,1.18423,-1.50577,-7.8619,1.18283,-1.50577,-7.86,1.17825,-1.66308,-7.86049,1.18073,-1.66308,-7.864,1.17226,-1.66308,-7.86648,1.17177,-1.66308,-7.87106,1.18283,-1.66308,-7.86896,1.18423,-1.66308,-7.864,1.18423,-1.66308,-7.8619,1.18283,-1.66308,-7.86049,1.17577,-1.66308,-7.8619,1.17367,-1.66308,-7.86896,1.17226,-1.66308,-7.87106,1.17367,-1.66308,-7.87246,1.17577,-1.66308,-7.87296,1.17825,-1.66308,-7.87246,1.18073,-1.66308,-7.86648,1.18473,-1.66308,-7.8589,1.17511,-1.66393,-7.85828,1.17825,-1.66393,-7.8589,1.18139,-1.66393,-7.86068,1.17245,-1.66393};
			return value;
		}
		private double[] getCoordinate_6_794_point_2()
		{
			double[] value = {-7.86334,1.17067,-1.66393,-7.86648,1.17004,-1.66393,-7.86962,1.17067,-1.66393,-7.87228,1.17245,-1.66393,-7.87406,1.17511,-1.66393,-7.87468,1.17825,-1.66393,-7.87406,1.18139,-1.66393,-7.87228,1.18405,-1.66393,-7.86962,1.18582,-1.66393,-7.86648,1.18645,-1.66393,-7.86334,1.18582,-1.66393,-7.86068,1.18405,-1.66393,-7.8589,1.17511,-1.68689,-7.85828,1.17825,-1.68689,-7.8589,1.18139,-1.68689,-7.86068,1.17245,-1.68689,-7.86334,1.17067,-1.68689,-7.86648,1.17004,-1.68689,-7.86962,1.17067,-1.68689,-7.87228,1.17245,-1.68689,-7.87406,1.17511,-1.68689,-7.87468,1.17825,-1.68689,-7.87406,1.18139,-1.68689,-7.87228,1.18405,-1.68689,-7.86962,1.18582,-1.68689,-7.86648,1.18645,-1.68689,-7.86334,1.18582,-1.68689,-7.86068,1.18405,-1.68689};
			return value;
		}


		/** Define subarrays using type double[] */
		private double[] getNormal_6_795_vector_1()
		{
			double[] value = {1.0,-2.81274E-5,0.0,0.896592,-0.442857,0.0,0.855075,-0.34279,-0.389028,0.858554,-2.51597E-5,-0.512723,0.892767,0.369786,-0.257343,0.923883,0.382676,0.0,0.658721,-0.752388,0.0,0.658772,-0.643923,-0.389079,0.320695,-0.947182,0.0,0.362119,-0.847056,-0.389058,-0.0661802,-0.997808,0.0,0.0104895,-0.921144,-0.38908,-0.442857,-0.896592,0.0,-0.342777,-0.855067,-0.389055,-0.752388,-0.658721,0.0,-0.643918,-0.658781,-0.389072,-0.947182,-0.320695,0.0,-0.847074,-0.362138,-0.389001,-0.99781,0.0661425,0.0,-0.92118,-0.010493,-0.388996,-0.896543,0.442956,0.0,-0.855051,0.342839,-0.389036,-0.658697,0.752408,0.0,-0.658748,0.643968,-0.389045,-0.32071,0.947177,0.0,-0.362147,0.847076,-0.388988,0.0661802,0.997808,0.0,-0.0104851,0.921176,-0.389005,0.442886,0.896578,0.0,0.342831,0.855069,-0.389004,0.752313,0.658806,0.0,0.64388,0.658826,-0.38906,0.847039,-0.362221,-0.388999,0.966325,-3.03931E-5,-0.257323,0.793161,0.328599,-0.512756,0.643922,-0.658781,-0.389065,0.342769,-0.855069,-0.389058,-0.0104777,-0.921145,-0.389077,-0.362138,-0.847046,-0.389061,-0.65873,-0.643969,-0.389074,-0.855044,-0.34286,-0.389032,-0.921178,0.0104697,-0.389002,-0.847012,0.362275,-0.389009,-0.643963,0.658751,-0.389049,-0.342857,0.855053,-0.389017,0.0104733,0.921177,-0.389002,0.362265,0.847023,-0.388995,0.658741,0.643985,-0.389031,0.855011,-0.34289,-0.38908,0.858479,-1.69924E-5,-0.512848,0.892708,0.369883,-0.257408,0.658753,-0.643937,-0.389088,0.362116,-0.847068,-0.389035,0.0105005,-0.921158,-0.389047,-0.342804,-0.85506,-0.389048,-0.643884,-0.658802,-0.389095,-0.846993,-0.362249,-0.389073,-0.921138,-0.0104869,-0.389095,-0.855009,0.342868,-0.389102,-0.658724,0.643986,-0.389056,-0.362283,0.846968,-0.389097,-0.0104443,0.921148,-0.389073,0.342828,0.855031,-0.38909,0.643976,0.658731,-0.38906,0.846953,-0.362348,-0.389068,0.966309,1.14151E-5,-0.257385,0.793125,0.328591,-0.512817,0.643953,-0.65874,-0.389083,0.342769,-0.855068,-0.389061,-0.0104506,-0.921163,-0.389037,-0.362199,-0.847027,-0.389047,-0.658734,-0.643965,-0.389075,-0.854967,-0.342993,-0.389084,-0.921135,0.0105358,-0.389101,-0.847011,0.362191,-0.389089,-0.643866,0.658825,-0.389084,-0.342907,0.855011,-0.389065,0.0105434,0.921138,-0.389093,0.362147,0.847036,-0.389075,0.658787,0.643906,-0.389081,0.721606,-2.51476E-6,0.692304,0.865924,0.358733,0.348549,0.343652,-0.773865,0.532011,0.0212804,-0.846468,0.532014,-0.613666,0.583421,0.532009,-0.343557,0.773904,0.532015,0.304321,0.790156,0.532017,0.583417,0.613696,0.53198,0.790173,-0.304432,0.531929,0.613652,-0.583489,0.531951,-0.304224,-0.790224,0.531971,-0.583517,-0.613645,0.531928,-0.773864,-0.343793,0.531922,-0.846495,-0.0213688,0.531967,-0.79019,0.304345,0.531953,-0.0214188,0.84647,0.532005,0.77388,-0.343753,0.531924,0.937297,-3.49765E-5,0.348533,0.666658,0.276206,0.692298,0.58358,-0.613587,0.531926};
			return value;
		}
		private double[] getNormal_6_795_vector_2()
		{
			double[] value = {0.304388,-0.790162,0.53197,-0.0213694,-0.846453,0.532035,-0.343776,-0.773816,0.532003,-0.613693,-0.583451,0.531946,-0.790193,-0.30438,0.531929,-0.846509,0.021303,0.531948,-0.773865,0.343722,0.531966,-0.583585,0.613559,0.531953,-0.304167,0.79019,0.532055,0.0212605,0.846497,0.531968,0.343701,0.773815,0.532053,0.613659,0.583456,0.531979,0.896947,-0.303891,-0.32115,0.138751,-5.1478E-6,-0.990327,0.895216,0.370918,-0.246997,0.622675,-0.545174,-0.561303,0.366765,-0.741895,-0.561315,0.0548014,-0.82578,-0.561324,-0.265583,-0.783831,-0.561315,-0.545306,-0.62256,-0.561303,-0.741944,-0.366681,-0.561305,-0.825775,-0.0548425,-0.561327,-0.783854,0.265531,-0.561308,-0.622675,0.545174,-0.561303,-0.366671,0.741932,-0.561328,-0.0546964,0.825804,-0.561299,0.265384,0.783889,-0.561328,0.545306,0.62256,-0.561303};
			return value;
		}


		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_800_coordIndex_1()
		{
			int[] value = {0,1,2,-1,0,2,3,-1,0,3,18,-1,0,4,5,-1,0,5,6,-1,0,6,7,-1,0,7,8,-1,0,8,9,-1,0,9,10,-1,0,10,11,-1,0,11,12,-1,0,12,13,-1,0,13,14,-1,0,14,15,-1,0,15,16,-1,0,16,17,-1,0,17,1,-1,0,18,4,-1,1,17,19,-1,1,19,2,-1,2,19,35,-1,2,32,3,-1,2,35,32,-1,3,32,33,-1,3,33,34,-1,3,34,18,-1,4,18,5,-1,5,18,31,-1,5,31,6,-1,6,30,7,-1,6,31,30,-1,7,29,8,-1,7,30,29,-1,8,28,9,-1,8,29,28,-1,9,27,10,-1,9,28,27,-1,10,26,11,-1,10,27,26,-1,11,25,12,-1,11,26,25,-1,12,24,13,-1,12,25,24,-1,13,23,14,-1,13,24,23,-1,14,22,15,-1,14,23,22,-1,15,21,16,-1,15,22,21,-1,16,20,17,-1,16,21,20,-1,17,20,19,-1,18,34,31,-1,19,20,36,-1,19,36,35,-1,20,21,37,-1,20,37,36,-1,21,22,38,-1,21,38,37,-1,22,23,39,-1,22,39,38,-1,23,24,40,-1,23,40,39,-1,24,25,41,-1,24,41,40,-1,25,26,42,-1,25,42,41,-1,26,27,43,-1,26,43,42,-1,27,28,44,-1,27,44,43,-1,28,29,45,-1,28,45,44,-1,29,30,46,-1,29,46,45,-1,30,31,47,-1,30,47,46,-1,31,34,47,-1,32,35,51,-1,32,48,33,-1,32,51,48,-1,33,48,49,-1,33,49,50,-1,33,50,34,-1,34,50,47,-1,35,36,52,-1,35,52,51,-1,36,37,53,-1,36,53,52,-1,37,38,54,-1,37,54,53,-1,38,39,55,-1,38,55,54,-1,39,40,56,-1,39,56,55,-1,40,41,57,-1,40,57,56,-1,41,42,58,-1,41,58,57,-1,42,43,59,-1,42,59,58,-1,43,44,60,-1,43,60,59,-1,44,45,61,-1,44,61,60,-1,45,46,62,-1,45,62,61,-1,46,47,63,-1,46,63,62,-1,47,50,63,-1,48,51,67,-1,48,64,49,-1,48,67,64,-1,49,64,65,-1,49,65,66,-1,49,66,50,-1,50,66,63,-1,51,52,68,-1,51,68,67,-1,52,53,69,-1,52,69,68,-1,53,54,70,-1,53,70,69,-1,54,55,71,-1,54,71,70,-1,55,56,72,-1,55,72,71,-1,56,57,73,-1,56,73,72,-1,57,58,74,-1,57,74,73,-1,58,59,75,-1,58,75,74,-1,59,60,76,-1,59,76,75,-1,60,61,77,-1,60,77,76,-1,61,62,78,-1,61,78,77,-1,62,63,79,-1,62,79,78,-1,63,66,79,-1,64,67,83,-1,64,80,65,-1,64,83,80,-1,65,80,81,-1,65,81,82,-1,65,82,66,-1,66,82,79,-1,67,68,84,-1,67,84,83,-1,68,69,85,-1,68,85,84,-1,69,70,86,-1,69,86,85,-1,70,71,87,-1,70,87,86,-1,71,72,88,-1,71,88,87,-1,72,73,89,-1,72,89,88,-1,73,74,90,-1,73,90,89,-1,74,75,91,-1,74,91,90,-1,75,76,92,-1,75,92,91,-1,76,77,93,-1,76,93,92,-1,77,78,94,-1,77,94,93,-1,78,79,95,-1,78,95,94,-1,79,82,95,-1,80,83,99,-1,80,96,81,-1,80,99,96,-1,81,96,97,-1,81,97,98,-1,81,98,82,-1,82,98,95,-1,83,84,100,-1,83,100,99,-1,84,85,101,-1,84,101,100,-1,85,86,102,-1,85,102,101,-1,86,87,103,-1,86,103,102,-1,87,88,104,-1,87,104,103,-1,88,89,105,-1,88,105,104,-1,89,90,106,-1,89,106,105,-1,90,91,107,-1,90,107,106,-1,91,92,108,-1,91,108,107,-1,92,93,109,-1,92,109,108,-1,93,94,110,-1,93,110,109,-1,94,95,111,-1,94,111,110,-1,95,98,111,-1};
			return value;
		}


		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_800_normalIndex_1()
		{
			int[] value = {0,1,2,-1,0,2,3,-1,0,3,18,-1,0,4,5,-1,0,5,6,-1,0,6,7,-1,0,7,8,-1,0,8,9,-1,0,9,10,-1,0,10,11,-1,0,11,12,-1,0,12,13,-1,0,13,14,-1,0,14,15,-1,0,15,16,-1,0,16,17,-1,0,17,1,-1,0,18,4,-1,1,17,19,-1,1,19,2,-1,2,19,35,-1,2,32,3,-1,2,35,32,-1,3,32,33,-1,3,33,34,-1,3,34,18,-1,4,18,5,-1,5,18,31,-1,5,31,6,-1,6,30,7,-1,6,31,30,-1,7,29,8,-1,7,30,29,-1,8,28,9,-1,8,29,28,-1,9,27,10,-1,9,28,27,-1,10,26,11,-1,10,27,26,-1,11,25,12,-1,11,26,25,-1,12,24,13,-1,12,25,24,-1,13,23,14,-1,13,24,23,-1,14,22,15,-1,14,23,22,-1,15,21,16,-1,15,22,21,-1,16,20,17,-1,16,21,20,-1,17,20,19,-1,18,34,31,-1,19,20,36,-1,19,36,35,-1,20,21,37,-1,20,37,36,-1,21,22,38,-1,21,38,37,-1,22,23,39,-1,22,39,38,-1,23,24,40,-1,23,40,39,-1,24,25,41,-1,24,41,40,-1,25,26,42,-1,25,42,41,-1,26,27,43,-1,26,43,42,-1,27,28,44,-1,27,44,43,-1,28,29,45,-1,28,45,44,-1,29,30,46,-1,29,46,45,-1,30,31,47,-1,30,47,46,-1,31,34,47,-1,32,35,51,-1,32,48,33,-1,32,51,48,-1,33,48,49,-1,33,49,50,-1,33,50,34,-1,34,50,47,-1,35,36,52,-1,35,52,51,-1,36,37,53,-1,36,53,52,-1,37,38,54,-1,37,54,53,-1,38,39,55,-1,38,55,54,-1,39,40,56,-1,39,56,55,-1,40,41,57,-1,40,57,56,-1,41,42,58,-1,41,58,57,-1,42,43,59,-1,42,59,58,-1,43,44,60,-1,43,60,59,-1,44,45,61,-1,44,61,60,-1,45,46,62,-1,45,62,61,-1,46,47,63,-1,46,63,62,-1,47,50,63,-1,48,51,67,-1,48,64,49,-1,48,67,64,-1,49,64,65,-1,49,65,66,-1,49,66,50,-1,50,66,63,-1,51,52,68,-1,51,68,67,-1,52,53,69,-1,52,69,68,-1,53,54,70,-1,53,70,69,-1,54,55,71,-1,54,71,70,-1,55,56,72,-1,55,72,71,-1,56,57,73,-1,56,73,72,-1,57,58,74,-1,57,74,73,-1,58,59,75,-1,58,75,74,-1,59,60,76,-1,59,76,75,-1,60,61,77,-1,60,77,76,-1,61,62,78,-1,61,78,77,-1,62,63,79,-1,62,79,78,-1,63,66,79,-1,64,67,83,-1,64,80,65,-1,64,83,80,-1,65,80,81,-1,65,81,82,-1,65,82,66,-1,66,82,79,-1,67,68,84,-1,67,84,83,-1,68,69,85,-1,68,85,84,-1,69,70,86,-1,69,86,85,-1,70,71,87,-1,70,87,86,-1,71,72,88,-1,71,88,87,-1,72,73,89,-1,72,89,88,-1,73,74,90,-1,73,90,89,-1,74,75,91,-1,74,91,90,-1,75,76,92,-1,75,92,91,-1,76,77,93,-1,76,93,92,-1,77,78,94,-1,77,94,93,-1,78,79,95,-1,78,95,94,-1,79,82,95,-1,80,83,99,-1,80,96,81,-1,80,99,96,-1,81,96,97,-1,81,97,98,-1,81,98,82,-1,82,98,95,-1,83,84,100,-1,83,100,99,-1,84,85,101,-1,84,101,100,-1,85,86,102,-1,85,102,101,-1,86,87,103,-1,86,103,102,-1,87,88,104,-1,87,104,103,-1,88,89,105,-1,88,105,104,-1,89,90,106,-1,89,106,105,-1,90,91,107,-1,90,107,106,-1,91,92,108,-1,91,108,107,-1,92,93,109,-1,92,109,108,-1,93,94,110,-1,93,110,109,-1,94,95,111,-1,94,111,110,-1,95,98,111,-1};
			return value;
		}


		/** Define subarrays using type double[] */
		private double[] getCoordinate_6_800_point_1()
		{
			double[] value = {-7.80861,1.20176,-1.37424,-7.80861,1.20162,-1.37491,-7.80939,1.20301,-1.37548,-7.80938,1.20326,-1.37424,-7.80861,1.20162,-1.37356,-7.80862,1.20124,-1.37299,-7.80863,1.20067,-1.37261,-7.80863,1.2,-1.37248,-7.80864,1.19932,-1.37261,-7.80865,1.19875,-1.37299,-7.80865,1.19837,-1.37356,-7.80866,1.19824,-1.37424,-7.80865,1.19837,-1.37491,-7.80865,1.19875,-1.37548,-7.80864,1.19932,-1.37587,-7.80863,1.2,-1.376,-7.80863,1.20067,-1.37587,-7.80862,1.20124,-1.37548,-7.80939,1.20301,-1.37299,-7.80939,1.20231,-1.37654,-7.80941,1.20125,-1.37725,-7.80942,1.20001,-1.37749,-7.80944,1.19876,-1.37725,-7.80945,1.19771,-1.37654,-7.80946,1.197,-1.37548,-7.80946,1.19675,-1.37424,-7.80946,1.197,-1.37299,-7.80945,1.19771,-1.37194,-7.80944,1.19876,-1.37123,-7.80942,1.20001,-1.37098,-7.80941,1.20125,-1.37123,-7.80939,1.20231,-1.37194,-7.81655,1.20402,-1.37587,-7.81655,1.20435,-1.37424,-7.81655,1.20402,-1.37261,-7.81656,1.2031,-1.37725,-7.81658,1.20172,-1.37817,-7.8166,1.2001,-1.37849,-7.81662,1.19847,-1.37817,-7.81664,1.19709,-1.37725,-7.81665,1.19617,-1.37587,-7.81665,1.19585,-1.37424,-7.81665,1.19617,-1.37261,-7.81664,1.19709,-1.37123,-7.81662,1.19847,-1.37031,-7.8166,1.2001,-1.36999,-7.81658,1.20172,-1.37031,-7.81656,1.2031,-1.37123,-7.82501,1.20445,-1.376,-7.82501,1.2048,-1.37424,-7.82501,1.20445,-1.37248,-7.82502,1.20345,-1.37749,-7.82504,1.20196,-1.37849,-7.82507,1.2002,-1.37884,-7.82509,1.19844,-1.37849,-7.8251,1.19695,-1.37749,-7.82512,1.19595,-1.376,-7.82512,1.1956,-1.37424,-7.82512,1.19595,-1.37248,-7.8251,1.19695,-1.37098,-7.82509,1.19844,-1.36999,-7.82507,1.2002,-1.36964,-7.82504,1.20196,-1.36999,-7.82502,1.20345,-1.37098,-7.83348,1.20423,-1.37587,-7.83348,1.20456,-1.37424,-7.83348,1.20423,-1.37261,-7.83349,1.20331,-1.37725,-7.83351,1.20193,-1.37817,-7.83353,1.20031,-1.37849,-7.83355,1.19868,-1.37817,-7.83357,1.1973,-1.37725,-7.83358,1.19638,-1.37587,-7.83358,1.19605,-1.37424,-7.83358,1.19638,-1.37261,-7.83357,1.1973,-1.37123,-7.83355,1.19868,-1.37031,-7.83353,1.20031,-1.36999,-7.83351,1.20193,-1.37031,-7.83349,1.20331,-1.37123,-7.84067,1.2034,-1.37548,-7.84067,1.20365,-1.37424,-7.84067,1.2034,-1.37299,-7.84068,1.20269,-1.37654,-7.84069,1.20164,-1.37725,-7.84071,1.20039,-1.37749,-7.84072,1.19915,-1.37725,-7.84074,1.19809,-1.37654,-7.84074,1.19739,-1.37548,-7.84075,1.19714,-1.37424,-7.84074,1.19739,-1.37299,-7.84074,1.19809,-1.37194,-7.84072,1.19915,-1.37123,-7.84071,1.20039,-1.37098,-7.84069,1.20164,-1.37123,-7.84068,1.20269,-1.37194,-7.84548,1.20208,-1.37491,-7.84548,1.20221,-1.37424,-7.84548,1.20208,-1.37356,-7.84549,1.2017,-1.37548};
			return value;
		}
		private double[] getCoordinate_6_800_point_2()
		{
			double[] value = {-7.84549,1.20113,-1.37587,-7.8455,1.20045,-1.376,-7.84551,1.19978,-1.37587,-7.84552,1.19921,-1.37548,-7.84552,1.19883,-1.37491,-7.84552,1.19869,-1.37424,-7.84552,1.19883,-1.37356,-7.84552,1.19921,-1.37299,-7.84551,1.19978,-1.37261,-7.8455,1.20045,-1.37248,-7.84549,1.20113,-1.37261,-7.84549,1.2017,-1.37299};
			return value;
		}


		/** Define subarrays using type double[] */
		private double[] getNormal_6_801_vector_1()
		{
			double[] value = {0.995592,0.0937951,1.76949E-5,0.936805,0.311407,-0.159446,0.586104,0.739935,-0.330119,0.441935,0.897047,9.59115E-5,0.950617,0.285037,0.122803,0.959849,0.205932,0.190479,0.958978,0.115836,0.258733,0.957571,0.00765403,0.288095,0.956231,-0.104695,0.273244,0.954994,-0.201909,0.217299,0.954151,-0.270646,0.127856,0.953719,-0.300084,0.019229,0.953945,-0.285286,-0.0927435,0.954601,-0.22916,-0.190322,0.95581,-0.139767,-0.258637,0.957075,-0.0305199,-0.288229,0.958602,0.080142,-0.27324,0.959534,0.179122,-0.21728,0.713797,0.645818,0.270948,0.583682,0.557076,-0.590747,0.580634,0.287616,-0.76167,0.576822,-0.0262534,-0.816448,0.572827,-0.337136,-0.747133,0.569621,-0.598234,-0.563602,0.567336,-0.768824,-0.295026,0.566733,-0.823675,0.0193008,0.567467,-0.754441,0.329847,0.569981,-0.570831,0.590994,0.573227,-0.301998,0.761714,0.577114,0.0118064,0.816579,0.581138,0.323051,0.746938,0.584118,0.583715,0.563988,0.100944,0.918964,-0.381204,0.0858556,0.996308,6.48302E-5,0.117018,0.917411,0.380348,0.0982926,0.7029,-0.704465,0.0942906,0.379607,-0.92033,0.0895493,-0.0014165,-0.995981,0.0848679,-0.382297,-0.920134,0.0809166,-0.705579,-0.703997,0.0782654,-0.92135,-0.380773,0.0773542,-0.997004,4.25866E-4,0.078257,-0.921125,0.381319,0.0809073,-0.705179,0.704398,0.0849043,-0.381802,0.920336,0.089604,-7.97097E-4,0.995977,0.0942548,0.380067,0.920144,0.0982739,0.703209,0.704159,0.0113841,0.92384,-0.382609,-0.00150262,0.999999,4.07805E-5,0.025148,0.923522,0.38272,0.00871463,0.707048,-0.707112,0.00472037,0.382491,-0.923947,-4.90831E-7,-1.70388E-5,-1.0,-0.00471457,-0.382581,-0.92391,-0.00872648,-0.707042,-0.707118,-0.0113928,-0.923818,-0.382663,-0.0123076,-0.999924,7.05047E-5,-0.0113772,-0.923725,0.382886,-0.00874227,-0.707088,0.707072,-0.00473758,-0.382689,0.923865,3.86398E-6,-2.99085E-5,1.0,0.00475293,0.382751,0.923839,0.0086733,0.706906,0.707254,-0.0782562,0.92129,-0.38092,-0.0933331,0.995635,9.79937E-5,-0.0621575,0.922204,0.381675,-0.0809439,0.705693,-0.703879,-0.0848506,0.382428,-0.920081,-0.089554,0.0014179,-0.995981,-0.0942879,-0.379845,-0.920232,-0.0983136,-0.702756,-0.704605,-0.100927,-0.918866,-0.381444,-0.10188,-0.994797,-2.47903E-4,-0.100935,-0.918986,0.381151,-0.0982724,-0.703268,0.7041,-0.0942739,-0.38017,0.920099,-0.0896134,7.35781E-4,0.995976,-0.0848842,0.382047,0.920236,-0.0808732,0.705149,0.704432,-0.207039,0.904579,-0.372654,-0.232812,0.972522,1.45231E-4,-0.180239,0.909017,0.375769,-0.209616,0.693494,-0.689294,-0.21365,0.377393,-0.901071,-0.218223,0.00398621,-0.975891,-0.22281,-0.369652,-0.902061,-0.226627,-0.686674,-0.690738,-0.229371,-0.898298,-0.374766,-0.230308,-0.973117,-0.00105741,-0.229331,-0.899257,0.372483,-0.226703,-0.687951,0.689441,-0.222847,-0.371922,0.901118,-0.218161,0.00186782,0.975911,-0.213623,0.375022,0.902066,-0.209681,0.691851,0.690924,-0.285476,0.908099,-0.306364,-0.285376,0.958416,2.07622E-4,-0.286301,0.885588,0.365739,-0.287653,0.721797,-0.629495};
			return value;
		}
		private double[] getNormal_6_801_vector_2()
		{
			double[] value = {-0.291362,0.426711,-0.856169,-0.295915,0.0667911,-0.952876,-0.300512,-0.301963,-0.904716,-0.304297,-0.625582,-0.718367,-0.307069,-0.852554,-0.422918,-0.308431,-0.949152,-0.0630944,-0.307809,-0.900836,0.306183,-0.305445,-0.714661,0.629256,-0.30186,-0.419401,0.856144,-0.297411,-0.0593871,0.952901,-0.292811,0.310141,0.904474,-0.28886,0.632737,0.718473};
			return value;
		}


		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_806_coordIndex_1()
		{
			int[] value = {0,1,2,-1,0,2,3,-1,0,3,4,-1,0,4,5,-1,0,5,6,-1,0,6,7,-1,0,7,8,-1,0,8,9,-1,0,9,10,-1,0,10,11,-1,0,11,12,-1,0,12,13,-1,0,13,14,-1,0,14,15,-1,0,15,16,-1,0,16,17,-1,0,17,18,-1,0,18,19,-1,0,19,20,-1,0,20,21,-1,0,21,22,-1,0,22,23,-1,0,23,24,-1,0,25,26,-1,0,26,27,-1,0,27,28,-1,0,28,29,-1,0,29,30,-1,0,30,31,-1,0,31,32,-1,0,32,33,-1,0,33,1,-1,4,6,5,-1,4,7,6,-1,4,8,7,-1,4,39,83,-1,4,83,84,-1,4,84,85,-1,4,85,86,-1,4,86,8,-1,8,58,9,-1,8,67,58,-1,8,68,67,-1,8,69,68,-1,8,70,69,-1,8,73,70,-1,8,86,87,-1,8,87,88,-1,8,88,89,-1,8,89,73,-1,9,58,10,-1,10,58,11,-1,11,58,12,-1,12,58,66,-1,12,66,13,-1,13,66,96,-1,13,96,14,-1,14,40,15,-1,14,43,40,-1,14,57,43,-1,14,96,57,-1,15,40,16,-1,16,40,17,-1,17,40,18,-1,18,22,19,-1,18,40,56,-1,18,50,80,-1,18,51,50,-1,18,54,51,-1,18,55,54,-1,18,56,55,-1,18,76,22,-1,18,80,81,-1,18,81,82,-1,18,82,76,-1,19,22,20,-1,20,22,21,-1,22,76,77,-1,22,77,78,-1,22,78,79,-1,22,79,34,-1,25,36,39,-1,25,39,26,-1,26,39,27,-1,27,39,28,-1,28,39,29,-1,29,39,30,-1,30,39,31,-1,31,39,32,-1,32,39,33,-1,33,39,37,-1,34,39,35,-1,34,79,39,-1,35,39,36,-1,37,39,38,-1,39,57,96,-1,39,66,92,-1,39,76,95,-1,39,77,76,-1,39,78,77,-1,39,79,78,-1,39,84,83,-1,39,85,84,-1,39,86,85,-1,39,90,86,-1,39,91,90,-1,39,92,91,-1,39,93,57,-1,39,94,93,-1,39,95,94,-1,39,96,66,-1,40,42,41,-1,40,43,42,-1,40,51,54,-1,40,52,51,-1,40,53,52,-1,40,54,55,-1,40,55,56,-1,43,57,44,-1,44,46,45,-1,44,47,46,-1,44,48,47,-1,44,49,48,-1,44,50,49,-1,44,57,93,-1,44,76,82,-1,44,80,50,-1,44,81,80,-1,44,82,81,-1,44,93,94,-1,44,94,95,-1,44,95,76,-1,58,60,59,-1,58,61,60,-1,58,65,66,-1,58,67,68,-1,58,68,69,-1,58,69,70,-1,58,70,71,-1,58,71,72,-1,58,72,61,-1,62,64,63,-1,62,65,64,-1,62,66,65,-1,62,73,89,-1,62,74,73,-1,62,75,74,-1,62,86,90,-1,62,87,86,-1,62,88,87,-1,62,89,88,-1,62,90,91,-1,62,91,92,-1,62,92,66,-1,97,98,99,-1,97,99,100,-1,97,100,101,-1,97,101,102,-1,97,102,103,-1,97,103,104,-1,97,104,105,-1};
			return value;
		}


		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_806_normalIndex_1()
		{
			int[] value = {0,1,2,-1,0,2,3,-1,0,3,4,-1,0,4,5,-1,0,5,6,-1,0,6,7,-1,0,7,8,-1,0,8,9,-1,0,9,10,-1,0,10,11,-1,0,11,12,-1,0,12,13,-1,0,13,14,-1,0,14,15,-1,0,15,16,-1,0,16,17,-1,0,17,18,-1,0,18,19,-1,0,19,20,-1,0,20,21,-1,0,21,22,-1,0,22,23,-1,0,23,24,-1,0,25,26,-1,0,26,27,-1,0,27,28,-1,0,28,29,-1,0,29,30,-1,0,30,31,-1,0,31,32,-1,0,32,33,-1,0,33,1,-1,4,6,5,-1,4,7,6,-1,4,8,7,-1,4,39,83,-1,4,83,84,-1,4,84,85,-1,4,85,86,-1,4,86,8,-1,8,58,9,-1,8,67,58,-1,8,68,67,-1,8,69,68,-1,8,70,69,-1,8,73,70,-1,8,86,87,-1,8,87,88,-1,8,88,89,-1,8,89,73,-1,9,58,10,-1,10,58,11,-1,11,58,12,-1,12,58,66,-1,12,66,13,-1,13,66,96,-1,13,96,14,-1,14,40,15,-1,14,43,40,-1,14,57,43,-1,14,96,57,-1,15,40,16,-1,16,40,17,-1,17,40,18,-1,18,22,19,-1,18,40,56,-1,18,50,80,-1,18,51,50,-1,18,54,51,-1,18,55,54,-1,18,56,55,-1,18,76,22,-1,18,80,81,-1,18,81,82,-1,18,82,76,-1,19,22,20,-1,20,22,21,-1,22,76,77,-1,22,77,78,-1,22,78,79,-1,22,79,34,-1,25,36,39,-1,25,39,26,-1,26,39,27,-1,27,39,28,-1,28,39,29,-1,29,39,30,-1,30,39,31,-1,31,39,32,-1,32,39,33,-1,33,39,37,-1,34,39,35,-1,34,79,39,-1,35,39,36,-1,37,39,38,-1,39,57,96,-1,39,66,92,-1,39,76,95,-1,39,77,76,-1,39,78,77,-1,39,79,78,-1,39,84,83,-1,39,85,84,-1,39,86,85,-1,39,90,86,-1,39,91,90,-1,39,92,91,-1,39,93,57,-1,39,94,93,-1,39,95,94,-1,39,96,66,-1,40,42,41,-1,40,43,42,-1,40,51,54,-1,40,52,51,-1,40,53,52,-1,40,54,55,-1,40,55,56,-1,43,57,44,-1,44,46,45,-1,44,47,46,-1,44,48,47,-1,44,49,48,-1,44,50,49,-1,44,57,93,-1,44,76,82,-1,44,80,50,-1,44,81,80,-1,44,82,81,-1,44,93,94,-1,44,94,95,-1,44,95,76,-1,58,60,59,-1,58,61,60,-1,58,65,66,-1,58,67,68,-1,58,68,69,-1,58,69,70,-1,58,70,71,-1,58,71,72,-1,58,72,61,-1,62,64,63,-1,62,65,64,-1,62,66,65,-1,62,73,89,-1,62,74,73,-1,62,75,74,-1,62,86,90,-1,62,87,86,-1,62,88,87,-1,62,89,88,-1,62,90,91,-1,62,91,92,-1,62,92,66,-1,97,98,99,-1,97,99,100,-1,97,100,101,-1,97,101,102,-1,97,102,103,-1,97,103,104,-1,97,104,105,-1};
			return value;
		}


		/** Define subarrays using type double[] */
		private double[] getCoordinate_6_806_point_1()
		{
			double[] value = {-7.92243,1.07637,-1.47588,-7.80979,1.07637,-1.47588,-7.80169,1.07787,-1.47588,-7.79587,1.0843,-1.47588,-7.79572,1.09371,-1.47588,-7.79572,1.11105,-1.47588,-7.79572,1.12838,-1.47588,-7.79572,1.14572,-1.47588,-7.79572,1.16306,-1.47588,-7.80979,1.16306,-1.47588,-7.82387,1.16306,-1.47588,-7.83795,1.16306,-1.47588,-7.85203,1.16306,-1.47588,-7.86611,1.16306,-1.47588,-7.88019,1.16306,-1.47588,-7.89427,1.16306,-1.47588,-7.90835,1.16306,-1.47588,-7.92243,1.16306,-1.47588,-7.93651,1.16306,-1.47588,-7.93651,1.14572,-1.47588,-7.93651,1.12838,-1.47588,-7.93651,1.11105,-1.47588,-7.93651,1.09371,-1.47588,-7.93636,1.0843,-1.47588,-7.93054,1.07787,-1.47588,-7.92243,1.07637,-1.47969,-7.90835,1.07637,-1.47969,-7.89427,1.07637,-1.47969,-7.88019,1.07637,-1.47969,-7.86611,1.07637,-1.47969,-7.85203,1.07637,-1.47969,-7.83795,1.07637,-1.47969,-7.82387,1.07637,-1.47969,-7.80979,1.07637,-1.47969,-7.93651,1.09371,-1.47969,-7.93636,1.0843,-1.47969,-7.93054,1.07787,-1.47969,-7.80169,1.07787,-1.47969,-7.79587,1.0843,-1.47969,-7.79572,1.09371,-1.47969,-7.92243,1.24974,-1.47588,-7.90835,1.24974,-1.47588,-7.89427,1.24974,-1.47588,-7.88194,1.24533,-1.47588,-7.88194,1.24533,-1.47969,-7.89427,1.24974,-1.47969,-7.90835,1.24974,-1.47969,-7.92243,1.24974,-1.47969,-7.92908,1.24789,-1.47969,-7.93431,1.24481,-1.47969,-7.93651,1.23241,-1.47969,-7.93651,1.23241,-1.47588,-7.93431,1.24481,-1.47588,-7.92908,1.24789,-1.47588,-7.93651,1.21507,-1.47588,-7.93651,1.19773,-1.47588,-7.93651,1.18039,-1.47588,-7.88019,1.16306,-1.47969,-7.85029,1.24533,-1.47588,-7.83795,1.24974,-1.47588,-7.82387,1.24974,-1.47588,-7.80979,1.24974,-1.47588,-7.80979,1.24974,-1.47969,-7.82387,1.24974,-1.47969,-7.83795,1.24974,-1.47969,-7.85029,1.24533,-1.47969,-7.85203,1.16306,-1.47969,-7.79572,1.18039,-1.47588,-7.79572,1.19773,-1.47588,-7.79572,1.21507,-1.47588,-7.79572,1.23241,-1.47588,-7.79791,1.24481,-1.47588,-7.80315,1.24789,-1.47588,-7.79572,1.23241,-1.47969,-7.79791,1.24481,-1.47969,-7.80315,1.24789,-1.47969,-7.93651,1.16306,-1.47969,-7.93651,1.14572,-1.47969,-7.93651,1.12838,-1.47969,-7.93651,1.11105,-1.47969,-7.93651,1.21507,-1.47969,-7.93651,1.19773,-1.47969,-7.93651,1.18039,-1.47969,-7.79572,1.11105,-1.47969,-7.79572,1.12838,-1.47969,-7.79572,1.14572,-1.47969,-7.79572,1.16306,-1.47969,-7.79572,1.18039,-1.47969,-7.79572,1.19773,-1.47969,-7.79572,1.21507,-1.47969,-7.80979,1.16306,-1.47969,-7.82387,1.16306,-1.47969,-7.83795,1.16306,-1.47969,-7.89427,1.16306,-1.47969,-7.90835,1.16306,-1.47969,-7.92243,1.16306,-1.47969,-7.86611,1.16306,-1.47969,-7.92243,1.07637,-1.47588,-7.90835,1.07637,-1.47588,-7.89427,1.07637,-1.47588};
			return value;
		}
		private double[] getCoordinate_6_806_point_2()
		{
			double[] value = {-7.88019,1.07637,-1.47588,-7.86611,1.07637,-1.47588,-7.85203,1.07637,-1.47588,-7.83795,1.07637,-1.47588,-7.82387,1.07637,-1.47588,-7.80979,1.07637,-1.47588};
			return value;
		}


		/** Define subarrays using type double[] */
		private double[] getNormal_6_807_vector_1()
		{
			double[] value = {8.22102E-16,-0.364399,0.931243,0.0,-0.707107,0.707107,1.12976E-15,0.0,1.0,1.12976E-15,0.0,1.0,0.928477,0.0,0.371391,-1.57916E-15,0.0,1.0,-6.31709E-15,0.0,1.0,-6.31709E-15,0.0,1.0,0.83205,0.0,0.5547,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,-0.300864,0.307314,0.902795,0.0,0.83205,0.5547,0.217729,0.440176,0.871114,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,-0.83205,0.0,0.5547,5.68572E-14,0.0,1.0,5.68572E-14,0.0,1.0,0.0,0.0,1.0,-0.928477,0.0,0.371391,-3.99385E-14,0.0,1.0,-7.9877E-14,0.0,1.0,1.17408E-15,-0.447214,-0.894427,0.0,-0.707107,-0.707107,0.0,-0.707107,-0.707107,0.0,-0.707107,-0.707107,0.0,-0.707107,-0.707107,0.0,-0.707107,-0.707107,0.0,-0.707107,-0.707107,0.0,-0.707107,-0.707107,-2.56622E-15,-0.707107,-0.707107,-0.447214,0.0,-0.894427,-1.80868E-15,0.0,-1.0,-4.96026E-16,0.0,-1.0,2.86522E-14,0.0,-1.0,6.45628E-14,0.0,-1.0,0.0370117,0.0,-0.999315,5.02502E-16,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.706948,0.0149971,0.707107,0.0766792,0.00162666,-0.997054,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,-6.68862E-16,0.0,-1.0,-0.707107,0.0,-0.707107,-0.447214,0.0,0.894427,-2.54136E-14,0.0,1.0,0.0,0.0,1.0,2.84286E-14,0.0,1.0,2.84286E-14,0.0,1.0,0.0,0.0,1.0,0.53279,0.277758,-0.799365,-0.152023,0.00322499,0.988372,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.36819E-14,0.0,-1.0,0.0,0.0,0.0,0.0,0.0,-1.0,-0.447113,0.00948499,-0.894427,-0.406721,0.415441,-0.813626,0.0,0.0,1.0,0.0,0.0,1.0,-7.33413E-15,0.0,1.0,0.447214,0.0,0.894427,1.36777E-15,0.0,1.0,1.36777E-15,0.0,1.0,0.707107,0.0,-0.707107,8.07864E-14,0.0,-1.0,1.61573E-13,0.0,-1.0,-0.6,0.0,-0.8,-0.707107,0.0,-0.707107,-0.707107,0.0,-0.707107,-0.707107,0.0,-0.707107,-0.707107,0.0,-0.707107,-0.707107,0.0,-0.707107,-0.707107,0.0,-0.707107,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.707107,0.0,-0.707107,0.707107,0.0,-0.707107,0.707107,0.0,-0.707107,0.707107,0.0,-0.707107,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.83205,-0.5547,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0};
			return value;
		}
		private double[] getNormal_6_807_vector_2()
		{
			double[] value = {0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0};
			return value;
		}


		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_812_coordIndex_1()
		{
			int[] value = {0,1,2,-1,0,2,3,-1,0,3,4,-1,0,4,5,-1,0,5,6,-1,0,6,7,-1,0,7,10,-1,0,8,9,-1,0,9,1,-1,0,10,11,-1,0,11,12,-1,0,12,13,-1,0,13,14,-1,0,14,8,-1,1,9,15,-1,1,15,16,-1,1,16,17,-1,1,17,18,-1,1,18,19,-1,1,19,20,-1,1,20,23,-1,1,21,22,-1,1,22,2,-1,1,23,24,-1,1,24,25,-1,1,25,21,-1,2,22,31,-1,2,30,3,-1,2,31,30,-1,3,28,4,-1,3,29,28,-1,3,30,29,-1,4,27,5,-1,4,28,27,-1,5,27,6,-1,6,26,38,-1,6,27,26,-1,6,35,7,-1,6,38,39,-1,6,39,40,-1,6,40,41,-1,6,41,42,-1,6,42,35,-1,7,35,36,-1,7,36,37,-1,7,37,10,-1,8,14,26,-1,8,26,27,-1,8,27,28,-1,8,28,29,-1,8,29,9,-1,9,16,15,-1,9,17,16,-1,9,29,30,-1,9,30,31,-1,9,31,32,-1,9,32,33,-1,9,33,34,-1,9,34,17,-1,10,12,11,-1,10,13,12,-1,10,37,42,-1,10,38,13,-1,10,39,38,-1,10,40,39,-1,10,41,40,-1,10,42,41,-1,13,38,45,-1,13,45,46,-1,13,46,14,-1,14,43,26,-1,14,46,43,-1,17,34,65,-1,17,65,18,-1,18,51,19,-1,18,65,51,-1,19,51,20,-1,20,47,74,-1,20,51,47,-1,20,74,23,-1,21,25,56,-1,21,31,22,-1,21,32,31,-1,21,47,53,-1,21,53,32,-1,21,56,57,-1,21,57,58,-1,21,58,47,-1,23,25,24,-1,23,74,25,-1,25,74,56,-1,26,43,44,-1,26,44,45,-1,26,45,38,-1,32,53,54,-1,32,54,55,-1,32,55,33,-1,33,51,66,-1,33,59,34,-1,33,60,59,-1,33,61,60,-1,33,66,67,-1,33,67,68,-1,33,68,69,-1,33,69,70,-1,33,70,61,-1,34,59,65,-1,35,42,36,-1,36,42,37,-1,47,48,52,-1,47,51,48,-1,47,52,53,-1,47,58,83,-1,47,83,74,-1,48,49,52,-1,48,51,49,-1,49,50,52,-1,49,51,50,-1,50,51,52,-1,51,62,71,-1,51,63,62,-1,51,65,63,-1,51,71,72,-1,51,72,73,-1,51,73,66,-1,56,74,83,-1,56,84,85,-1,56,85,86,-1,56,86,87,-1,56,87,57,-1,57,87,58,-1,58,87,88,-1,59,60,61,-1,59,61,62,-1,59,62,63,-1,59,63,64,-1,59,64,65,-1,61,70,62,-1,62,70,71,-1,63,65,64,-1,66,73,81,-1,66,78,67,-1,66,81,78,-1,67,78,79,-1,67,79,80,-1,67,80,68,-1,68,80,69,-1,69,77,70,-1,69,80,77,-1,70,75,76,-1,70,76,71,-1,70,77,75,-1,71,76,82,-1,71,82,72,-1,72,82,73,-1,73,82,81,-1,75,77,82,-1,75,82,76,-1,77,80,82,-1,78,81,79,-1,79,81,80,-1,80,81,82,-1};
			return value;
		}


		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_812_normalIndex_1()
		{
			int[] value = {0,1,2,-1,0,2,3,-1,0,3,4,-1,0,4,5,-1,0,5,6,-1,0,6,7,-1,0,7,10,-1,0,8,9,-1,0,9,1,-1,0,10,11,-1,0,11,12,-1,0,12,13,-1,0,13,14,-1,0,14,8,-1,1,9,15,-1,1,15,16,-1,1,16,17,-1,1,17,18,-1,1,18,19,-1,1,19,20,-1,1,20,23,-1,1,21,22,-1,1,22,2,-1,1,23,24,-1,1,24,25,-1,1,25,21,-1,2,22,31,-1,2,30,3,-1,2,31,30,-1,3,28,4,-1,3,29,28,-1,3,30,29,-1,4,27,5,-1,4,28,27,-1,5,27,6,-1,6,26,38,-1,6,27,26,-1,6,35,7,-1,6,38,39,-1,6,39,40,-1,6,40,41,-1,6,41,42,-1,6,42,35,-1,7,35,36,-1,7,36,37,-1,7,37,10,-1,8,14,26,-1,8,26,27,-1,8,27,28,-1,8,28,29,-1,8,29,9,-1,9,16,15,-1,9,17,16,-1,9,29,30,-1,9,30,31,-1,9,31,32,-1,9,32,33,-1,9,33,34,-1,9,34,17,-1,10,12,11,-1,10,13,12,-1,10,37,42,-1,10,38,13,-1,10,39,38,-1,10,40,39,-1,10,41,40,-1,10,42,41,-1,13,38,45,-1,13,45,46,-1,13,46,14,-1,14,43,26,-1,14,46,43,-1,17,34,65,-1,17,65,18,-1,18,51,19,-1,18,65,51,-1,19,51,20,-1,20,47,74,-1,20,51,47,-1,20,74,23,-1,21,25,56,-1,21,31,22,-1,21,32,31,-1,21,47,53,-1,21,53,32,-1,21,56,57,-1,21,57,58,-1,21,58,47,-1,23,25,24,-1,23,74,25,-1,25,74,56,-1,26,43,44,-1,26,44,45,-1,26,45,38,-1,32,53,54,-1,32,54,55,-1,32,55,33,-1,33,51,66,-1,33,59,34,-1,33,60,59,-1,33,61,60,-1,33,66,67,-1,33,67,68,-1,33,68,69,-1,33,69,70,-1,33,70,61,-1,34,59,65,-1,35,42,36,-1,36,42,37,-1,47,48,52,-1,47,51,48,-1,47,52,53,-1,47,58,83,-1,47,83,74,-1,48,49,52,-1,48,51,49,-1,49,50,52,-1,49,51,50,-1,50,51,52,-1,51,62,71,-1,51,63,62,-1,51,65,63,-1,51,71,72,-1,51,72,73,-1,51,73,66,-1,56,74,83,-1,56,84,85,-1,56,85,86,-1,56,86,87,-1,56,87,57,-1,57,87,58,-1,58,87,88,-1,59,60,61,-1,59,61,62,-1,59,62,63,-1,59,63,64,-1,59,64,65,-1,61,70,62,-1,62,70,71,-1,63,65,64,-1,66,73,81,-1,66,78,67,-1,66,81,78,-1,67,78,79,-1,67,79,80,-1,67,80,68,-1,68,80,69,-1,69,77,70,-1,69,80,77,-1,70,75,76,-1,70,76,71,-1,70,77,75,-1,71,76,82,-1,71,82,72,-1,72,82,73,-1,73,82,81,-1,75,77,82,-1,75,82,76,-1,77,80,82,-1,78,81,79,-1,79,81,80,-1,80,81,82,-1};
			return value;
		}




		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_818_coordIndex_1()
		{
			int[] value = {0,1,2,-1,0,2,3,-1,0,3,4,-1,0,4,5,-1,0,5,6,-1,0,6,7,-1,0,7,8,-1,0,8,9,-1,0,9,10,-1,0,10,38,-1,0,11,12,-1,0,12,13,-1,0,13,14,-1,0,14,15,-1,0,15,16,-1,0,16,17,-1,0,17,18,-1,0,18,19,-1,0,19,20,-1,0,20,21,-1,0,21,22,-1,0,22,23,-1,0,23,24,-1,0,24,25,-1,0,25,26,-1,0,26,27,-1,0,27,28,-1,0,28,29,-1,0,29,30,-1,0,30,31,-1,0,31,32,-1,0,32,33,-1,0,33,34,-1,0,34,35,-1,0,35,36,-1,0,36,37,-1,0,37,1,-1,0,38,11,-1,1,37,39,-1,1,39,2,-1,2,10,3,-1,2,39,10,-1,3,10,4,-1,4,10,5,-1,5,10,6,-1,6,10,7,-1,7,10,8,-1,8,10,9,-1,10,39,49,-1,10,40,38,-1,10,41,40,-1,10,42,41,-1,10,43,42,-1,10,44,43,-1,10,45,44,-1,10,46,45,-1,10,47,46,-1,10,48,47,-1,10,49,50,-1,10,50,51,-1,10,51,52,-1,10,52,53,-1,10,53,54,-1,10,54,55,-1,10,55,56,-1,10,56,57,-1,10,57,58,-1,10,58,59,-1,10,59,60,-1,10,60,61,-1,10,61,62,-1,10,62,63,-1,10,63,64,-1,10,64,48,-1,11,13,12,-1,11,14,13,-1,11,15,14,-1,11,16,15,-1,11,17,16,-1,11,18,17,-1,11,19,18,-1,11,38,40,-1,11,40,41,-1,11,41,42,-1,11,42,43,-1,11,43,44,-1,11,44,45,-1,11,45,46,-1,11,46,47,-1,11,47,19,-1,19,47,48,-1,19,48,20,-1,20,22,21,-1,20,23,22,-1,20,24,23,-1,20,25,24,-1,20,26,25,-1,20,27,26,-1,20,28,27,-1,20,48,64,-1,20,57,28,-1,20,58,57,-1,20,59,58,-1,20,60,59,-1,20,61,60,-1,20,62,61,-1,20,63,62,-1,20,64,63,-1,28,56,29,-1,28,57,56,-1,29,39,30,-1,29,56,39,-1,30,39,31,-1,31,39,32,-1,32,39,33,-1,33,39,34,-1,34,39,35,-1,35,39,36,-1,36,39,37,-1,39,50,49,-1,39,51,50,-1,39,52,51,-1,39,53,52,-1,39,54,53,-1,39,55,54,-1,39,56,55,-1,65,66,67,-1,65,67,68,-1,65,68,69,-1,65,69,70,-1,65,70,71,-1,65,71,72,-1,65,72,73,-1};
			return value;
		}


		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_818_normalIndex_1()
		{
			int[] value = {0,1,2,-1,0,2,3,-1,0,3,4,-1,0,4,5,-1,0,5,6,-1,0,6,7,-1,0,7,8,-1,0,8,9,-1,0,9,10,-1,0,10,38,-1,0,11,12,-1,0,12,13,-1,0,13,14,-1,0,14,15,-1,0,15,16,-1,0,16,17,-1,0,17,18,-1,0,18,19,-1,0,19,20,-1,0,20,21,-1,0,21,22,-1,0,22,23,-1,0,23,24,-1,0,24,25,-1,0,25,26,-1,0,26,27,-1,0,27,28,-1,0,28,29,-1,0,29,30,-1,0,30,31,-1,0,31,32,-1,0,32,33,-1,0,33,34,-1,0,34,35,-1,0,35,36,-1,0,36,37,-1,0,37,1,-1,0,38,11,-1,1,37,39,-1,1,39,2,-1,2,10,3,-1,2,39,10,-1,3,10,4,-1,4,10,5,-1,5,10,6,-1,6,10,7,-1,7,10,8,-1,8,10,9,-1,10,39,49,-1,10,40,38,-1,10,41,40,-1,10,42,41,-1,10,43,42,-1,10,44,43,-1,10,45,44,-1,10,46,45,-1,10,47,46,-1,10,48,47,-1,10,49,50,-1,10,50,51,-1,10,51,52,-1,10,52,53,-1,10,53,54,-1,10,54,55,-1,10,55,56,-1,10,56,57,-1,10,57,58,-1,10,58,59,-1,10,59,60,-1,10,60,61,-1,10,61,62,-1,10,62,63,-1,10,63,64,-1,10,64,48,-1,11,13,12,-1,11,14,13,-1,11,15,14,-1,11,16,15,-1,11,17,16,-1,11,18,17,-1,11,19,18,-1,11,38,40,-1,11,40,41,-1,11,41,42,-1,11,42,43,-1,11,43,44,-1,11,44,45,-1,11,45,46,-1,11,46,47,-1,11,47,19,-1,19,47,48,-1,19,48,20,-1,20,22,21,-1,20,23,22,-1,20,24,23,-1,20,25,24,-1,20,26,25,-1,20,27,26,-1,20,28,27,-1,20,48,64,-1,20,57,28,-1,20,58,57,-1,20,59,58,-1,20,60,59,-1,20,61,60,-1,20,62,61,-1,20,63,62,-1,20,64,63,-1,28,56,29,-1,28,57,56,-1,29,39,30,-1,29,56,39,-1,30,39,31,-1,31,39,32,-1,32,39,33,-1,33,39,34,-1,34,39,35,-1,35,39,36,-1,36,39,37,-1,39,50,49,-1,39,51,50,-1,39,52,51,-1,39,53,52,-1,39,54,53,-1,39,55,54,-1,39,56,55,-1,65,66,67,-1,65,67,68,-1,65,68,69,-1,65,69,70,-1,65,70,71,-1,65,71,72,-1,65,72,73,-1};
			return value;
		}




		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_824_coordIndex_1()
		{
			int[] value = {0,1,2,-1,0,2,3,-1,0,3,4,-1,0,4,5,-1,0,5,6,-1,0,6,7,-1,0,7,8,-1,0,8,9,-1,0,9,10,-1,0,10,38,-1,0,11,12,-1,0,12,13,-1,0,13,14,-1,0,14,15,-1,0,15,16,-1,0,16,17,-1,0,17,18,-1,0,18,19,-1,0,19,20,-1,0,20,21,-1,0,21,22,-1,0,22,23,-1,0,23,24,-1,0,24,25,-1,0,25,26,-1,0,26,27,-1,0,27,28,-1,0,28,29,-1,0,29,30,-1,0,30,31,-1,0,31,32,-1,0,32,33,-1,0,33,34,-1,0,34,35,-1,0,35,36,-1,0,36,37,-1,0,37,1,-1,0,38,11,-1,1,37,39,-1,1,39,2,-1,2,10,3,-1,2,39,10,-1,3,10,4,-1,4,10,5,-1,5,10,6,-1,6,10,7,-1,7,10,8,-1,8,10,9,-1,10,39,49,-1,10,40,38,-1,10,41,40,-1,10,42,41,-1,10,43,42,-1,10,44,43,-1,10,45,44,-1,10,46,45,-1,10,47,46,-1,10,48,47,-1,10,49,50,-1,10,50,51,-1,10,51,52,-1,10,52,53,-1,10,53,54,-1,10,54,55,-1,10,55,56,-1,10,56,57,-1,10,57,58,-1,10,58,59,-1,10,59,60,-1,10,60,61,-1,10,61,62,-1,10,62,63,-1,10,63,64,-1,10,64,48,-1,11,13,12,-1,11,14,13,-1,11,15,14,-1,11,16,15,-1,11,17,16,-1,11,18,17,-1,11,19,18,-1,11,38,40,-1,11,40,41,-1,11,41,42,-1,11,42,43,-1,11,43,44,-1,11,44,45,-1,11,45,46,-1,11,46,47,-1,11,47,19,-1,19,47,48,-1,19,48,20,-1,20,22,21,-1,20,23,22,-1,20,24,23,-1,20,25,24,-1,20,26,25,-1,20,27,26,-1,20,28,27,-1,20,48,64,-1,20,57,28,-1,20,58,57,-1,20,59,58,-1,20,60,59,-1,20,61,60,-1,20,62,61,-1,20,63,62,-1,20,64,63,-1,28,56,29,-1,28,57,56,-1,29,39,30,-1,29,56,39,-1,30,39,31,-1,31,39,32,-1,32,39,33,-1,33,39,34,-1,34,39,35,-1,35,39,36,-1,36,39,37,-1,39,50,49,-1,39,51,50,-1,39,52,51,-1,39,53,52,-1,39,54,53,-1,39,55,54,-1,39,56,55,-1,65,66,67,-1,65,67,68,-1,65,68,69,-1,65,69,70,-1,65,70,71,-1,65,71,72,-1,65,72,73,-1};
			return value;
		}


		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_824_normalIndex_1()
		{
			int[] value = {0,1,2,-1,0,2,3,-1,0,3,4,-1,0,4,5,-1,0,5,6,-1,0,6,7,-1,0,7,8,-1,0,8,9,-1,0,9,10,-1,0,10,38,-1,0,11,12,-1,0,12,13,-1,0,13,14,-1,0,14,15,-1,0,15,16,-1,0,16,17,-1,0,17,18,-1,0,18,19,-1,0,19,20,-1,0,20,21,-1,0,21,22,-1,0,22,23,-1,0,23,24,-1,0,24,25,-1,0,25,26,-1,0,26,27,-1,0,27,28,-1,0,28,29,-1,0,29,30,-1,0,30,31,-1,0,31,32,-1,0,32,33,-1,0,33,34,-1,0,34,35,-1,0,35,36,-1,0,36,37,-1,0,37,1,-1,0,38,11,-1,1,37,39,-1,1,39,2,-1,2,10,3,-1,2,39,10,-1,3,10,4,-1,4,10,5,-1,5,10,6,-1,6,10,7,-1,7,10,8,-1,8,10,9,-1,10,39,49,-1,10,40,38,-1,10,41,40,-1,10,42,41,-1,10,43,42,-1,10,44,43,-1,10,45,44,-1,10,46,45,-1,10,47,46,-1,10,48,47,-1,10,49,50,-1,10,50,51,-1,10,51,52,-1,10,52,53,-1,10,53,54,-1,10,54,55,-1,10,55,56,-1,10,56,57,-1,10,57,58,-1,10,58,59,-1,10,59,60,-1,10,60,61,-1,10,61,62,-1,10,62,63,-1,10,63,64,-1,10,64,48,-1,11,13,12,-1,11,14,13,-1,11,15,14,-1,11,16,15,-1,11,17,16,-1,11,18,17,-1,11,19,18,-1,11,38,40,-1,11,40,41,-1,11,41,42,-1,11,42,43,-1,11,43,44,-1,11,44,45,-1,11,45,46,-1,11,46,47,-1,11,47,19,-1,19,47,48,-1,19,48,20,-1,20,22,21,-1,20,23,22,-1,20,24,23,-1,20,25,24,-1,20,26,25,-1,20,27,26,-1,20,28,27,-1,20,48,64,-1,20,57,28,-1,20,58,57,-1,20,59,58,-1,20,60,59,-1,20,61,60,-1,20,62,61,-1,20,63,62,-1,20,64,63,-1,28,56,29,-1,28,57,56,-1,29,39,30,-1,29,56,39,-1,30,39,31,-1,31,39,32,-1,32,39,33,-1,33,39,34,-1,34,39,35,-1,35,39,36,-1,36,39,37,-1,39,50,49,-1,39,51,50,-1,39,52,51,-1,39,53,52,-1,39,54,53,-1,39,55,54,-1,39,56,55,-1,65,66,67,-1,65,67,68,-1,65,68,69,-1,65,69,70,-1,65,70,71,-1,65,71,72,-1,65,72,73,-1};
			return value;
		}




		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_830_coordIndex_1()
		{
			int[] value = {0,1,2,-1,0,2,3,-1,0,3,7,-1,0,4,5,-1,0,5,6,-1,0,6,8,-1,0,7,4,-1,0,8,1,-1,1,8,11,-1,1,9,10,-1,1,10,2,-1,1,11,9,-1,2,10,3,-1,3,10,13,-1,3,13,16,-1,3,16,19,-1,3,19,22,-1,3,22,25,-1,3,25,28,-1,3,28,31,-1,3,31,34,-1,3,34,37,-1,3,37,40,-1,3,40,43,-1,3,43,46,-1,3,46,7,-1,4,7,45,-1,4,45,5,-1,5,45,47,-1,5,47,52,-1,5,51,6,-1,5,52,51,-1,6,48,8,-1,6,51,48,-1,7,46,45,-1,8,48,49,-1,8,49,50,-1,8,50,11,-1,9,11,14,-1,9,12,13,-1,9,13,10,-1,9,14,12,-1,11,50,14,-1,12,14,17,-1,12,15,16,-1,12,16,13,-1,12,17,15,-1,14,50,63,-1,14,63,17,-1,15,17,20,-1,15,18,19,-1,15,19,16,-1,15,20,18,-1,17,62,20,-1,17,63,62,-1,18,20,23,-1,18,21,22,-1,18,22,19,-1,18,23,21,-1,20,61,23,-1,20,62,61,-1,21,23,26,-1,21,24,25,-1,21,25,22,-1,21,26,24,-1,23,60,26,-1,23,61,60,-1,24,26,29,-1,24,27,28,-1,24,28,25,-1,24,29,27,-1,26,59,29,-1,26,60,59,-1,27,29,32,-1,27,30,31,-1,27,31,28,-1,27,32,30,-1,29,58,32,-1,29,59,58,-1,30,32,35,-1,30,33,34,-1,30,34,31,-1,30,35,33,-1,32,57,35,-1,32,58,57,-1,33,35,38,-1,33,36,37,-1,33,37,34,-1,33,38,36,-1,35,56,38,-1,35,57,56,-1,36,38,41,-1,36,39,40,-1,36,40,37,-1,36,41,39,-1,38,55,41,-1,38,56,55,-1,39,41,44,-1,39,42,43,-1,39,43,40,-1,39,44,42,-1,41,54,44,-1,41,55,54,-1,42,44,47,-1,42,45,46,-1,42,46,43,-1,42,47,45,-1,44,53,47,-1,44,54,53,-1,47,53,52,-1,48,51,49,-1,49,51,52,-1,49,52,53,-1,49,53,54,-1,49,54,55,-1,49,55,56,-1,49,56,57,-1,49,57,58,-1,49,58,59,-1,49,59,60,-1,49,60,61,-1,49,61,62,-1,49,62,63,-1,49,63,50,-1};
			return value;
		}


		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_830_normalIndex_1()
		{
			int[] value = {0,1,2,-1,0,2,3,-1,0,3,7,-1,0,4,5,-1,0,5,6,-1,0,6,8,-1,0,7,4,-1,0,8,1,-1,1,8,11,-1,1,9,10,-1,1,10,2,-1,1,11,9,-1,2,10,3,-1,3,10,13,-1,3,13,16,-1,3,16,19,-1,3,19,22,-1,3,22,25,-1,3,25,28,-1,3,28,31,-1,3,31,34,-1,3,34,37,-1,3,37,40,-1,3,40,43,-1,3,43,46,-1,3,46,7,-1,4,7,45,-1,4,45,5,-1,5,45,47,-1,5,47,52,-1,5,51,6,-1,5,52,51,-1,6,48,8,-1,6,51,48,-1,7,46,45,-1,8,48,49,-1,8,49,50,-1,8,50,11,-1,9,11,14,-1,9,12,13,-1,9,13,10,-1,9,14,12,-1,11,50,14,-1,12,14,17,-1,12,15,16,-1,12,16,13,-1,12,17,15,-1,14,50,63,-1,14,63,17,-1,15,17,20,-1,15,18,19,-1,15,19,16,-1,15,20,18,-1,17,62,20,-1,17,63,62,-1,18,20,23,-1,18,21,22,-1,18,22,19,-1,18,23,21,-1,20,61,23,-1,20,62,61,-1,21,23,26,-1,21,24,25,-1,21,25,22,-1,21,26,24,-1,23,60,26,-1,23,61,60,-1,24,26,29,-1,24,27,28,-1,24,28,25,-1,24,29,27,-1,26,59,29,-1,26,60,59,-1,27,29,32,-1,27,30,31,-1,27,31,28,-1,27,32,30,-1,29,58,32,-1,29,59,58,-1,30,32,35,-1,30,33,34,-1,30,34,31,-1,30,35,33,-1,32,57,35,-1,32,58,57,-1,33,35,38,-1,33,36,37,-1,33,37,34,-1,33,38,36,-1,35,56,38,-1,35,57,56,-1,36,38,41,-1,36,39,40,-1,36,40,37,-1,36,41,39,-1,38,55,41,-1,38,56,55,-1,39,41,44,-1,39,42,43,-1,39,43,40,-1,39,44,42,-1,41,54,44,-1,41,55,54,-1,42,44,47,-1,42,45,46,-1,42,46,43,-1,42,47,45,-1,44,53,47,-1,44,54,53,-1,47,53,52,-1,48,51,49,-1,49,51,52,-1,49,52,53,-1,49,53,54,-1,49,54,55,-1,49,55,56,-1,49,56,57,-1,49,57,58,-1,49,58,59,-1,49,59,60,-1,49,60,61,-1,49,61,62,-1,49,62,63,-1,49,63,50,-1};
			return value;
		}




		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_836_coordIndex_1()
		{
			int[] value = {0,1,2,-1,0,2,3,-1,0,3,7,-1,0,4,5,-1,0,5,6,-1,0,6,8,-1,0,7,4,-1,0,8,1,-1,1,8,9,-1,1,9,10,-1,2,45,3,-1,3,18,22,-1,3,19,18,-1,3,22,25,-1,3,25,28,-1,3,28,31,-1,3,31,34,-1,3,34,37,-1,3,37,40,-1,3,40,43,-1,3,43,7,-1,3,45,46,-1,3,46,47,-1,3,47,19,-1,4,7,42,-1,4,42,5,-1,5,42,44,-1,5,44,52,-1,5,51,6,-1,5,52,51,-1,6,48,8,-1,6,51,48,-1,7,43,42,-1,8,48,49,-1,8,49,50,-1,8,50,9,-1,9,11,10,-1,9,50,11,-1,10,11,12,-1,11,13,12,-1,11,50,63,-1,11,63,13,-1,12,13,14,-1,13,15,14,-1,13,62,15,-1,13,63,62,-1,14,15,16,-1,15,20,16,-1,15,61,20,-1,15,62,61,-1,16,17,18,-1,16,18,19,-1,16,20,17,-1,17,20,23,-1,17,21,22,-1,17,22,18,-1,17,23,21,-1,20,60,23,-1,20,61,60,-1,21,23,26,-1,21,24,25,-1,21,25,22,-1,21,26,24,-1,23,59,26,-1,23,60,59,-1,24,26,29,-1,24,27,28,-1,24,28,25,-1,24,29,27,-1,26,58,29,-1,26,59,58,-1,27,29,32,-1,27,30,31,-1,27,31,28,-1,27,32,30,-1,29,57,32,-1,29,58,57,-1,30,32,35,-1,30,33,34,-1,30,34,31,-1,30,35,33,-1,32,56,35,-1,32,57,56,-1,33,35,38,-1,33,36,37,-1,33,37,34,-1,33,38,36,-1,35,55,38,-1,35,56,55,-1,36,38,41,-1,36,39,40,-1,36,40,37,-1,36,41,39,-1,38,54,41,-1,38,55,54,-1,39,41,44,-1,39,42,43,-1,39,43,40,-1,39,44,42,-1,41,53,44,-1,41,54,53,-1,44,53,52,-1,48,51,49,-1,49,51,52,-1,49,52,53,-1,49,53,54,-1,49,54,55,-1,49,55,56,-1,49,56,57,-1,49,57,58,-1,49,58,59,-1,49,59,60,-1,49,60,61,-1,49,61,62,-1,49,62,63,-1,49,63,50,-1};
			return value;
		}


		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_836_normalIndex_1()
		{
			int[] value = {0,1,2,-1,0,2,3,-1,0,3,7,-1,0,4,5,-1,0,5,6,-1,0,6,8,-1,0,7,4,-1,0,8,1,-1,1,8,9,-1,1,9,10,-1,2,45,3,-1,3,18,22,-1,3,19,18,-1,3,22,25,-1,3,25,28,-1,3,28,31,-1,3,31,34,-1,3,34,37,-1,3,37,40,-1,3,40,43,-1,3,43,7,-1,3,45,46,-1,3,46,47,-1,3,47,19,-1,4,7,42,-1,4,42,5,-1,5,42,44,-1,5,44,52,-1,5,51,6,-1,5,52,51,-1,6,48,8,-1,6,51,48,-1,7,43,42,-1,8,48,49,-1,8,49,50,-1,8,50,9,-1,9,11,10,-1,9,50,11,-1,10,11,12,-1,11,13,12,-1,11,50,63,-1,11,63,13,-1,12,13,14,-1,13,15,14,-1,13,62,15,-1,13,63,62,-1,14,15,16,-1,15,20,16,-1,15,61,20,-1,15,62,61,-1,16,17,18,-1,16,18,19,-1,16,20,17,-1,17,20,23,-1,17,21,22,-1,17,22,18,-1,17,23,21,-1,20,60,23,-1,20,61,60,-1,21,23,26,-1,21,24,25,-1,21,25,22,-1,21,26,24,-1,23,59,26,-1,23,60,59,-1,24,26,29,-1,24,27,28,-1,24,28,25,-1,24,29,27,-1,26,58,29,-1,26,59,58,-1,27,29,32,-1,27,30,31,-1,27,31,28,-1,27,32,30,-1,29,57,32,-1,29,58,57,-1,30,32,35,-1,30,33,34,-1,30,34,31,-1,30,35,33,-1,32,56,35,-1,32,57,56,-1,33,35,38,-1,33,36,37,-1,33,37,34,-1,33,38,36,-1,35,55,38,-1,35,56,55,-1,36,38,41,-1,36,39,40,-1,36,40,37,-1,36,41,39,-1,38,54,41,-1,38,55,54,-1,39,41,44,-1,39,42,43,-1,39,43,40,-1,39,44,42,-1,41,53,44,-1,41,54,53,-1,44,53,52,-1,48,51,49,-1,49,51,52,-1,49,52,53,-1,49,53,54,-1,49,54,55,-1,49,55,56,-1,49,56,57,-1,49,57,58,-1,49,58,59,-1,49,59,60,-1,49,60,61,-1,49,61,62,-1,49,62,63,-1,49,63,50,-1};
			return value;
		}




		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_842_coordIndex_1()
		{
			int[] value = {0,1,2,-1,0,2,3,-1,0,3,4,-1,0,4,5,-1,1,43,2,-1,2,42,52,-1,2,43,42,-1,2,51,3,-1,2,52,51,-1,3,48,4,-1,3,51,48,-1,4,9,5,-1,4,48,49,-1,4,49,50,-1,4,50,9,-1,5,6,7,-1,5,7,8,-1,5,9,6,-1,6,9,12,-1,6,10,11,-1,6,11,7,-1,6,12,10,-1,7,11,44,-1,7,44,8,-1,9,50,12,-1,10,12,15,-1,10,13,14,-1,10,14,11,-1,10,15,13,-1,11,14,44,-1,12,50,63,-1,12,63,15,-1,13,15,18,-1,13,16,17,-1,13,17,14,-1,13,18,16,-1,14,17,44,-1,15,62,18,-1,15,63,62,-1,16,18,21,-1,16,19,20,-1,16,20,17,-1,16,21,19,-1,17,20,44,-1,18,61,21,-1,18,62,61,-1,19,21,24,-1,19,22,23,-1,19,23,20,-1,19,24,22,-1,20,23,44,-1,21,60,24,-1,21,61,60,-1,22,24,27,-1,22,25,26,-1,22,26,23,-1,22,27,25,-1,23,26,44,-1,24,59,27,-1,24,60,59,-1,25,27,30,-1,25,28,29,-1,25,29,26,-1,25,30,28,-1,26,29,44,-1,27,58,30,-1,27,59,58,-1,28,30,33,-1,28,31,32,-1,28,32,29,-1,28,33,31,-1,29,32,44,-1,30,57,33,-1,30,58,57,-1,31,33,36,-1,31,34,35,-1,31,35,32,-1,31,36,34,-1,32,35,44,-1,33,56,36,-1,33,57,56,-1,34,36,39,-1,34,37,38,-1,34,38,35,-1,34,39,37,-1,35,38,44,-1,36,55,39,-1,36,56,55,-1,37,39,40,-1,37,40,41,-1,38,45,44,-1,39,54,40,-1,39,55,54,-1,40,42,41,-1,40,53,42,-1,40,54,53,-1,41,42,43,-1,42,53,52,-1,44,45,46,-1,44,46,47,-1,48,51,49,-1,49,51,52,-1,49,52,53,-1,49,53,54,-1,49,54,55,-1,49,55,56,-1,49,56,57,-1,49,57,58,-1,49,58,59,-1,49,59,60,-1,49,60,61,-1,49,61,62,-1,49,62,63,-1,49,63,50,-1};
			return value;
		}


		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_842_normalIndex_1()
		{
			int[] value = {0,1,2,-1,0,2,3,-1,0,3,4,-1,0,4,5,-1,1,43,2,-1,2,42,52,-1,2,43,42,-1,2,51,3,-1,2,52,51,-1,3,48,4,-1,3,51,48,-1,4,9,5,-1,4,48,49,-1,4,49,50,-1,4,50,9,-1,5,6,7,-1,5,7,8,-1,5,9,6,-1,6,9,12,-1,6,10,11,-1,6,11,7,-1,6,12,10,-1,7,11,44,-1,7,44,8,-1,9,50,12,-1,10,12,15,-1,10,13,14,-1,10,14,11,-1,10,15,13,-1,11,14,44,-1,12,50,63,-1,12,63,15,-1,13,15,18,-1,13,16,17,-1,13,17,14,-1,13,18,16,-1,14,17,44,-1,15,62,18,-1,15,63,62,-1,16,18,21,-1,16,19,20,-1,16,20,17,-1,16,21,19,-1,17,20,44,-1,18,61,21,-1,18,62,61,-1,19,21,24,-1,19,22,23,-1,19,23,20,-1,19,24,22,-1,20,23,44,-1,21,60,24,-1,21,61,60,-1,22,24,27,-1,22,25,26,-1,22,26,23,-1,22,27,25,-1,23,26,44,-1,24,59,27,-1,24,60,59,-1,25,27,30,-1,25,28,29,-1,25,29,26,-1,25,30,28,-1,26,29,44,-1,27,58,30,-1,27,59,58,-1,28,30,33,-1,28,31,32,-1,28,32,29,-1,28,33,31,-1,29,32,44,-1,30,57,33,-1,30,58,57,-1,31,33,36,-1,31,34,35,-1,31,35,32,-1,31,36,34,-1,32,35,44,-1,33,56,36,-1,33,57,56,-1,34,36,39,-1,34,37,38,-1,34,38,35,-1,34,39,37,-1,35,38,44,-1,36,55,39,-1,36,56,55,-1,37,39,40,-1,37,40,41,-1,38,45,44,-1,39,54,40,-1,39,55,54,-1,40,42,41,-1,40,53,42,-1,40,54,53,-1,41,42,43,-1,42,53,52,-1,44,45,46,-1,44,46,47,-1,48,51,49,-1,49,51,52,-1,49,52,53,-1,49,53,54,-1,49,54,55,-1,49,55,56,-1,49,56,57,-1,49,57,58,-1,49,58,59,-1,49,59,60,-1,49,60,61,-1,49,61,62,-1,49,62,63,-1,49,63,50,-1};
			return value;
		}




		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_848_coordIndex_1()
		{
			int[] value = {0,1,2,-1,0,2,3,-1,0,3,18,-1,0,4,5,-1,0,5,6,-1,0,6,7,-1,0,7,8,-1,0,8,9,-1,0,9,10,-1,0,10,11,-1,0,11,12,-1,0,12,13,-1,0,13,14,-1,0,14,15,-1,0,15,16,-1,0,16,17,-1,0,17,1,-1,0,18,4,-1,1,17,19,-1,1,19,2,-1,2,19,3,-1,3,19,20,-1,3,20,21,-1,3,21,22,-1,3,22,23,-1,3,23,24,-1,3,24,25,-1,3,25,26,-1,3,26,36,-1,3,36,48,-1,3,38,18,-1,3,39,38,-1,3,48,49,-1,3,49,39,-1,4,18,5,-1,5,18,38,-1,5,37,6,-1,5,38,40,-1,5,40,42,-1,5,42,44,-1,5,44,46,-1,5,46,37,-1,6,9,7,-1,6,37,9,-1,7,9,8,-1,9,27,10,-1,9,37,27,-1,10,26,11,-1,10,27,29,-1,10,29,31,-1,10,31,33,-1,10,33,35,-1,10,35,36,-1,10,36,26,-1,11,25,12,-1,11,26,25,-1,12,24,13,-1,12,25,24,-1,13,23,14,-1,13,24,23,-1,14,22,15,-1,14,23,22,-1,15,21,16,-1,15,22,21,-1,16,20,17,-1,16,21,20,-1,17,20,19,-1,27,28,29,-1,27,37,47,-1,27,47,28,-1,28,46,29,-1,28,47,46,-1,29,30,31,-1,29,45,30,-1,29,46,45,-1,30,44,31,-1,30,45,44,-1,31,32,33,-1,31,43,32,-1,31,44,43,-1,32,42,33,-1,32,43,42,-1,33,34,35,-1,33,41,34,-1,33,42,41,-1,34,40,35,-1,34,41,40,-1,35,40,36,-1,36,39,49,-1,36,40,39,-1,36,49,48,-1,37,46,47,-1,38,39,40,-1,40,41,42,-1,42,43,44,-1,44,45,46,-1};
			return value;
		}


		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_848_normalIndex_1()
		{
			int[] value = {0,1,2,-1,0,2,3,-1,0,3,18,-1,0,4,5,-1,0,5,6,-1,0,6,7,-1,0,7,8,-1,0,8,9,-1,0,9,10,-1,0,10,11,-1,0,11,12,-1,0,12,13,-1,0,13,14,-1,0,14,15,-1,0,15,16,-1,0,16,17,-1,0,17,1,-1,0,18,4,-1,1,17,19,-1,1,19,2,-1,2,19,3,-1,3,19,20,-1,3,20,21,-1,3,21,22,-1,3,22,23,-1,3,23,24,-1,3,24,25,-1,3,25,26,-1,3,26,36,-1,3,36,48,-1,3,38,18,-1,3,39,38,-1,3,48,49,-1,3,49,39,-1,4,18,5,-1,5,18,38,-1,5,37,6,-1,5,38,40,-1,5,40,42,-1,5,42,44,-1,5,44,46,-1,5,46,37,-1,6,9,7,-1,6,37,9,-1,7,9,8,-1,9,27,10,-1,9,37,27,-1,10,26,11,-1,10,27,29,-1,10,29,31,-1,10,31,33,-1,10,33,35,-1,10,35,36,-1,10,36,26,-1,11,25,12,-1,11,26,25,-1,12,24,13,-1,12,25,24,-1,13,23,14,-1,13,24,23,-1,14,22,15,-1,14,23,22,-1,15,21,16,-1,15,22,21,-1,16,20,17,-1,16,21,20,-1,17,20,19,-1,27,28,29,-1,27,37,47,-1,27,47,28,-1,28,46,29,-1,28,47,46,-1,29,30,31,-1,29,45,30,-1,29,46,45,-1,30,44,31,-1,30,45,44,-1,31,32,33,-1,31,43,32,-1,31,44,43,-1,32,42,33,-1,32,43,42,-1,33,34,35,-1,33,41,34,-1,33,42,41,-1,34,40,35,-1,34,41,40,-1,35,40,36,-1,36,39,49,-1,36,40,39,-1,36,49,48,-1,37,46,47,-1,38,39,40,-1,40,41,42,-1,42,43,44,-1,44,45,46,-1};
			return value;
		}




		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_854_coordIndex_1()
		{
			int[] value = {0,1,2,-1,0,2,3,-1,0,3,18,-1,0,4,5,-1,0,5,6,-1,0,6,7,-1,0,7,8,-1,0,8,9,-1,0,9,10,-1,0,10,11,-1,0,11,12,-1,0,12,13,-1,0,13,14,-1,0,14,15,-1,0,15,16,-1,0,16,17,-1,0,17,1,-1,0,18,4,-1,1,17,19,-1,1,19,2,-1,2,19,3,-1,3,19,20,-1,3,20,21,-1,3,21,22,-1,3,22,23,-1,3,23,24,-1,3,24,25,-1,3,25,26,-1,3,26,36,-1,3,36,48,-1,3,38,18,-1,3,39,38,-1,3,48,49,-1,3,49,39,-1,4,18,5,-1,5,18,38,-1,5,37,6,-1,5,38,40,-1,5,40,42,-1,5,42,44,-1,5,44,46,-1,5,46,37,-1,6,9,7,-1,6,37,9,-1,7,9,8,-1,9,27,10,-1,9,37,27,-1,10,26,11,-1,10,27,29,-1,10,29,31,-1,10,31,33,-1,10,33,35,-1,10,35,36,-1,10,36,26,-1,11,25,12,-1,11,26,25,-1,12,24,13,-1,12,25,24,-1,13,23,14,-1,13,24,23,-1,14,22,15,-1,14,23,22,-1,15,21,16,-1,15,22,21,-1,16,20,17,-1,16,21,20,-1,17,20,19,-1,27,28,29,-1,27,37,47,-1,27,47,28,-1,28,46,29,-1,28,47,46,-1,29,30,31,-1,29,45,30,-1,29,46,45,-1,30,44,31,-1,30,45,44,-1,31,32,33,-1,31,43,32,-1,31,44,43,-1,32,42,33,-1,32,43,42,-1,33,34,35,-1,33,41,34,-1,33,42,41,-1,34,40,35,-1,34,41,40,-1,35,40,36,-1,36,39,49,-1,36,40,39,-1,36,49,48,-1,37,46,47,-1,38,39,40,-1,40,41,42,-1,42,43,44,-1,44,45,46,-1};
			return value;
		}


		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_854_normalIndex_1()
		{
			int[] value = {0,1,2,-1,0,2,3,-1,0,3,18,-1,0,4,5,-1,0,5,6,-1,0,6,7,-1,0,7,8,-1,0,8,9,-1,0,9,10,-1,0,10,11,-1,0,11,12,-1,0,12,13,-1,0,13,14,-1,0,14,15,-1,0,15,16,-1,0,16,17,-1,0,17,1,-1,0,18,4,-1,1,17,19,-1,1,19,2,-1,2,19,3,-1,3,19,20,-1,3,20,21,-1,3,21,22,-1,3,22,23,-1,3,23,24,-1,3,24,25,-1,3,25,26,-1,3,26,36,-1,3,36,48,-1,3,38,18,-1,3,39,38,-1,3,48,49,-1,3,49,39,-1,4,18,5,-1,5,18,38,-1,5,37,6,-1,5,38,40,-1,5,40,42,-1,5,42,44,-1,5,44,46,-1,5,46,37,-1,6,9,7,-1,6,37,9,-1,7,9,8,-1,9,27,10,-1,9,37,27,-1,10,26,11,-1,10,27,29,-1,10,29,31,-1,10,31,33,-1,10,33,35,-1,10,35,36,-1,10,36,26,-1,11,25,12,-1,11,26,25,-1,12,24,13,-1,12,25,24,-1,13,23,14,-1,13,24,23,-1,14,22,15,-1,14,23,22,-1,15,21,16,-1,15,22,21,-1,16,20,17,-1,16,21,20,-1,17,20,19,-1,27,28,29,-1,27,37,47,-1,27,47,28,-1,28,46,29,-1,28,47,46,-1,29,30,31,-1,29,45,30,-1,29,46,45,-1,30,44,31,-1,30,45,44,-1,31,32,33,-1,31,43,32,-1,31,44,43,-1,32,42,33,-1,32,43,42,-1,33,34,35,-1,33,41,34,-1,33,42,41,-1,34,40,35,-1,34,41,40,-1,35,40,36,-1,36,39,49,-1,36,40,39,-1,36,49,48,-1,37,46,47,-1,38,39,40,-1,40,41,42,-1,42,43,44,-1,44,45,46,-1};
			return value;
		}




		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_860_coordIndex_1()
		{
			int[] value = {0,1,2,-1,0,2,3,-1,0,3,18,-1,0,4,5,-1,0,5,6,-1,0,6,7,-1,0,7,8,-1,0,8,9,-1,0,9,10,-1,0,10,11,-1,0,11,12,-1,0,12,13,-1,0,13,14,-1,0,14,15,-1,0,15,16,-1,0,16,17,-1,0,17,1,-1,0,18,4,-1,1,17,19,-1,1,19,2,-1,2,19,33,-1,2,32,3,-1,2,33,32,-1,3,32,18,-1,4,18,5,-1,5,18,31,-1,5,31,6,-1,6,30,7,-1,6,31,30,-1,7,29,8,-1,7,30,29,-1,8,28,9,-1,8,29,28,-1,9,27,10,-1,9,28,27,-1,10,26,11,-1,10,27,26,-1,11,25,12,-1,11,26,25,-1,12,24,13,-1,12,25,24,-1,13,23,14,-1,13,24,23,-1,14,22,15,-1,14,23,22,-1,15,21,16,-1,15,22,21,-1,16,20,17,-1,16,21,20,-1,17,20,19,-1,18,32,47,-1,18,46,31,-1,18,47,46,-1,19,20,34,-1,19,34,33,-1,20,21,35,-1,20,35,34,-1,21,22,36,-1,21,36,35,-1,22,23,37,-1,22,37,36,-1,23,24,38,-1,23,38,37,-1,24,25,39,-1,24,39,38,-1,25,26,40,-1,25,40,39,-1,26,27,41,-1,26,41,40,-1,27,28,42,-1,27,42,41,-1,28,29,43,-1,28,43,42,-1,29,30,44,-1,29,44,43,-1,30,31,45,-1,30,45,44,-1,31,46,45,-1,32,33,41,-1,32,41,42,-1,32,42,47,-1,33,34,40,-1,33,40,41,-1,34,35,39,-1,34,39,40,-1,35,36,38,-1,35,38,39,-1,36,37,38,-1,42,43,47,-1,43,44,46,-1,43,46,47,-1,44,45,46,-1};
			return value;
		}


		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_860_normalIndex_1()
		{
			int[] value = {0,1,2,-1,0,2,3,-1,0,3,18,-1,0,4,5,-1,0,5,6,-1,0,6,7,-1,0,7,8,-1,0,8,9,-1,0,9,10,-1,0,10,11,-1,0,11,12,-1,0,12,13,-1,0,13,14,-1,0,14,15,-1,0,15,16,-1,0,16,17,-1,0,17,1,-1,0,18,4,-1,1,17,19,-1,1,19,2,-1,2,19,33,-1,2,32,3,-1,2,33,32,-1,3,32,18,-1,4,18,5,-1,5,18,31,-1,5,31,6,-1,6,30,7,-1,6,31,30,-1,7,29,8,-1,7,30,29,-1,8,28,9,-1,8,29,28,-1,9,27,10,-1,9,28,27,-1,10,26,11,-1,10,27,26,-1,11,25,12,-1,11,26,25,-1,12,24,13,-1,12,25,24,-1,13,23,14,-1,13,24,23,-1,14,22,15,-1,14,23,22,-1,15,21,16,-1,15,22,21,-1,16,20,17,-1,16,21,20,-1,17,20,19,-1,18,32,47,-1,18,46,31,-1,18,47,46,-1,19,20,34,-1,19,34,33,-1,20,21,35,-1,20,35,34,-1,21,22,36,-1,21,36,35,-1,22,23,37,-1,22,37,36,-1,23,24,38,-1,23,38,37,-1,24,25,39,-1,24,39,38,-1,25,26,40,-1,25,40,39,-1,26,27,41,-1,26,41,40,-1,27,28,42,-1,27,42,41,-1,28,29,43,-1,28,43,42,-1,29,30,44,-1,29,44,43,-1,30,31,45,-1,30,45,44,-1,31,46,45,-1,32,33,41,-1,32,41,42,-1,32,42,47,-1,33,34,40,-1,33,40,41,-1,34,35,39,-1,34,39,40,-1,35,36,38,-1,35,38,39,-1,36,37,38,-1,42,43,47,-1,43,44,46,-1,43,46,47,-1,44,45,46,-1};
			return value;
		}






















		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_981_coordIndex_1()
		{
			int[] value = {0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,-1,0,15,31,16,-1,0,16,17,1,-1,1,17,18,2,-1,2,18,19,3,-1,3,19,20,4,-1,4,20,21,5,-1,5,21,22,6,-1,6,22,23,7,-1,7,23,24,8,-1,8,24,25,9,-1,9,25,26,10,-1,10,26,27,11,-1,11,27,28,12,-1,12,28,29,13,-1,13,29,30,14,-1,14,30,31,15,-1,16,31,34,33,-1,16,33,32,17,-1,17,32,47,18,-1,18,47,46,19,-1,19,46,45,20,-1,20,45,44,21,-1,21,44,43,22,-1,22,43,42,23,-1,23,42,41,24,-1,24,41,40,25,-1,25,40,39,26,-1,26,39,38,27,-1,27,38,37,28,-1,28,37,36,29,-1,29,36,35,30,-1,30,35,34,31,-1,32,33,49,48,-1,32,48,63,47,-1,33,34,50,49,-1,34,35,51,50,-1,35,36,52,51,-1,36,37,53,52,-1,37,38,54,53,-1,38,39,55,54,-1,39,40,56,55,-1,40,41,57,56,-1,41,42,58,57,-1,42,43,59,58,-1,43,44,60,59,-1,44,45,61,60,-1,45,46,62,61,-1,46,47,63,62,-1,48,49,65,64,-1,48,64,79,63,-1,49,50,66,65,-1,50,51,67,66,-1,51,52,68,67,-1,52,53,69,68,-1,53,54,70,69,-1,54,55,71,70,-1,55,56,72,71,-1,56,57,73,72,-1,57,58,74,73,-1,58,59,75,74,-1,59,60,76,75,-1,60,61,77,76,-1,61,62,78,77,-1,62,63,79,78,-1,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,-1,80,81,82,83,-1,80,83,82,81,-1,84,85,86,87,-1,84,87,86,85,-1,88,89,90,91,-1,88,91,90,89,-1,92,93,94,95,-1,92,95,94,93,-1};
			return value;
		}


		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_981_normalIndex_1()
		{
			int[] value = {0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,-1,0,15,31,16,-1,0,16,17,1,-1,1,17,18,2,-1,2,18,19,3,-1,3,19,20,4,-1,4,20,21,5,-1,5,21,22,6,-1,6,22,23,7,-1,7,23,24,8,-1,8,24,25,9,-1,9,25,26,10,-1,10,26,27,11,-1,11,27,28,12,-1,12,28,29,13,-1,13,29,30,14,-1,14,30,31,15,-1,16,31,34,33,-1,16,33,32,17,-1,17,32,47,18,-1,18,47,46,19,-1,19,46,45,20,-1,20,45,44,21,-1,21,44,43,22,-1,22,43,42,23,-1,23,42,41,24,-1,24,41,40,25,-1,25,40,39,26,-1,26,39,38,27,-1,27,38,37,28,-1,28,37,36,29,-1,29,36,35,30,-1,30,35,34,31,-1,32,33,49,48,-1,32,48,63,47,-1,33,34,50,49,-1,34,35,51,50,-1,35,36,52,51,-1,36,37,53,52,-1,37,38,54,53,-1,38,39,55,54,-1,39,40,56,55,-1,40,41,57,56,-1,41,42,58,57,-1,42,43,59,58,-1,43,44,60,59,-1,44,45,61,60,-1,45,46,62,61,-1,46,47,63,62,-1,48,49,65,64,-1,48,64,79,63,-1,49,50,66,65,-1,50,51,67,66,-1,51,52,68,67,-1,52,53,69,68,-1,53,54,70,69,-1,54,55,71,70,-1,55,56,72,71,-1,56,57,73,72,-1,57,58,74,73,-1,58,59,75,74,-1,59,60,76,75,-1,60,61,77,76,-1,61,62,78,77,-1,62,63,79,78,-1,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,-1,80,81,82,83,-1,80,83,82,81,-1,84,85,86,87,-1,84,87,86,85,-1,88,89,90,91,-1,88,91,90,89,-1,92,93,94,95,-1,92,95,94,93,-1};
			return value;
		}




		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_989_coordIndex_1()
		{
			int[] value = {0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,-1,0,15,31,16,-1,0,16,17,1,-1,1,17,18,2,-1,2,18,19,3,-1,3,19,20,4,-1,4,20,21,5,-1,5,21,22,6,-1,6,22,23,7,-1,7,23,24,8,-1,8,24,25,9,-1,9,25,26,10,-1,10,26,27,11,-1,11,27,28,12,-1,12,28,29,13,-1,13,29,30,14,-1,14,30,31,15,-1,16,31,34,33,-1,16,33,32,17,-1,17,32,47,18,-1,18,47,46,19,-1,19,46,45,20,-1,20,45,44,21,-1,21,44,43,22,-1,22,43,42,23,-1,23,42,41,24,-1,24,41,40,25,-1,25,40,39,26,-1,26,39,38,27,-1,27,38,37,28,-1,28,37,36,29,-1,29,36,35,30,-1,30,35,34,31,-1,32,33,49,48,-1,32,48,63,47,-1,33,34,50,49,-1,34,35,51,50,-1,35,36,52,51,-1,36,37,53,52,-1,37,38,54,53,-1,38,39,55,54,-1,39,40,56,55,-1,40,41,57,56,-1,41,42,58,57,-1,42,43,59,58,-1,43,44,60,59,-1,44,45,61,60,-1,45,46,62,61,-1,46,47,63,62,-1,48,49,65,64,-1,48,64,79,63,-1,49,50,66,65,-1,50,51,67,66,-1,51,52,68,67,-1,52,53,69,68,-1,53,54,70,69,-1,54,55,71,70,-1,55,56,72,71,-1,56,57,73,72,-1,57,58,74,73,-1,58,59,75,74,-1,59,60,76,75,-1,60,61,77,76,-1,61,62,78,77,-1,62,63,79,78,-1,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,-1,80,81,82,83,-1,80,83,82,81,-1,84,85,86,87,-1,84,87,86,85,-1,88,89,90,91,-1,88,91,90,89,-1,92,93,94,95,-1,92,95,94,93,-1};
			return value;
		}


		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_989_normalIndex_1()
		{
			int[] value = {0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,-1,0,15,31,16,-1,0,16,17,1,-1,1,17,18,2,-1,2,18,19,3,-1,3,19,20,4,-1,4,20,21,5,-1,5,21,22,6,-1,6,22,23,7,-1,7,23,24,8,-1,8,24,25,9,-1,9,25,26,10,-1,10,26,27,11,-1,11,27,28,12,-1,12,28,29,13,-1,13,29,30,14,-1,14,30,31,15,-1,16,31,34,33,-1,16,33,32,17,-1,17,32,47,18,-1,18,47,46,19,-1,19,46,45,20,-1,20,45,44,21,-1,21,44,43,22,-1,22,43,42,23,-1,23,42,41,24,-1,24,41,40,25,-1,25,40,39,26,-1,26,39,38,27,-1,27,38,37,28,-1,28,37,36,29,-1,29,36,35,30,-1,30,35,34,31,-1,32,33,49,48,-1,32,48,63,47,-1,33,34,50,49,-1,34,35,51,50,-1,35,36,52,51,-1,36,37,53,52,-1,37,38,54,53,-1,38,39,55,54,-1,39,40,56,55,-1,40,41,57,56,-1,41,42,58,57,-1,42,43,59,58,-1,43,44,60,59,-1,44,45,61,60,-1,45,46,62,61,-1,46,47,63,62,-1,48,49,65,64,-1,48,64,79,63,-1,49,50,66,65,-1,50,51,67,66,-1,51,52,68,67,-1,52,53,69,68,-1,53,54,70,69,-1,54,55,71,70,-1,55,56,72,71,-1,56,57,73,72,-1,57,58,74,73,-1,58,59,75,74,-1,59,60,76,75,-1,60,61,77,76,-1,61,62,78,77,-1,62,63,79,78,-1,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,-1,80,81,82,83,-1,80,83,82,81,-1,84,85,86,87,-1,84,87,86,85,-1,88,89,90,91,-1,88,91,90,89,-1,92,93,94,95,-1,92,95,94,93,-1};
			return value;
		}




		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_997_coordIndex_1()
		{
			int[] value = {0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,-1,0,15,31,16,-1,0,16,17,1,-1,1,17,18,2,-1,2,18,19,3,-1,3,19,20,4,-1,4,20,21,5,-1,5,21,22,6,-1,6,22,23,7,-1,7,23,24,8,-1,8,24,25,9,-1,9,25,26,10,-1,10,26,27,11,-1,11,27,28,12,-1,12,28,29,13,-1,13,29,30,14,-1,14,30,31,15,-1,16,31,34,33,-1,16,33,32,17,-1,17,32,47,18,-1,18,47,46,19,-1,19,46,45,20,-1,20,45,44,21,-1,21,44,43,22,-1,22,43,42,23,-1,23,42,41,24,-1,24,41,40,25,-1,25,40,39,26,-1,26,39,38,27,-1,27,38,37,28,-1,28,37,36,29,-1,29,36,35,30,-1,30,35,34,31,-1,32,33,49,48,-1,32,48,63,47,-1,33,34,50,49,-1,34,35,51,50,-1,35,36,52,51,-1,36,37,53,52,-1,37,38,54,53,-1,38,39,55,54,-1,39,40,56,55,-1,40,41,57,56,-1,41,42,58,57,-1,42,43,59,58,-1,43,44,60,59,-1,44,45,61,60,-1,45,46,62,61,-1,46,47,63,62,-1,48,49,65,64,-1,48,64,79,63,-1,49,50,66,65,-1,50,51,67,66,-1,51,52,68,67,-1,52,53,69,68,-1,53,54,70,69,-1,54,55,71,70,-1,55,56,72,71,-1,56,57,73,72,-1,57,58,74,73,-1,58,59,75,74,-1,59,60,76,75,-1,60,61,77,76,-1,61,62,78,77,-1,62,63,79,78,-1,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,-1,80,81,82,83,-1,80,83,82,81,-1,84,85,86,87,-1,84,87,86,85,-1,88,89,90,91,-1,88,91,90,89,-1,92,93,94,95,-1,92,95,94,93,-1};
			return value;
		}


		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_997_normalIndex_1()
		{
			int[] value = {0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,-1,0,15,31,16,-1,0,16,17,1,-1,1,17,18,2,-1,2,18,19,3,-1,3,19,20,4,-1,4,20,21,5,-1,5,21,22,6,-1,6,22,23,7,-1,7,23,24,8,-1,8,24,25,9,-1,9,25,26,10,-1,10,26,27,11,-1,11,27,28,12,-1,12,28,29,13,-1,13,29,30,14,-1,14,30,31,15,-1,16,31,34,33,-1,16,33,32,17,-1,17,32,47,18,-1,18,47,46,19,-1,19,46,45,20,-1,20,45,44,21,-1,21,44,43,22,-1,22,43,42,23,-1,23,42,41,24,-1,24,41,40,25,-1,25,40,39,26,-1,26,39,38,27,-1,27,38,37,28,-1,28,37,36,29,-1,29,36,35,30,-1,30,35,34,31,-1,32,33,49,48,-1,32,48,63,47,-1,33,34,50,49,-1,34,35,51,50,-1,35,36,52,51,-1,36,37,53,52,-1,37,38,54,53,-1,38,39,55,54,-1,39,40,56,55,-1,40,41,57,56,-1,41,42,58,57,-1,42,43,59,58,-1,43,44,60,59,-1,44,45,61,60,-1,45,46,62,61,-1,46,47,63,62,-1,48,49,65,64,-1,48,64,79,63,-1,49,50,66,65,-1,50,51,67,66,-1,51,52,68,67,-1,52,53,69,68,-1,53,54,70,69,-1,54,55,71,70,-1,55,56,72,71,-1,56,57,73,72,-1,57,58,74,73,-1,58,59,75,74,-1,59,60,76,75,-1,60,61,77,76,-1,61,62,78,77,-1,62,63,79,78,-1,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,-1,80,81,82,83,-1,80,83,82,81,-1,84,85,86,87,-1,84,87,86,85,-1,88,89,90,91,-1,88,91,90,89,-1,92,93,94,95,-1,92,95,94,93,-1};
			return value;
		}




		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_1005_coordIndex_1()
		{
			int[] value = {0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,-1,0,15,31,16,-1,0,16,17,1,-1,1,17,18,2,-1,2,18,19,3,-1,3,19,20,4,-1,4,20,21,5,-1,5,21,22,6,-1,6,22,23,7,-1,7,23,24,8,-1,8,24,25,9,-1,9,25,26,10,-1,10,26,27,11,-1,11,27,28,12,-1,12,28,29,13,-1,13,29,30,14,-1,14,30,31,15,-1,16,31,34,33,-1,16,33,32,17,-1,17,32,47,18,-1,18,47,46,19,-1,19,46,45,20,-1,20,45,44,21,-1,21,44,43,22,-1,22,43,42,23,-1,23,42,41,24,-1,24,41,40,25,-1,25,40,39,26,-1,26,39,38,27,-1,27,38,37,28,-1,28,37,36,29,-1,29,36,35,30,-1,30,35,34,31,-1,32,33,49,48,-1,32,48,63,47,-1,33,34,50,49,-1,34,35,51,50,-1,35,36,52,51,-1,36,37,53,52,-1,37,38,54,53,-1,38,39,55,54,-1,39,40,56,55,-1,40,41,57,56,-1,41,42,58,57,-1,42,43,59,58,-1,43,44,60,59,-1,44,45,61,60,-1,45,46,62,61,-1,46,47,63,62,-1,48,49,65,64,-1,48,64,79,63,-1,49,50,66,65,-1,50,51,67,66,-1,51,52,68,67,-1,52,53,69,68,-1,53,54,70,69,-1,54,55,71,70,-1,55,56,72,71,-1,56,57,73,72,-1,57,58,74,73,-1,58,59,75,74,-1,59,60,76,75,-1,60,61,77,76,-1,61,62,78,77,-1,62,63,79,78,-1,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,-1,80,81,82,83,-1,80,83,82,81,-1,84,85,86,87,-1,84,87,86,85,-1,88,89,90,91,-1,88,91,90,89,-1,92,93,94,95,-1,92,95,94,93,-1};
			return value;
		}


		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_1005_normalIndex_1()
		{
			int[] value = {0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,-1,0,15,31,16,-1,0,16,17,1,-1,1,17,18,2,-1,2,18,19,3,-1,3,19,20,4,-1,4,20,21,5,-1,5,21,22,6,-1,6,22,23,7,-1,7,23,24,8,-1,8,24,25,9,-1,9,25,26,10,-1,10,26,27,11,-1,11,27,28,12,-1,12,28,29,13,-1,13,29,30,14,-1,14,30,31,15,-1,16,31,34,33,-1,16,33,32,17,-1,17,32,47,18,-1,18,47,46,19,-1,19,46,45,20,-1,20,45,44,21,-1,21,44,43,22,-1,22,43,42,23,-1,23,42,41,24,-1,24,41,40,25,-1,25,40,39,26,-1,26,39,38,27,-1,27,38,37,28,-1,28,37,36,29,-1,29,36,35,30,-1,30,35,34,31,-1,32,33,49,48,-1,32,48,63,47,-1,33,34,50,49,-1,34,35,51,50,-1,35,36,52,51,-1,36,37,53,52,-1,37,38,54,53,-1,38,39,55,54,-1,39,40,56,55,-1,40,41,57,56,-1,41,42,58,57,-1,42,43,59,58,-1,43,44,60,59,-1,44,45,61,60,-1,45,46,62,61,-1,46,47,63,62,-1,48,49,65,64,-1,48,64,79,63,-1,49,50,66,65,-1,50,51,67,66,-1,51,52,68,67,-1,52,53,69,68,-1,53,54,70,69,-1,54,55,71,70,-1,55,56,72,71,-1,56,57,73,72,-1,57,58,74,73,-1,58,59,75,74,-1,59,60,76,75,-1,60,61,77,76,-1,61,62,78,77,-1,62,63,79,78,-1,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,-1,80,81,82,83,-1,80,83,82,81,-1,84,85,86,87,-1,84,87,86,85,-1,88,89,90,91,-1,88,91,90,89,-1,92,93,94,95,-1,92,95,94,93,-1};
			return value;
		}




		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_1013_colorIndex_1()
		{
			int[] value = {4,4,4,4,-1,4,4,4,4,4,4,4,4,4,4,4,-1,6,6,6,6,6,6,6,6,-1,4,4,4,4,4,4,4,4,4,4,-1,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,-1,4,4,4,4,4,4,4,4,4,4,4,4,-1,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,-1,4,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,4,4,4,4,4,4,4,-1,4,4,4,4,-1,6,6,6,6,6,6,6,6,-1,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,4,4,4,-1,4,4,4,-1,4,4,4,-1,4,4,4,-1,4,4,4,-1,4,4,4,-1,4,4,4,-1,4,4,4,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,4,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,-1,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,-1,4,4,4,-1,4,4,4,-1,4,4,4,-1,4,4,4,-1,4,4,4,-1,4,4,4,-1,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,-1,4,4,4,-1,4,4,4,-1,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,-1,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,-1,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,-1,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,-1,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,-1,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,-1,4,4,4,4,4,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,4,4,4,4,4,-1,4,4,4,4,4,4,-1,4,4,4,4,4,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,4,4,4,4,-1,4,4,4,4,4,4,-1,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,-1,4,4,4,4,4,4,-1,4,4,4,4,4,-1,4,4,4,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4};
			return value;
		}
		private int[] getIndexedFaceSet_5_1013_colorIndex_2()
		{
			int[] value = {-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,4,4,-1,4,4,4,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,4,4,-1,4,4,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,6,6,6,6,-1,6,6,6,-1,6,6,6,6,-1,6,6,6,-1,6,6,6,6,-1,6,6,6,-1,6,6,6,6,-1,6,6,6,-1,6,6,6,6,-1,6,6,6,-1,6,6,6,6,-1,6,6,6,-1,6,6,6,6,-1,6,6,6,-1,6,6,6,6,-1,6,6,6,-1,6,6,6,6,-1,6,6,6,-1,6,6,6,6,-1,6,6,6,-1,6,6,6,6,-1,6,6,6,-1,6,6,6,6,-1,6,6,6,-1,6,6,6,6,-1,6,6,6,-1,6,6,6,6,-1,6,6,6,-1,6,6,6,6,-1,6,6,6,-1,6,6,6,6,-1,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,-1,6,6,6,6,-1,6,6,6,-1,6,6,6,6,-1,6,6,6,-1,6,6,6,6,-1,6,6,6,-1,6,6,6,6,-1,6,6,6,-1,6,6,6,6,-1,6,6,6,-1,6,6,6,6,-1,6,6,6,-1,6,6,6,6,-1,6,6,6,-1,6,6,6,6,-1,6,6,6,-1,6,6,6,6,-1,6,6,6,-1,6,6,6,6,-1,6,6,6,-1,6,6,6,6,-1,6,6,6,-1,6,6,6,6,-1,6,6,6,-1,6,6,6,6,-1,6,6,6,-1,6,6,6,6,-1,6,6,6,-1,6,6,6,6,-1,6,6,6,-1,6,6,6,6,-1,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1};
			return value;
		}
		private int[] getIndexedFaceSet_5_1013_colorIndex_3()
		{
			int[] value = {6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,-1,6,6,6,6,-1,6,6,6,-1,6,6,6,6,-1,6,6,6,-1,6,6,6,6,-1,6,6,6,-1,6,6,6,6,-1,6,6,6,-1,6,6,6,6,-1,6,6,6,-1,6,6,6,6,-1,6,6,6,-1,6,6,6,6,-1,6,6,6,-1,6,6,6,6,-1,6,6,6,-1,6,6,6,6,-1,6,6,6,-1,6,6,6,6,-1,6,6,6,-1,6,6,6,6,-1,6,6,6,-1,6,6,6,6,-1,6,6,6,-1,6,6,6,6,-1,6,6,6,-1,6,6,6,6,-1,6,6,6,-1,6,6,6,6,-1,6,6,6,-1,6,6,6,6,-1,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1};
			return value;
		}
		private int[] getIndexedFaceSet_5_1013_colorIndex_4()
		{
			int[] value = {1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,-1,1,1,1,-1,1,1,1,-1,1,1,1,-1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,6,6,6,6,-1,1,1,1,1,-1,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,1,1,1,-1,1,1,1,1,-1,6,6,6,6,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,6,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,-1,5,5,5,5,-1,6,6,6,6,-1,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,-1,1,1,1,1,1,-1,6,6,6,6,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1};
			return value;
		}
		private int[] getIndexedFaceSet_5_1013_colorIndex_5()
		{
			int[] value = {1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,-1,1,1,1,-1,1,1,1,-1,1,1,1,-1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,6,6,6,6,-1,1,1,1,1,-1,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,1,1,1,-1,1,1,1,1,-1,6,6,6,6,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,6,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,-1,1,1,1,1,1,-1,6,6,6,6,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,6,6,6,6,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,4,4,4,4,-1,4,4,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,6,6,6,6,-1};
			return value;
		}
		private int[] getIndexedFaceSet_5_1013_colorIndex_6()
		{
			int[] value = {4,4,4,4,-1,4,4,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,6,6,6,6,-1,4,4,4,4,-1,4,4,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,4,4,-1,6,6,6,6,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,4,4,-1,5,5,5,5,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,6,6,6,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,6,6,6,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,6,6,6,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,-1,1,1,1,-1,1,1,1,-1,1,1,1,-1,1,1,1,-1,1,1,1,-1,1,1,1,-1,1,1,1,-1,1,1,1,-1,1,1,1,-1,1,1,1,-1,1,1,1,-1,1,1,1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,1,1,1,1,1,-1,1,1,1,1,1,-1,1,1,1,1,1,-1,1,1,1,1,1,-1,1,1,1,1,1,-1,1,1,1,1,1,-1,1,1,1,1,1,-1,1,1,1,1,1,-1,1,1,1,1,1,-1,1,1,1,1,1,-1,1,1,1,1,1,-1,1,1,1,1,1,-1,1,1,1,1,1,-1,1,1,1,1,1,-1,1,1,1,1,1,-1,1,1,1,1,1,-1,1,1,1,1,1,1,1,-1,1,1,1,1,1,1,1,-1,1,1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,1,1,-1,1,1,1,1,1,1,-1,1,1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1};
			return value;
		}
		private int[] getIndexedFaceSet_5_1013_colorIndex_7()
		{
			int[] value = {1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,6,6,6,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,6,6,6,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,6,6,6,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,-1,1,1,1,-1,1,1,1,-1,1,1,1,-1,1,1,1,-1,1,1,1,-1,1,1,1,-1,1,1,1,-1,1,1,1,-1,1,1,1,-1,1,1,1,-1,1,1,1,-1,1,1,1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,1,1,1,1,1,-1,1,1,1,1,1,-1,1,1,1,1,1,-1,1,1,1,1,1,-1,1,1,1,1,1,-1,1,1,1,1,1,-1,1,1,1,1,1,-1,1,1,1,1,1,-1,1,1,1,1,1,-1,1,1,1,1,1,-1,1,1,1,1,1,-1,1,1,1,1,1,-1,1,1,1,1,1,-1,1,1,1,1,1,-1,1,1,1,1,1,-1,1,1,1,1,1,-1,1,1,1,1,1,1,1,-1,1,1,1,1,1,1,1,-1,1,1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,1,1,-1,1,1,1,1,1,1,-1,1,1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,6,6,6,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,6,6,6,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1};
			return value;
		}
		private int[] getIndexedFaceSet_5_1013_colorIndex_8()
		{
			int[] value = {1,1,-1,6,6,6,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,-1,1,1,1,-1,1,1,1,-1,1,1,1,-1,1,1,1,-1,1,1,1,-1,1,1,1,-1,1,1,1,-1,1,1,1,-1,1,1,1,-1,1,1,1,-1,1,1,1,-1,1,1,1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,1,1,1,1,1,-1,1,1,1,1,1,-1,1,1,1,1,1,-1,1,1,1,1,1,-1,1,1,1,1,1,-1,1,1,1,1,1,-1,1,1,1,1,1,-1,1,1,1,1,1,-1,1,1,1,1,1,-1,1,1,1,1,1,-1,1,1,1,1,1,-1,1,1,1,1,1,-1,1,1,1,1,1,-1,1,1,1,1,1,-1,1,1,1,1,1,-1,1,1,1,1,1,-1,1,1,1,1,1,1,1,-1,1,1,1,1,1,1,1,-1,1,1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,1,1,-1,1,1,1,1,1,1,-1,1,1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,6,6,6,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,6,6,6,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,1,-1,6,6,6,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,-1,1,1,1,-1,1,1,1,-1,1,1,1,-1,1,1,1,-1,1,1,1,-1,1,1,1,-1,1,1,1,-1,1,1,1,-1,1,1,1,-1,1,1,1,-1,1,1,1,-1,1,1,1,-1,1,1,1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,1,1,1,1,1,-1,1,1,1,1,1,-1,1,1,1,1,1,-1,1,1,1,1,1,-1,1,1,1,1,1,-1,1,1,1,1,1,-1,1,1,1,1,1,-1,1,1,1,1,1,-1,1,1,1,1,1,-1,1,1,1,1,1,-1,1,1,1,1,1,-1,1,1,1,1,1,-1,1,1,1,1,1,-1,1,1,1,1,1,-1,1,1,1,1,1,-1,1,1,1,1,1,-1,1,1,1,1,1,1,1,-1,1,1,1,1,1,1,1,-1,1,1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,1,1,-1,1,1,1,1,1,1,-1,1,1,1,1};
			return value;
		}
		private int[] getIndexedFaceSet_5_1013_colorIndex_9()
		{
			int[] value = {1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,1,1,1,1,-1,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0};
			return value;
		}
		private int[] getIndexedFaceSet_5_1013_colorIndex_10()
		{
			int[] value = {0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0};
			return value;
		}
		private int[] getIndexedFaceSet_5_1013_colorIndex_11()
		{
			int[] value = {-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,-1,4,4,4,4,4,-1,4,4,4,4,4,-1,4,4,4,4,4,-1,4,4,4,4,4,-1,4,4,4,4,-1,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,-1,4,4,4,4,-1,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,-1,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,-1,4,4,4,4,-1,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,5,5,5,5,-1,5,5,5,5,-1,5,5,5,5,-1,5,5,5,5,-1,4,4,4,4,-1,4,4,4,4,4,-1,4,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,-1,4,4,4,-1,4,4,4,4,-1,4,4,4,-1,4,4,4,4,-1,4,4,4,-1,4,4,4,4,-1,4,4,4,-1,4,4,4,4,-1,4,4,4,-1,4,4,4,4,-1,3,3,3,3,3,3,-1,4,4,4,4,-1,4,4,4,4,-1,3,3,3,3,3,-1,4,4,4,4,-1,3,3,3,3,-1,3,3,3,3,3,-1,4,4,4,4,-1,4,4,4,-1,4,4,4,4,-1,4,4,4,-1,4,4,4,4,-1,4,4,4,-1,4,4,4,4,-1,4,4,4,4,-1,4,4,4,-1,4,4,4,4,-1,4,4,4,-1,4,4,4,-1,2,2,2,2,-1,4,4,4,4,-1,2,2,2,2,-1};
			return value;
		}


		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_1013_coordIndex_1()
		{
			int[] value = {0,12,34,17,-1,0,14,15,16,3,7,72,69,71,66,12,-1,0,17,21,20,3,16,15,14,-1,1,184,185,5,199,218,203,202,216,201,-1,1,201,200,63,62,123,122,121,120,119,118,117,116,115,114,113,112,111,110,179,178,181,180,55,50,49,48,47,2,2291,2290,2289,2288,2287,2286,2285,2284,2283,2282,2281,11,235,234,233,232,-1,1,232,233,234,235,11,97,10,57,5,185,184,-1,2,47,2315,2316,2317,2318,2319,2320,2321,2322,2323,51,2324,2331,2332,2333,2326,-1,2,2326,2327,190,2291,-1,3,20,64,7,-1,4,13,59,68,67,70,9,6,25,24,23,-1,4,19,36,13,-1,4,23,24,25,6,28,27,19,-1,5,57,10,58,2279,2280,99,2325,2324,51,52,53,54,56,183,182,175,174,137,136,135,134,133,132,131,130,129,128,127,126,125,124,60,61,198,199,-1,6,9,65,28,-1,7,64,81,73,-1,7,73,166,167,168,89,72,-1,8,18,30,-1,8,22,29,-1,8,26,42,-1,8,29,18,-1,8,30,26,-1,8,42,22,-1,9,70,93,169,170,171,74,-1,9,74,85,65,-1,10,97,98,58,-1,11,2281,2282,2283,2284,2285,2286,98,97,-1,12,66,86,75,-1,12,75,92,34,-1,13,36,90,76,-1,13,76,96,59,-1,17,34,44,37,-1,17,37,39,21,-1,18,29,45,-1,18,45,30,-1,19,27,40,38,-1,19,38,46,36,-1,20,21,31,64,-1,21,39,41,31,-1,22,37,29,-1,22,39,37,-1,22,41,39,-1,22,42,41,-1,26,30,38,-1,26,38,40,-1,26,40,43,-1,26,43,42,-1,27,28,65,33,-1,27,33,43,40,-1,29,37,44,-1,29,44,45,-1,30,45,46,-1,30,46,38,-1,31,32,83,82,-1,31,41,42,32,-1,31,82,81,64,-1,32,33,84,83,-1,32,42,43,33,-1,33,65,85,84,-1,34,35,36,46,45,44,-1,34,92,91,35,-1,35,91,90,36,-1,47,48,2306,2315,-1,48,49,2297,2306,-1,49,50,2292,2298,2297,-1,50,55,2246,2292,-1,51,2323,2314,52,-1,52,2314,2305,53,-1,53,2305,2304,2296,54,-1,54,2296,2239,56,-1,55,180,181,178,179,110,111,112,113,114,115,116,117,118,119,120,121,122,123,62,80,138,139,140,141,142,143,144,145,146,147,148,149,150,151,176,177,77,2219,2218,2217,2216,2215,2214,2213,2212,2211,-1,55,2211,2212,2213,2214,2215,2216,2217,2218,2219,77,2234,2248,2247,2245,2246,-1,56,2220,2221,2222,2223,2224,2225,2226,2227,2228,78,172,173,152,153,154,155,156,157,158,159,160,161,162,163,164,165,79,60,124,125,126,127,128,129,130,131,132,133,134,135,136,137,174,175,182,183,-1,56,2239,2240,2253,2254,2238,78,2228,2227,2226,2225,2224,2223,2222,2221,2220,-1,58,98,193,2279,-1,59,96,95,68,-1,60,79,214,189,-1,60,189,187,61,-1,61,187,205,219,198,-1,62,63,186,188,-1,62,188,215,80,-1,63,200,217,204,186,-1,66,71,87,86,-1,67,68,95,94,-1,67,94,93,70,-1,69,72,89,88,-1,69,88,87,71,-1,73,77,177,176,151,150,149,148,147,146,145,144,143,142,141,140,139,138,80,75,86,87,88,89,168,167,166,-1,73,81,82,83,84,85,74,78,2238,2254,2251,2237,2236,2235,2250,2248,2234,77,-1,74,171,170,169,93,94,95,96,76,79,165,164,163,162,161,160,159,158,157,156,155,154,153,152,173,172,78,-1,75,80,215,214,79,76,90,91,92,-1,98,2286,2287,193,-1,99,101,2329,2325,-1,99,194,195,100,196,197,102,103,101,-1,99,2280,192,100,195,194,-1,100,191,190,2327,2328,104,102,197,196,-1,100,192,2288,2289,-1,100,2289,2290,191,-1,101,103,105,2330,2337,2338,2339,2329,-1,102,104,2360,2361,282,281,-1,102,281,282,283,284,285,286,287,292,293,291,290,278,277,276,275,274,273,272,103,-1,103,272,273,2365,2364,105,-1,104,105,2364,2368,2360,-1,104,2328,2334,2335,2336,2330,105,-1,106,107,237,236,-1,106,109,289,288,245,-1,106,236,239,109,-1,106,245,258,259,247,107,-1,107,108,238,237,-1,107,247,279,280,108,-1,108,109,243,242,-1,108,242,241,238,-1,108,280,279,288,289,109,-1,109,239,240,243,-1,186,204,208,206,-1,186,206,211,188,-1,187,189,210,207,-1,187,207,209,205,-1,188,189,214,215,-1,188,211,210,189,-1,190,191,2290,2291,-1,192,193,2287,2288,-1,192,2280,2279,193,-1,198,219,218,199,-1,200,201,216,217,-1,202,203,213,212,-1,202,212,224,220,-1,202,220,223,216,-1,203,218,228,226,-1,203,226,231,213,-1,204,217,222,221,-1,204,221,225,208,-1,205,209,230,227};
			return value;
		}
		private int[] getIndexedFaceSet_5_1013_coordIndex_2()
		{
			int[] value = {-1,205,227,229,219,-1,206,207,210,211,-1,206,208,209,207,-1,208,212,213,209,-1,208,225,224,212,-1,209,213,231,230,-1,216,223,222,217,-1,218,219,229,228,-1,220,221,222,223,-1,220,224,225,221,-1,226,227,230,231,-1,226,228,229,227,-1,236,237,238,239,-1,238,241,240,239,-1,240,241,242,243,-1,244,248,249,250,292,287,286,-1,244,256,263,248,-1,244,286,285,284,2362,2363,-1,244,2363,2369,2367,246,257,256,-1,245,251,261,258,-1,245,288,297,296,-1,245,296,295,251,-1,246,252,262,257,-1,246,277,278,254,253,252,-1,246,2367,2366,275,276,277,-1,247,255,298,301,-1,247,259,260,255,-1,247,301,300,279,-1,248,263,262,252,253,249,-1,249,253,254,250,-1,250,251,293,292,-1,250,254,255,260,261,251,-1,251,295,294,293,-1,254,278,290,291,255,-1,255,291,299,298,-1,256,257,268,271,-1,256,271,270,263,-1,257,262,269,268,-1,258,261,267,266,-1,258,266,265,259,-1,259,265,264,260,-1,260,264,267,261,-1,262,263,270,269,-1,264,265,266,267,-1,268,269,270,271,-1,273,274,275,2366,2365,-1,279,291,293,288,-1,279,300,299,291,-1,282,2361,2362,284,283,-1,288,293,294,297,-1,294,295,296,297,-1,298,299,300,301,-1,302,303,319,318,-1,302,317,350,-1,302,318,333,317,-1,302,350,303,-1,303,304,320,319,-1,303,350,304,-1,304,305,321,320,-1,304,350,305,-1,305,306,322,321,-1,305,350,306,-1,306,307,323,322,-1,306,350,307,-1,307,308,324,323,-1,307,350,308,-1,308,309,325,324,-1,308,350,309,-1,309,310,326,325,-1,309,350,310,-1,310,311,327,326,-1,310,350,311,-1,311,312,328,327,-1,311,350,312,-1,312,313,329,328,-1,312,350,313,-1,313,314,330,329,-1,313,350,314,-1,314,315,331,330,-1,314,350,315,-1,315,316,332,331,-1,315,350,316,-1,316,317,333,332,-1,316,350,317,-1,318,319,335,334,-1,318,334,349,333,-1,319,320,336,335,-1,320,321,337,336,-1,321,322,338,337,-1,322,323,339,338,-1,323,324,340,339,-1,324,325,341,340,-1,325,326,342,341,-1,326,327,343,342,-1,327,328,344,343,-1,328,329,345,344,-1,329,330,346,345,-1,330,331,347,346,-1,331,332,348,347,-1,332,333,349,348,-1,334,335,352,351,-1,334,351,366,349,-1,335,336,353,352,-1,336,337,354,353,-1,337,338,355,354,-1,338,339,356,355,-1,339,340,357,356,-1,340,341,358,357,-1,341,342,359,358,-1,342,343,360,359,-1,343,344,361,360,-1,344,345,362,361,-1,345,346,363,362,-1,346,347,364,363,-1,347,348,365,364,-1,348,349,366,365,-1,351,352,370,369,-1,351,369,368,366,-1,352,353,371,370,-1,353,354,372,371,-1,354,355,373,372,-1,355,356,374,373,-1,356,357,375,374,-1,357,358,376,375,-1,358,359,377,376,-1,359,360,378,377,-1,360,361,379,378,-1,361,362,380,379,-1,362,363,381,380,-1,363,364,382,381,-1,364,365,367,382,-1,365,366,368,367,-1,367,368,384,383,-1,367,383,398,382,-1,368,369,385,384,-1,369,370,386,385,-1,370,371,387,386,-1,371,372,388,387,-1,372,373,389,388,-1,373,374,390,389,-1,374,375,391,390,-1,375,376,392,391,-1,376,377,393,392,-1,377,378,394,393,-1,378,379,395,394,-1,379,380,396,395,-1,380,381,397,396,-1,381,382,398,397,-1,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,-1,399,400,416,415,-1,399,414,447,-1,399,415,430,414,-1,399,447,400,-1,400,401,417,416,-1,400,447,401,-1,401,402,418,417,-1,401,447,402,-1,402,403,419,418,-1,402,447,403,-1,403,404,420,419,-1,403,447,404,-1,404,405,421,420,-1,404,447,405,-1,405,406,422,421,-1,405,447,406,-1,406,407,423,422,-1,406,447,407,-1,407,408,424,423,-1,407,447,408,-1,408,409,425,424,-1,408,447,409,-1,409,410,426,425,-1,409,447,410,-1,410,411,427,426,-1,410,447,411,-1,411,412,428,427,-1,411,447,412,-1,412,413,429,428,-1,412,447,413,-1,413,414,430,429,-1,413,447,414,-1,415,416,432,431,-1,415,431,446,430,-1,416,417,433,432,-1,417,418,434,433,-1,418,419,435,434,-1,419,420,436,435,-1,420,421,437,436,-1,421,422,438,437,-1,422,423,439,438,-1,423,424,440,439,-1,424,425,441,440,-1,425,426,442,441,-1,426,427,443,442,-1,427,428,444,443,-1,428,429,445,444,-1,429,430,446,445,-1,431,432,449,448,-1,431,448,463,446,-1,432,433,450,449,-1};
			return value;
		}
		private int[] getIndexedFaceSet_5_1013_coordIndex_3()
		{
			int[] value = {433,434,451,450,-1,434,435,452,451,-1,435,436,453,452,-1,436,437,454,453,-1,437,438,455,454,-1,438,439,456,455,-1,439,440,457,456,-1,440,441,458,457,-1,441,442,459,458,-1,442,443,460,459,-1,443,444,461,460,-1,444,445,462,461,-1,445,446,463,462,-1,448,449,467,466,-1,448,466,465,463,-1,449,450,468,467,-1,450,451,469,468,-1,451,452,470,469,-1,452,453,471,470,-1,453,454,472,471,-1,454,455,473,472,-1,455,456,474,473,-1,456,457,475,474,-1,457,458,476,475,-1,458,459,477,476,-1,459,460,478,477,-1,460,461,479,478,-1,461,462,464,479,-1,462,463,465,464,-1,464,465,481,480,-1,464,480,495,479,-1,465,466,482,481,-1,466,467,483,482,-1,467,468,484,483,-1,468,469,485,484,-1,469,470,486,485,-1,470,471,487,486,-1,471,472,488,487,-1,472,473,489,488,-1,473,474,490,489,-1,474,475,491,490,-1,475,476,492,491,-1,476,477,493,492,-1,477,478,494,493,-1,478,479,495,494,-1,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,-1,496,497,513,512,-1,496,511,544,-1,496,512,527,511,-1,496,544,497,-1,497,498,514,513,-1,497,544,498,-1,498,499,515,514,-1,498,544,499,-1,499,500,516,515,-1,499,544,500,-1,500,501,517,516,-1,500,544,501,-1,501,502,518,517,-1,501,544,502,-1,502,503,519,518,-1,502,544,503,-1,503,504,520,519,-1,503,544,504,-1,504,505,521,520,-1,504,544,505,-1,505,506,522,521,-1,505,544,506,-1,506,507,523,522,-1,506,544,507,-1,507,508,524,523,-1,507,544,508,-1,508,509,525,524,-1,508,544,509,-1,509,510,526,525,-1,509,544,510,-1,510,511,527,526,-1,510,544,511,-1,512,513,529,528,-1,512,528,543,527,-1,513,514,530,529,-1,514,515,531,530,-1,515,516,532,531,-1,516,517,533,532,-1,517,518,534,533,-1,518,519,535,534,-1,519,520,536,535,-1,520,521,537,536,-1,521,522,538,537,-1,522,523,539,538,-1,523,524,540,539,-1,524,525,541,540,-1,525,526,542,541,-1,526,527,543,542,-1,528,529,546,545,-1,528,545,560,543,-1,529,530,547,546,-1,530,531,548,547,-1,531,532,549,548,-1,532,533,550,549,-1,533,534,551,550,-1,534,535,552,551,-1,535,536,553,552,-1,536,537,554,553,-1,537,538,555,554,-1,538,539,556,555,-1,539,540,557,556,-1,540,541,558,557,-1,541,542,559,558,-1,542,543,560,559,-1,545,546,564,563,-1,545,563,562,560,-1,546,547,565,564,-1,547,548,566,565,-1,548,549,567,566,-1,549,550,568,567,-1,550,551,569,568,-1,551,552,570,569,-1,552,553,571,570,-1,553,554,572,571,-1,554,555,573,572,-1,555,556,574,573,-1,556,557,575,574,-1,557,558,576,575,-1,558,559,561,576,-1,559,560,562,561,-1,561,562,578,577,-1,561,577,592,576,-1,562,563,579,578,-1,563,564,580,579,-1,564,565,581,580,-1,565,566,582,581,-1,566,567,583,582,-1,567,568,584,583,-1,568,569,585,584,-1,569,570,586,585,-1,570,571,587,586,-1,571,572,588,587,-1,572,573,589,588,-1,573,574,590,589,-1,574,575,591,590,-1,575,576,592,591,-1,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,-1,593,594,603,602,-1,593,602,660,659,-1,593,656,594,-1,593,659,658,656,-1,594,595,604,603,-1,594,656,595,-1,595,596,605,604,-1,595,656,596,-1,596,597,606,605,-1,596,656,597,-1,597,598,607,606,-1,597,656,598,-1,598,599,608,607,-1,598,656,599,-1,599,600,609,608,-1,599,656,600,-1,600,601,610,609,-1,600,656,601,-1,601,656,658,673,-1,601,673,672,610,-1,602,603,612,611,-1,602,611,661,660,-1,603,604,613,612,-1,604,605,614,613,-1,605,606,615,614,-1,606,607,616,615,-1,607,608,617,616,-1,608,609,618,617,-1,609,610,619,618,-1,610,672,671,619,-1,611,612,621,620,-1,611,620,662,661,-1,612,613,622,621,-1,613,614,623,622,-1,614,615,624,623,-1,615,616,625,624,-1,616,617,626,625,-1,617,618,627,626,-1,618,619,628,627,-1,619,671,670,628,-1,620,621,630,629,-1,620,629,663,662,-1,621,622,631,630,-1,622,623,632,631,-1,623,624,633,632,-1,624,625,634,633,-1,625,626,635,634,-1,626,627,636,635,-1,627,628,637,636,-1,628,670,669,637,-1,629,630,639,638,-1,629,638,664,663,-1,630,631,640,639,-1,631,632,641,640,-1,632,633,642,641,-1,633,634,643,642,-1,634,635,644,643,-1};
			return value;
		}
		private int[] getIndexedFaceSet_5_1013_coordIndex_4()
		{
			int[] value = {635,636,645,644,-1,636,637,646,645,-1,637,669,668,646,-1,638,639,648,647,-1,638,647,665,664,-1,639,640,649,648,-1,640,641,650,649,-1,641,642,651,650,-1,642,643,652,651,-1,643,644,653,652,-1,644,645,654,653,-1,645,646,655,654,-1,646,668,667,655,-1,647,648,657,-1,647,657,666,665,-1,648,649,657,-1,649,650,657,-1,650,651,657,-1,651,652,657,-1,652,653,657,-1,653,654,657,-1,654,655,657,-1,655,667,666,657,-1,658,659,675,674,-1,658,674,689,673,-1,659,660,676,675,-1,660,661,677,676,-1,661,662,678,677,-1,662,663,679,678,-1,663,664,680,679,-1,664,665,681,680,-1,665,666,682,681,-1,666,667,683,682,-1,667,668,684,683,-1,668,669,685,684,-1,669,670,686,685,-1,670,671,687,686,-1,671,672,688,687,-1,672,673,689,688,-1,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,-1,690,722,785,724,-1,690,723,722,-1,690,724,770,723,-1,691,722,725,-1,691,725,784,726,-1,691,726,785,722,-1,692,725,727,-1,692,727,783,728,-1,692,728,784,725,-1,693,727,729,-1,693,729,782,730,-1,693,730,783,727,-1,694,729,731,-1,694,731,781,732,-1,694,732,782,729,-1,695,731,733,-1,695,733,780,734,-1,695,734,781,731,-1,696,733,735,-1,696,735,779,736,-1,696,736,780,733,-1,697,735,737,-1,697,737,778,738,-1,697,738,779,735,-1,698,737,739,-1,698,739,777,740,-1,698,740,778,737,-1,699,739,741,-1,699,741,776,742,-1,699,742,777,739,-1,700,741,743,-1,700,743,775,744,-1,700,744,776,741,-1,701,743,745,-1,701,745,774,746,-1,701,746,775,743,-1,702,745,747,-1,702,747,773,748,-1,702,748,774,745,-1,703,747,749,-1,703,749,772,750,-1,703,750,773,747,-1,704,749,751,-1,704,751,771,752,-1,704,752,772,749,-1,705,723,770,753,-1,705,751,723,-1,705,753,771,751,-1,706,754,755,-1,706,755,794,786,-1,706,786,801,754,-1,707,754,801,787,-1,707,756,754,-1,707,787,800,756,-1,708,756,800,788,-1,708,757,756,-1,708,788,799,757,-1,709,757,799,789,-1,709,758,757,-1,709,789,798,758,-1,710,758,798,790,-1,710,759,758,-1,710,790,732,781,759,-1,711,734,780,760,-1,711,759,781,734,-1,711,760,759,-1,712,736,779,761,-1,712,760,780,736,-1,712,761,760,-1,713,738,778,762,-1,713,761,779,738,-1,713,762,761,-1,714,740,777,763,-1,714,762,778,740,-1,714,763,762,-1,715,742,776,764,-1,715,763,777,742,-1,715,764,763,-1,716,744,775,765,-1,716,764,776,744,-1,716,765,764,-1,717,746,774,766,-1,717,765,775,746,-1,717,766,765,-1,718,748,773,797,767,-1,718,766,774,748,-1,718,767,766,-1,719,767,797,791,-1,719,768,767,-1,719,791,796,768,-1,720,768,796,792,-1,720,769,768,-1,720,792,795,769,-1,721,755,769,-1,721,769,795,793,-1,721,793,794,755,-1,722,723,751,749,747,745,743,741,739,737,735,733,731,729,727,725,-1,724,785,801,786,-1,724,786,794,770,-1,726,784,800,787,-1,726,787,801,785,-1,728,783,799,788,-1,728,788,800,784,-1,730,782,798,789,-1,730,789,799,783,-1,732,790,798,782,-1,750,772,796,791,-1,750,791,797,773,-1,752,771,795,792,-1,752,792,796,772,-1,753,770,794,793,-1,753,793,795,771,-1,754,756,804,803,-1,754,803,802,755,-1,755,802,817,769,-1,756,757,805,804,-1,757,758,806,805,-1,758,759,807,806,-1,759,760,808,807,-1,760,761,809,808,-1,761,762,810,809,-1,762,763,811,810,-1,763,764,812,811,-1,764,765,813,812,-1,765,766,814,813,-1,766,767,815,814,-1,767,768,816,815,-1,768,769,817,816,-1,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,-1,818,819,828,827,-1,818,827,885,884,-1,818,881,819,-1,818,884,883,881,-1,819,820,829,828,-1,819,881,820,-1,820,821,830,829,-1,820,881,821,-1,821,822,831,830,-1,821,881,822,-1,822,823,832,831,-1,822,881,823,-1,823,824,833,832,-1,823,881,824,-1,824,825,834,833,-1,824,881,825,-1,825,826,835,834,-1,825,881,826,-1,826,881,883,898,-1,826,898,897,835,-1,827,828,837,836,-1,827,836,886,885,-1,828,829,838,837,-1,829,830,839,838,-1,830,831,840,839,-1,831,832,841,840,-1,832,833,842,841,-1,833,834,843,842,-1,834,835,844,843,-1,835,897,896,844,-1,836,837,846,845,-1,836,845,887,886,-1,837,838,847,846,-1};
			return value;
		}
		private int[] getIndexedFaceSet_5_1013_coordIndex_5()
		{
			int[] value = {838,839,848,847,-1,839,840,849,848,-1,840,841,850,849,-1,841,842,851,850,-1,842,843,852,851,-1,843,844,853,852,-1,844,896,895,853,-1,845,846,855,854,-1,845,854,888,887,-1,846,847,856,855,-1,847,848,857,856,-1,848,849,858,857,-1,849,850,859,858,-1,850,851,860,859,-1,851,852,861,860,-1,852,853,862,861,-1,853,895,894,862,-1,854,855,864,863,-1,854,863,889,888,-1,855,856,865,864,-1,856,857,866,865,-1,857,858,867,866,-1,858,859,868,867,-1,859,860,869,868,-1,860,861,870,869,-1,861,862,871,870,-1,862,894,893,871,-1,863,864,873,872,-1,863,872,890,889,-1,864,865,874,873,-1,865,866,875,874,-1,866,867,876,875,-1,867,868,877,876,-1,868,869,878,877,-1,869,870,879,878,-1,870,871,880,879,-1,871,893,892,880,-1,872,873,882,-1,872,882,891,890,-1,873,874,882,-1,874,875,882,-1,875,876,882,-1,876,877,882,-1,877,878,882,-1,878,879,882,-1,879,880,882,-1,880,892,891,882,-1,883,884,900,899,-1,883,899,914,898,-1,884,885,901,900,-1,885,886,902,901,-1,886,887,903,902,-1,887,888,904,903,-1,888,889,905,904,-1,889,890,906,905,-1,890,891,907,906,-1,891,892,908,907,-1,892,893,909,908,-1,893,894,910,909,-1,894,895,911,910,-1,895,896,912,911,-1,896,897,913,912,-1,897,898,914,913,-1,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,-1,915,947,1010,949,-1,915,948,947,-1,915,949,995,948,-1,916,947,950,-1,916,950,1009,951,-1,916,951,1010,947,-1,917,950,952,-1,917,952,1008,953,-1,917,953,1009,950,-1,918,952,954,-1,918,954,1007,955,-1,918,955,1008,952,-1,919,954,956,-1,919,956,1006,957,-1,919,957,1007,954,-1,920,956,958,-1,920,958,1005,959,-1,920,959,1006,956,-1,921,958,960,-1,921,960,1004,961,-1,921,961,1005,958,-1,922,960,962,-1,922,962,1003,963,-1,922,963,1004,960,-1,923,962,964,-1,923,964,1002,965,-1,923,965,1003,962,-1,924,964,966,-1,924,966,1001,967,-1,924,967,1002,964,-1,925,966,968,-1,925,968,1000,969,-1,925,969,1001,966,-1,926,968,970,-1,926,970,999,971,-1,926,971,1000,968,-1,927,970,972,-1,927,972,998,973,-1,927,973,999,970,-1,928,972,974,-1,928,974,997,975,-1,928,975,998,972,-1,929,974,976,-1,929,976,996,977,-1,929,977,997,974,-1,930,948,995,978,-1,930,976,948,-1,930,978,996,976,-1,931,979,980,-1,931,980,1019,1011,-1,931,1011,1026,979,-1,932,979,1026,1012,-1,932,981,979,-1,932,1012,1025,981,-1,933,981,1025,1013,-1,933,982,981,-1,933,1013,1024,982,-1,934,982,1024,1014,-1,934,983,982,-1,934,1014,1023,983,-1,935,983,1023,1015,-1,935,984,983,-1,935,1015,957,1006,984,-1,936,959,1005,985,-1,936,984,1006,959,-1,936,985,984,-1,937,961,1004,986,-1,937,985,1005,961,-1,937,986,985,-1,938,963,1003,987,-1,938,986,1004,963,-1,938,987,986,-1,939,965,1002,988,-1,939,987,1003,965,-1,939,988,987,-1,940,967,1001,989,-1,940,988,1002,967,-1,940,989,988,-1,941,969,1000,990,-1,941,989,1001,969,-1,941,990,989,-1,942,971,999,991,-1,942,990,1000,971,-1,942,991,990,-1,943,973,998,1022,992,-1,943,991,999,973,-1,943,992,991,-1,944,992,1022,1016,-1,944,993,992,-1,944,1016,1021,993,-1,945,993,1021,1017,-1,945,994,993,-1,945,1017,1020,994,-1,946,980,994,-1,946,994,1020,1018,-1,946,1018,1019,980,-1,947,948,976,974,972,970,968,966,964,962,960,958,956,954,952,950,-1,949,1010,1026,1011,-1,949,1011,1019,995,-1,951,1009,1025,1012,-1,951,1012,1026,1010,-1,953,1008,1024,1013,-1,953,1013,1025,1009,-1,955,1007,1023,1014,-1,955,1014,1024,1008,-1,957,1015,1023,1007,-1,975,997,1021,1016,-1,975,1016,1022,998,-1,977,996,1020,1017,-1,977,1017,1021,997,-1,978,995,1019,1018,-1,978,1018,1020,996,-1,979,981,1029,1028,-1,979,1028,1027,980,-1,980,1027,1042,994,-1,981,982,1030,1029,-1,982,983,1031,1030,-1,983,984,1032,1031,-1,984,985,1033,1032,-1,985,986,1034,1033,-1,986,987,1035,1034,-1,987,988,1036,1035,-1,988,989,1037,1036,-1,989,990,1038,1037,-1,990,991,1039,1038,-1,991,992,1040,1039,-1,992,993,1041,1040,-1,993,994,1042,1041,-1,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,-1,1043,1044,1053,1054,-1,1043,1046,1045,1068,1067,1044,-1,1043,1047,1050,1046,-1,1043,1054,1058,1047,-1,1044,1048,1057,1053,-1,1044,1067,1069,1048,-1,1045,1046,1050,1049,-1};
			return value;
		}
		private int[] getIndexedFaceSet_5_1013_coordIndex_6()
		{
			int[] value = {1045,1049,1070,1068,-1,1047,1048,1069,1070,1049,1050,-1,1047,1058,1057,1048,-1,1051,1052,1064,1063,-1,1051,1055,1058,1054,1084,1083,-1,1051,1063,1059,1055,-1,1051,1083,1085,1052,-1,1052,1056,1060,1064,-1,1052,1085,1086,1053,1057,1056,-1,1053,1086,1084,1054,-1,1055,1056,1057,1058,-1,1055,1059,1060,1056,-1,1059,1062,1061,1072,1071,1060,-1,1059,1063,1066,1062,-1,1060,1071,1073,1064,-1,1061,1062,1066,1065,-1,1061,1065,1074,1072,-1,1063,1064,1073,1074,1065,1066,-1,1067,1068,1077,1076,-1,1067,1076,1075,1069,-1,1068,1070,1078,1077,-1,1069,1075,1078,1070,-1,1071,1072,1081,1080,-1,1071,1080,1079,1073,-1,1072,1074,1082,1081,-1,1073,1079,1082,1074,-1,1075,1076,1077,1078,-1,1079,1080,1081,1082,-1,1083,1084,1087,1090,-1,1083,1090,1089,1085,-1,1084,1086,1088,1087,-1,1085,1089,1088,1086,-1,1087,1088,1089,1090,-1,1091,1092,1101,1102,-1,1091,1094,1093,1116,1115,1092,-1,1091,1095,1098,1094,-1,1091,1102,1106,1095,-1,1092,1096,1105,1101,-1,1092,1115,1117,1096,-1,1093,1094,1098,1097,-1,1093,1097,1118,1116,-1,1095,1096,1117,1118,1097,1098,-1,1095,1106,1105,1096,-1,1099,1100,1112,1111,-1,1099,1103,1106,1102,1132,1131,-1,1099,1111,1107,1103,-1,1099,1131,1133,1100,-1,1100,1104,1108,1112,-1,1100,1133,1134,1101,1105,1104,-1,1101,1134,1132,1102,-1,1103,1104,1105,1106,-1,1103,1107,1108,1104,-1,1107,1110,1109,1120,1119,1108,-1,1107,1111,1114,1110,-1,1108,1119,1121,1112,-1,1109,1110,1114,1113,-1,1109,1113,1122,1120,-1,1111,1112,1121,1122,1113,1114,-1,1115,1116,1125,1124,-1,1115,1124,1123,1117,-1,1116,1118,1126,1125,-1,1117,1123,1126,1118,-1,1119,1120,1129,1128,-1,1119,1128,1127,1121,-1,1120,1122,1130,1129,-1,1121,1127,1130,1122,-1,1123,1124,1125,1126,-1,1127,1128,1129,1130,-1,1131,1132,1135,1138,-1,1131,1138,1137,1133,-1,1132,1134,1136,1135,-1,1133,1137,1136,1134,-1,1135,1136,1137,1138,-1,1139,1156,1157,-1,1139,1157,1203,1158,-1,1139,1158,1188,1156,-1,1140,1156,1188,1160,-1,1140,1159,1156,-1,1140,1160,1189,1159,-1,1141,1159,1189,1162,-1,1141,1161,1159,-1,1141,1162,1190,1161,-1,1142,1161,1190,1164,-1,1142,1163,1161,-1,1142,1164,1191,1163,-1,1143,1163,1191,1166,-1,1143,1165,1163,-1,1143,1166,1192,1165,-1,1144,1165,1192,1168,-1,1144,1167,1165,-1,1144,1168,1193,1167,-1,1145,1167,1193,1170,-1,1145,1169,1167,-1,1145,1170,1194,1169,-1,1146,1169,1194,1172,-1,1146,1171,1169,-1,1146,1172,1195,1171,-1,1147,1171,1195,1174,-1,1147,1173,1171,-1,1147,1174,1196,1173,-1,1148,1173,1196,1176,-1,1148,1175,1173,-1,1148,1176,1197,1175,-1,1149,1175,1197,1178,-1,1149,1177,1175,-1,1149,1178,1198,1177,-1,1150,1177,1198,1180,-1,1150,1179,1177,-1,1150,1180,1199,1179,-1,1151,1179,1199,1182,-1,1151,1181,1179,-1,1151,1182,1200,1181,-1,1152,1181,1200,1184,-1,1152,1183,1181,-1,1152,1184,1201,1183,-1,1153,1183,1201,1186,-1,1153,1185,1183,-1,1153,1186,1202,1185,-1,1154,1157,1185,-1,1154,1185,1202,1187,-1,1154,1187,1203,1157,-1,1155,1220,1242,1235,-1,1155,1221,1243,1220,-1,1155,1222,1221,-1,1155,1223,1222,-1,1155,1224,1223,-1,1155,1225,1224,-1,1155,1226,1225,-1,1155,1227,1226,-1,1155,1228,1227,-1,1155,1229,1228,-1,1155,1230,1229,-1,1155,1231,1230,-1,1155,1232,1231,-1,1155,1233,1232,-1,1155,1234,1233,-1,1155,1235,1234,-1,1156,1159,1161,1163,1165,1167,1169,1171,1173,1175,1177,1179,1181,1183,1185,1157,-1,1158,1203,1187,1219,1204,-1,1158,1204,1205,1160,1188,-1,1160,1205,1206,1162,1189,-1,1162,1206,1207,1164,1190,-1,1164,1207,1208,1166,1191,-1,1166,1208,1209,1168,1192,-1,1168,1209,1210,1170,1193,-1,1170,1210,1211,1172,1194,-1,1172,1211,1212,1174,1195,-1,1174,1212,1213,1176,1196,-1,1176,1213,1214,1178,1197,-1,1178,1214,1215,1180,1198,-1,1180,1215,1216,1182,1199,-1,1182,1216,1217,1184,1200,-1,1184,1217,1218,1186,1201,-1,1186,1218,1219,1187,1202,-1,1204,1219,1240,1241,1244,1237,1236,-1,1204,1236,1237,1245,1239,1238,1205,-1,1205,1238,1239,1221,1222,1206,-1,1206,1222,1223,1207,-1,1207,1223,1224,1208,-1,1208,1224,1225,1209,-1,1209,1225,1226,1210,-1,1210,1226,1227,1211,-1,1211,1227,1228,1212,-1,1212,1228,1229,1213,-1,1213,1229,1230,1214,-1,1214,1230,1231,1215,-1,1215,1231,1232,1216,-1,1216,1232,1233,1217,-1,1217,1233,1234,1218,-1,1218,1234,1235,1241,1240,1219,-1,1220,1243,1262,1263,1260,1261,-1,1220,1261,1260,1265,1264,1242,-1,1221,1239,1245,1243,-1,1235,1242,1244,1241,-1,1237,1244,1250,1247,-1,1237,1247,1249,1245,-1,1242,1251,1250,1244,-1,1242,1264,1265,1258,1255,1251,-1,1243,1245,1249,1248,-1,1243,1248,1254,1256,1263,1262,-1,1246,1252,1256,1254,-1,1246,1253,1259,1255,-1,1246,1254,1257,1253,-1,1246,1255,1258,1252,-1,1247,1250,1259,1253,-1,1247,1253,1257,1249,-1,1248,1249,1257,1254,-1,1250,1251,1255,1259,-1,1252,1258,1268,1266,-1,1252,1266,1271,1256,-1,1256,1271,1270,1263,-1,1258,1265,1269,1268,-1,1260,1263};
			return value;
		}
		private int[] getIndexedFaceSet_5_1013_coordIndex_7()
		{
			int[] value = {1270,1267,-1,1260,1267,1269,1265,-1,1266,1268,1274,1272,-1,1266,1272,1277,1271,-1,1267,1270,1282,1278,-1,1267,1278,1281,1269,-1,1268,1269,1275,1274,-1,1269,1281,1280,1285,1275,-1,1270,1271,1277,1276,-1,1270,1276,1286,1283,1282,-1,1272,1273,1276,1277,-1,1272,1274,1275,1273,-1,1273,1275,1285,1284,-1,1273,1284,1286,1276,-1,1278,1279,1280,1281,-1,1278,1282,1283,1279,-1,1279,1283,1286,1284,-1,1279,1284,1285,1280,-1,1287,1304,1305,-1,1287,1305,1351,1306,-1,1287,1306,1336,1304,-1,1288,1304,1336,1308,-1,1288,1307,1304,-1,1288,1308,1337,1307,-1,1289,1307,1337,1310,-1,1289,1309,1307,-1,1289,1310,1338,1309,-1,1290,1309,1338,1312,-1,1290,1311,1309,-1,1290,1312,1339,1311,-1,1291,1311,1339,1314,-1,1291,1313,1311,-1,1291,1314,1340,1313,-1,1292,1313,1340,1316,-1,1292,1315,1313,-1,1292,1316,1341,1315,-1,1293,1315,1341,1318,-1,1293,1317,1315,-1,1293,1318,1342,1317,-1,1294,1317,1342,1320,-1,1294,1319,1317,-1,1294,1320,1343,1319,-1,1295,1319,1343,1322,-1,1295,1321,1319,-1,1295,1322,1344,1321,-1,1296,1321,1344,1324,-1,1296,1323,1321,-1,1296,1324,1345,1323,-1,1297,1323,1345,1326,-1,1297,1325,1323,-1,1297,1326,1346,1325,-1,1298,1325,1346,1328,-1,1298,1327,1325,-1,1298,1328,1347,1327,-1,1299,1327,1347,1330,-1,1299,1329,1327,-1,1299,1330,1348,1329,-1,1300,1329,1348,1332,-1,1300,1331,1329,-1,1300,1332,1349,1331,-1,1301,1331,1349,1334,-1,1301,1333,1331,-1,1301,1334,1350,1333,-1,1302,1305,1333,-1,1302,1333,1350,1335,-1,1302,1335,1351,1305,-1,1303,1368,1390,1383,-1,1303,1369,1391,1368,-1,1303,1370,1369,-1,1303,1371,1370,-1,1303,1372,1371,-1,1303,1373,1372,-1,1303,1374,1373,-1,1303,1375,1374,-1,1303,1376,1375,-1,1303,1377,1376,-1,1303,1378,1377,-1,1303,1379,1378,-1,1303,1380,1379,-1,1303,1381,1380,-1,1303,1382,1381,-1,1303,1383,1382,-1,1304,1307,1309,1311,1313,1315,1317,1319,1321,1323,1325,1327,1329,1331,1333,1305,-1,1306,1351,1335,1367,1352,-1,1306,1352,1353,1308,1336,-1,1308,1353,1354,1310,1337,-1,1310,1354,1355,1312,1338,-1,1312,1355,1356,1314,1339,-1,1314,1356,1357,1316,1340,-1,1316,1357,1358,1318,1341,-1,1318,1358,1359,1320,1342,-1,1320,1359,1360,1322,1343,-1,1322,1360,1361,1324,1344,-1,1324,1361,1362,1326,1345,-1,1326,1362,1363,1328,1346,-1,1328,1363,1364,1330,1347,-1,1330,1364,1365,1332,1348,-1,1332,1365,1366,1334,1349,-1,1334,1366,1367,1335,1350,-1,1352,1367,1388,1389,1392,1385,1384,-1,1352,1384,1385,1393,1387,1386,1353,-1,1353,1386,1387,1369,1370,1354,-1,1354,1370,1371,1355,-1,1355,1371,1372,1356,-1,1356,1372,1373,1357,-1,1357,1373,1374,1358,-1,1358,1374,1375,1359,-1,1359,1375,1376,1360,-1,1360,1376,1377,1361,-1,1361,1377,1378,1362,-1,1362,1378,1379,1363,-1,1363,1379,1380,1364,-1,1364,1380,1381,1365,-1,1365,1381,1382,1366,-1,1366,1382,1383,1389,1388,1367,-1,1368,1391,1410,1411,1408,1409,-1,1368,1409,1408,1413,1412,1390,-1,1369,1387,1393,1391,-1,1383,1390,1392,1389,-1,1385,1392,1398,1395,-1,1385,1395,1397,1393,-1,1390,1399,1398,1392,-1,1390,1412,1413,1406,1403,1399,-1,1391,1393,1397,1396,-1,1391,1396,1402,1404,1411,1410,-1,1394,1400,1404,1402,-1,1394,1401,1407,1403,-1,1394,1402,1405,1401,-1,1394,1403,1406,1400,-1,1395,1398,1407,1401,-1,1395,1401,1405,1397,-1,1396,1397,1405,1402,-1,1398,1399,1403,1407,-1,1400,1406,1416,1414,-1,1400,1414,1419,1404,-1,1404,1419,1418,1411,-1,1406,1413,1417,1416,-1,1408,1411,1418,1415,-1,1408,1415,1417,1413,-1,1414,1416,1422,1420,-1,1414,1420,1425,1419,-1,1415,1418,1430,1426,-1,1415,1426,1429,1417,-1,1416,1417,1423,1422,-1,1417,1429,1428,1433,1423,-1,1418,1419,1425,1424,-1,1418,1424,1434,1431,1430,-1,1420,1421,1424,1425,-1,1420,1422,1423,1421,-1,1421,1423,1433,1432,-1,1421,1432,1434,1424,-1,1426,1427,1428,1429,-1,1426,1430,1431,1427,-1,1427,1431,1434,1432,-1,1427,1432,1433,1428,-1,1435,1452,1453,-1,1435,1453,1499,1454,-1,1435,1454,1484,1452,-1,1436,1452,1484,1456,-1,1436,1455,1452,-1,1436,1456,1485,1455,-1,1437,1455,1485,1458,-1,1437,1457,1455,-1,1437,1458,1486,1457,-1,1438,1457,1486,1460,-1,1438,1459,1457,-1,1438,1460,1487,1459,-1,1439,1459,1487,1462,-1,1439,1461,1459,-1,1439,1462,1488,1461,-1,1440,1461,1488,1464,-1,1440,1463,1461,-1,1440,1464,1489,1463,-1,1441,1463,1489,1466,-1,1441,1465,1463,-1,1441,1466,1490,1465,-1,1442,1465,1490,1468,-1,1442,1467,1465,-1,1442,1468,1491,1467,-1,1443,1467,1491,1470,-1,1443,1469,1467,-1,1443,1470,1492,1469,-1,1444,1469,1492,1472,-1,1444,1471,1469,-1,1444,1472,1493,1471,-1,1445,1471,1493,1474,-1,1445,1473,1471,-1,1445,1474,1494,1473,-1,1446,1473,1494,1476,-1,1446,1475,1473,-1,1446,1476,1495,1475,-1,1447,1475,1495,1478,-1,1447,1477,1475,-1,1447,1478,1496,1477,-1,1448,1477,1496,1480,-1,1448,1479,1477,-1,1448,1480,1497,1479,-1,1449,1479,1497,1482,-1,1449,1481,1479,-1,1449,1482};
			return value;
		}
		private int[] getIndexedFaceSet_5_1013_coordIndex_8()
		{
			int[] value = {1498,1481,-1,1450,1453,1481,-1,1450,1481,1498,1483,-1,1450,1483,1499,1453,-1,1451,1516,1538,1531,-1,1451,1517,1539,1516,-1,1451,1518,1517,-1,1451,1519,1518,-1,1451,1520,1519,-1,1451,1521,1520,-1,1451,1522,1521,-1,1451,1523,1522,-1,1451,1524,1523,-1,1451,1525,1524,-1,1451,1526,1525,-1,1451,1527,1526,-1,1451,1528,1527,-1,1451,1529,1528,-1,1451,1530,1529,-1,1451,1531,1530,-1,1452,1455,1457,1459,1461,1463,1465,1467,1469,1471,1473,1475,1477,1479,1481,1453,-1,1454,1499,1483,1515,1500,-1,1454,1500,1501,1456,1484,-1,1456,1501,1502,1458,1485,-1,1458,1502,1503,1460,1486,-1,1460,1503,1504,1462,1487,-1,1462,1504,1505,1464,1488,-1,1464,1505,1506,1466,1489,-1,1466,1506,1507,1468,1490,-1,1468,1507,1508,1470,1491,-1,1470,1508,1509,1472,1492,-1,1472,1509,1510,1474,1493,-1,1474,1510,1511,1476,1494,-1,1476,1511,1512,1478,1495,-1,1478,1512,1513,1480,1496,-1,1480,1513,1514,1482,1497,-1,1482,1514,1515,1483,1498,-1,1500,1515,1536,1537,1540,1533,1532,-1,1500,1532,1533,1541,1535,1534,1501,-1,1501,1534,1535,1517,1518,1502,-1,1502,1518,1519,1503,-1,1503,1519,1520,1504,-1,1504,1520,1521,1505,-1,1505,1521,1522,1506,-1,1506,1522,1523,1507,-1,1507,1523,1524,1508,-1,1508,1524,1525,1509,-1,1509,1525,1526,1510,-1,1510,1526,1527,1511,-1,1511,1527,1528,1512,-1,1512,1528,1529,1513,-1,1513,1529,1530,1514,-1,1514,1530,1531,1537,1536,1515,-1,1516,1539,1558,1559,1556,1557,-1,1516,1557,1556,1561,1560,1538,-1,1517,1535,1541,1539,-1,1531,1538,1540,1537,-1,1533,1540,1546,1543,-1,1533,1543,1545,1541,-1,1538,1547,1546,1540,-1,1538,1560,1561,1554,1551,1547,-1,1539,1541,1545,1544,-1,1539,1544,1550,1552,1559,1558,-1,1542,1548,1552,1550,-1,1542,1549,1555,1551,-1,1542,1550,1553,1549,-1,1542,1551,1554,1548,-1,1543,1546,1555,1549,-1,1543,1549,1553,1545,-1,1544,1545,1553,1550,-1,1546,1547,1551,1555,-1,1548,1554,1564,1562,-1,1548,1562,1567,1552,-1,1552,1567,1566,1559,-1,1554,1561,1565,1564,-1,1556,1559,1566,1563,-1,1556,1563,1565,1561,-1,1562,1564,1570,1568,-1,1562,1568,1573,1567,-1,1563,1566,1578,1574,-1,1563,1574,1577,1565,-1,1564,1565,1571,1570,-1,1565,1577,1576,1581,1571,-1,1566,1567,1573,1572,-1,1566,1572,1582,1579,1578,-1,1568,1569,1572,1573,-1,1568,1570,1571,1569,-1,1569,1571,1581,1580,-1,1569,1580,1582,1572,-1,1574,1575,1576,1577,-1,1574,1578,1579,1575,-1,1575,1579,1582,1580,-1,1575,1580,1581,1576,-1,1583,1600,1601,-1,1583,1601,1647,1602,-1,1583,1602,1632,1600,-1,1584,1600,1632,1604,-1,1584,1603,1600,-1,1584,1604,1633,1603,-1,1585,1603,1633,1606,-1,1585,1605,1603,-1,1585,1606,1634,1605,-1,1586,1605,1634,1608,-1,1586,1607,1605,-1,1586,1608,1635,1607,-1,1587,1607,1635,1610,-1,1587,1609,1607,-1,1587,1610,1636,1609,-1,1588,1609,1636,1612,-1,1588,1611,1609,-1,1588,1612,1637,1611,-1,1589,1611,1637,1614,-1,1589,1613,1611,-1,1589,1614,1638,1613,-1,1590,1613,1638,1616,-1,1590,1615,1613,-1,1590,1616,1639,1615,-1,1591,1615,1639,1618,-1,1591,1617,1615,-1,1591,1618,1640,1617,-1,1592,1617,1640,1620,-1,1592,1619,1617,-1,1592,1620,1641,1619,-1,1593,1619,1641,1622,-1,1593,1621,1619,-1,1593,1622,1642,1621,-1,1594,1621,1642,1624,-1,1594,1623,1621,-1,1594,1624,1643,1623,-1,1595,1623,1643,1626,-1,1595,1625,1623,-1,1595,1626,1644,1625,-1,1596,1625,1644,1628,-1,1596,1627,1625,-1,1596,1628,1645,1627,-1,1597,1627,1645,1630,-1,1597,1629,1627,-1,1597,1630,1646,1629,-1,1598,1601,1629,-1,1598,1629,1646,1631,-1,1598,1631,1647,1601,-1,1599,1664,1686,1679,-1,1599,1665,1687,1664,-1,1599,1666,1665,-1,1599,1667,1666,-1,1599,1668,1667,-1,1599,1669,1668,-1,1599,1670,1669,-1,1599,1671,1670,-1,1599,1672,1671,-1,1599,1673,1672,-1,1599,1674,1673,-1,1599,1675,1674,-1,1599,1676,1675,-1,1599,1677,1676,-1,1599,1678,1677,-1,1599,1679,1678,-1,1600,1603,1605,1607,1609,1611,1613,1615,1617,1619,1621,1623,1625,1627,1629,1601,-1,1602,1647,1631,1663,1648,-1,1602,1648,1649,1604,1632,-1,1604,1649,1650,1606,1633,-1,1606,1650,1651,1608,1634,-1,1608,1651,1652,1610,1635,-1,1610,1652,1653,1612,1636,-1,1612,1653,1654,1614,1637,-1,1614,1654,1655,1616,1638,-1,1616,1655,1656,1618,1639,-1,1618,1656,1657,1620,1640,-1,1620,1657,1658,1622,1641,-1,1622,1658,1659,1624,1642,-1,1624,1659,1660,1626,1643,-1,1626,1660,1661,1628,1644,-1,1628,1661,1662,1630,1645,-1,1630,1662,1663,1631,1646,-1,1648,1663,1684,1685,1688,1681,1680,-1,1648,1680,1681,1689,1683,1682,1649,-1,1649,1682,1683,1665,1666,1650,-1,1650,1666,1667,1651,-1,1651,1667,1668,1652,-1,1652,1668,1669,1653,-1,1653,1669,1670,1654,-1,1654,1670,1671,1655,-1,1655,1671,1672,1656,-1,1656,1672,1673,1657,-1,1657,1673,1674,1658,-1,1658,1674,1675,1659,-1,1659,1675,1676,1660,-1,1660,1676,1677,1661,-1,1661,1677,1678,1662,-1,1662,1678,1679,1685,1684,1663,-1,1664,1687,1706,1707,1704,1705,-1,1664,1705,1704,1709};
			return value;
		}
		private int[] getIndexedFaceSet_5_1013_coordIndex_9()
		{
			int[] value = {1708,1686,-1,1665,1683,1689,1687,-1,1679,1686,1688,1685,-1,1681,1688,1694,1691,-1,1681,1691,1693,1689,-1,1686,1695,1694,1688,-1,1686,1708,1709,1702,1699,1695,-1,1687,1689,1693,1692,-1,1687,1692,1698,1700,1707,1706,-1,1690,1696,1700,1698,-1,1690,1697,1703,1699,-1,1690,1698,1701,1697,-1,1690,1699,1702,1696,-1,1691,1694,1703,1697,-1,1691,1697,1701,1693,-1,1692,1693,1701,1698,-1,1694,1695,1699,1703,-1,1696,1702,1712,1710,-1,1696,1710,1715,1700,-1,1700,1715,1714,1707,-1,1702,1709,1713,1712,-1,1704,1707,1714,1711,-1,1704,1711,1713,1709,-1,1710,1712,1718,1716,-1,1710,1716,1721,1715,-1,1711,1714,1726,1722,-1,1711,1722,1725,1713,-1,1712,1713,1719,1718,-1,1713,1725,1724,1729,1719,-1,1714,1715,1721,1720,-1,1714,1720,1730,1727,1726,-1,1716,1717,1720,1721,-1,1716,1718,1719,1717,-1,1717,1719,1729,1728,-1,1717,1728,1730,1720,-1,1722,1723,1724,1725,-1,1722,1726,1727,1723,-1,1723,1727,1730,1728,-1,1723,1728,1729,1724,-1,1731,1732,1733,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1745,1746,-1,1731,1746,1762,1747,-1,1731,1747,1748,1732,-1,1732,1748,1749,1733,-1,1733,1749,1750,1734,-1,1734,1750,1751,1735,-1,1735,1751,1752,1736,-1,1736,1752,1753,1737,-1,1737,1753,1754,1738,-1,1738,1754,1755,1739,-1,1739,1755,1756,1740,-1,1740,1756,1757,1741,-1,1741,1757,1758,1742,-1,1742,1758,1759,1743,-1,1743,1759,1760,1744,-1,1744,1760,1761,1745,-1,1745,1761,1762,1746,-1,1747,1762,1765,1764,-1,1747,1764,1763,1748,-1,1748,1763,1778,1749,-1,1749,1778,1777,1750,-1,1750,1777,1776,1751,-1,1751,1776,1775,1752,-1,1752,1775,1774,1753,-1,1753,1774,1773,1754,-1,1754,1773,1772,1755,-1,1755,1772,1771,1756,-1,1756,1771,1770,1757,-1,1757,1770,1769,1758,-1,1758,1769,1768,1759,-1,1759,1768,1767,1760,-1,1760,1767,1766,1761,-1,1761,1766,1765,1762,-1,1763,1764,1780,1779,-1,1763,1779,1794,1778,-1,1764,1765,1781,1780,-1,1765,1766,1782,1781,-1,1766,1767,1783,1782,-1,1767,1768,1784,1783,-1,1768,1769,1785,1784,-1,1769,1770,1786,1785,-1,1770,1771,1787,1786,-1,1771,1772,1788,1787,-1,1772,1773,1789,1788,-1,1773,1774,1790,1789,-1,1774,1775,1791,1790,-1,1775,1776,1792,1791,-1,1776,1777,1793,1792,-1,1777,1778,1794,1793,-1,1779,1780,1796,1795,-1,1779,1795,1810,1794,-1,1780,1781,1797,1796,-1,1781,1782,1798,1797,-1,1782,1783,1799,1798,-1,1783,1784,1800,1799,-1,1784,1785,1801,1800,-1,1785,1786,1802,1801,-1,1786,1787,1803,1802,-1,1787,1788,1804,1803,-1,1788,1789,1805,1804,-1,1789,1790,1806,1805,-1,1790,1791,1807,1806,-1,1791,1792,1808,1807,-1,1792,1793,1809,1808,-1,1793,1794,1810,1809,-1,1795,1796,1797,1798,1799,1800,1801,1802,1803,1804,1805,1806,1807,1808,1809,1810,-1,1811,1812,1813,1814,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,-1,1811,1826,1842,1827,-1,1811,1827,1828,1812,-1,1812,1828,1829,1813,-1,1813,1829,1830,1814,-1,1814,1830,1831,1815,-1,1815,1831,1832,1816,-1,1816,1832,1833,1817,-1,1817,1833,1834,1818,-1,1818,1834,1835,1819,-1,1819,1835,1836,1820,-1,1820,1836,1837,1821,-1,1821,1837,1838,1822,-1,1822,1838,1839,1823,-1,1823,1839,1840,1824,-1,1824,1840,1841,1825,-1,1825,1841,1842,1826,-1,1827,1842,1845,1844,-1,1827,1844,1843,1828,-1,1828,1843,1858,1829,-1,1829,1858,1857,1830,-1,1830,1857,1856,1831,-1,1831,1856,1855,1832,-1,1832,1855,1854,1833,-1,1833,1854,1853,1834,-1,1834,1853,1852,1835,-1,1835,1852,1851,1836,-1,1836,1851,1850,1837,-1,1837,1850,1849,1838,-1,1838,1849,1848,1839,-1,1839,1848,1847,1840,-1,1840,1847,1846,1841,-1,1841,1846,1845,1842,-1,1843,1844,1860,1859,-1,1843,1859,1874,1858,-1,1844,1845,1861,1860,-1,1845,1846,1862,1861,-1,1846,1847,1863,1862,-1,1847,1848,1864,1863,-1,1848,1849,1865,1864,-1,1849,1850,1866,1865,-1,1850,1851,1867,1866,-1,1851,1852,1868,1867,-1,1852,1853,1869,1868,-1,1853,1854,1870,1869,-1,1854,1855,1871,1870,-1,1855,1856,1872,1871,-1,1856,1857,1873,1872,-1,1857,1858,1874,1873,-1,1859,1860,1876,1875,-1,1859,1875,1890,1874,-1,1860,1861,1877,1876,-1,1861,1862,1878,1877,-1,1862,1863,1879,1878,-1,1863,1864,1880,1879,-1,1864,1865,1881,1880,-1,1865,1866,1882,1881,-1,1866,1867,1883,1882,-1,1867,1868,1884,1883,-1,1868,1869,1885,1884,-1,1869,1870,1886,1885,-1,1870,1871,1887,1886,-1,1871,1872,1888,1887,-1,1872,1873,1889,1888,-1,1873,1874,1890,1889,-1,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,-1,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1904,1905,1906,-1,1891,1906,1922,1907,-1,1891,1907,1908,1892,-1,1892,1908,1909,1893,-1,1893,1909,1910,1894,-1,1894,1910,1911,1895,-1,1895,1911,1912,1896,-1,1896,1912,1913,1897,-1,1897,1913,1914,1898,-1,1898,1914,1915,1899,-1,1899,1915,1916,1900,-1,1900,1916,1917,1901,-1,1901,1917,1918,1902,-1,1902,1918,1919,1903,-1,1903,1919,1920,1904,-1,1904,1920,1921,1905,-1,1905};
			return value;
		}
		private int[] getIndexedFaceSet_5_1013_coordIndex_10()
		{
			int[] value = {1921,1922,1906,-1,1907,1922,1925,1924,-1,1907,1924,1923,1908,-1,1908,1923,1938,1909,-1,1909,1938,1937,1910,-1,1910,1937,1936,1911,-1,1911,1936,1935,1912,-1,1912,1935,1934,1913,-1,1913,1934,1933,1914,-1,1914,1933,1932,1915,-1,1915,1932,1931,1916,-1,1916,1931,1930,1917,-1,1917,1930,1929,1918,-1,1918,1929,1928,1919,-1,1919,1928,1927,1920,-1,1920,1927,1926,1921,-1,1921,1926,1925,1922,-1,1923,1924,1940,1939,-1,1923,1939,1954,1938,-1,1924,1925,1941,1940,-1,1925,1926,1942,1941,-1,1926,1927,1943,1942,-1,1927,1928,1944,1943,-1,1928,1929,1945,1944,-1,1929,1930,1946,1945,-1,1930,1931,1947,1946,-1,1931,1932,1948,1947,-1,1932,1933,1949,1948,-1,1933,1934,1950,1949,-1,1934,1935,1951,1950,-1,1935,1936,1952,1951,-1,1936,1937,1953,1952,-1,1937,1938,1954,1953,-1,1939,1940,1956,1955,-1,1939,1955,1970,1954,-1,1940,1941,1957,1956,-1,1941,1942,1958,1957,-1,1942,1943,1959,1958,-1,1943,1944,1960,1959,-1,1944,1945,1961,1960,-1,1945,1946,1962,1961,-1,1946,1947,1963,1962,-1,1947,1948,1964,1963,-1,1948,1949,1965,1964,-1,1949,1950,1966,1965,-1,1950,1951,1967,1966,-1,1951,1952,1968,1967,-1,1952,1953,1969,1968,-1,1953,1954,1970,1969,-1,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,-1,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,-1,1971,1986,2002,1987,-1,1971,1987,1988,1972,-1,1972,1988,1989,1973,-1,1973,1989,1990,1974,-1,1974,1990,1991,1975,-1,1975,1991,1992,1976,-1,1976,1992,1993,1977,-1,1977,1993,1994,1978,-1,1978,1994,1995,1979,-1,1979,1995,1996,1980,-1,1980,1996,1997,1981,-1,1981,1997,1998,1982,-1,1982,1998,1999,1983,-1,1983,1999,2000,1984,-1,1984,2000,2001,1985,-1,1985,2001,2002,1986,-1,1987,2002,2005,2004,-1,1987,2004,2003,1988,-1,1988,2003,2018,1989,-1,1989,2018,2017,1990,-1,1990,2017,2016,1991,-1,1991,2016,2015,1992,-1,1992,2015,2014,1993,-1,1993,2014,2013,1994,-1,1994,2013,2012,1995,-1,1995,2012,2011,1996,-1,1996,2011,2010,1997,-1,1997,2010,2009,1998,-1,1998,2009,2008,1999,-1,1999,2008,2007,2000,-1,2000,2007,2006,2001,-1,2001,2006,2005,2002,-1,2003,2004,2020,2019,-1,2003,2019,2034,2018,-1,2004,2005,2021,2020,-1,2005,2006,2022,2021,-1,2006,2007,2023,2022,-1,2007,2008,2024,2023,-1,2008,2009,2025,2024,-1,2009,2010,2026,2025,-1,2010,2011,2027,2026,-1,2011,2012,2028,2027,-1,2012,2013,2029,2028,-1,2013,2014,2030,2029,-1,2014,2015,2031,2030,-1,2015,2016,2032,2031,-1,2016,2017,2033,2032,-1,2017,2018,2034,2033,-1,2019,2020,2036,2035,-1,2019,2035,2050,2034,-1,2020,2021,2037,2036,-1,2021,2022,2038,2037,-1,2022,2023,2039,2038,-1,2023,2024,2040,2039,-1,2024,2025,2041,2040,-1,2025,2026,2042,2041,-1,2026,2027,2043,2042,-1,2027,2028,2044,2043,-1,2028,2029,2045,2044,-1,2029,2030,2046,2045,-1,2030,2031,2047,2046,-1,2031,2032,2048,2047,-1,2032,2033,2049,2048,-1,2033,2034,2050,2049,-1,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,-1,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066,-1,2051,2066,2082,2067,-1,2051,2067,2068,2052,-1,2052,2068,2069,2053,-1,2053,2069,2070,2054,-1,2054,2070,2071,2055,-1,2055,2071,2072,2056,-1,2056,2072,2073,2057,-1,2057,2073,2074,2058,-1,2058,2074,2075,2059,-1,2059,2075,2076,2060,-1,2060,2076,2077,2061,-1,2061,2077,2078,2062,-1,2062,2078,2079,2063,-1,2063,2079,2080,2064,-1,2064,2080,2081,2065,-1,2065,2081,2082,2066,-1,2067,2082,2085,2084,-1,2067,2084,2083,2068,-1,2068,2083,2098,2069,-1,2069,2098,2097,2070,-1,2070,2097,2096,2071,-1,2071,2096,2095,2072,-1,2072,2095,2094,2073,-1,2073,2094,2093,2074,-1,2074,2093,2092,2075,-1,2075,2092,2091,2076,-1,2076,2091,2090,2077,-1,2077,2090,2089,2078,-1,2078,2089,2088,2079,-1,2079,2088,2087,2080,-1,2080,2087,2086,2081,-1,2081,2086,2085,2082,-1,2083,2084,2100,2099,-1,2083,2099,2114,2098,-1,2084,2085,2101,2100,-1,2085,2086,2102,2101,-1,2086,2087,2103,2102,-1,2087,2088,2104,2103,-1,2088,2089,2105,2104,-1,2089,2090,2106,2105,-1,2090,2091,2107,2106,-1,2091,2092,2108,2107,-1,2092,2093,2109,2108,-1,2093,2094,2110,2109,-1,2094,2095,2111,2110,-1,2095,2096,2112,2111,-1,2096,2097,2113,2112,-1,2097,2098,2114,2113,-1,2099,2100,2116,2115,-1,2099,2115,2130,2114,-1,2100,2101,2117,2116,-1,2101,2102,2118,2117,-1,2102,2103,2119,2118,-1,2103,2104,2120,2119,-1,2104,2105,2121,2120,-1,2105,2106,2122,2121,-1,2106,2107,2123,2122,-1,2107,2108,2124,2123,-1,2108,2109,2125,2124,-1,2109,2110,2126,2125,-1,2110,2111,2127,2126,-1,2111,2112,2128,2127,-1,2112,2113,2129,2128,-1,2113,2114,2130,2129,-1,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2128,2129,2130,-1,2131,2132,2133,2134,2135,2136,2137,2138,2139,2140,2141,2142,2143,2144,2145,2146,-1,2131,2146,2162,2147,-1,2131,2147,2148,2132,-1,2132,2148,2149,2133};
			return value;
		}
		private int[] getIndexedFaceSet_5_1013_coordIndex_11()
		{
			int[] value = {-1,2133,2149,2150,2134,-1,2134,2150,2151,2135,-1,2135,2151,2152,2136,-1,2136,2152,2153,2137,-1,2137,2153,2154,2138,-1,2138,2154,2155,2139,-1,2139,2155,2156,2140,-1,2140,2156,2157,2141,-1,2141,2157,2158,2142,-1,2142,2158,2159,2143,-1,2143,2159,2160,2144,-1,2144,2160,2161,2145,-1,2145,2161,2162,2146,-1,2147,2162,2165,2164,-1,2147,2164,2163,2148,-1,2148,2163,2178,2149,-1,2149,2178,2177,2150,-1,2150,2177,2176,2151,-1,2151,2176,2175,2152,-1,2152,2175,2174,2153,-1,2153,2174,2173,2154,-1,2154,2173,2172,2155,-1,2155,2172,2171,2156,-1,2156,2171,2170,2157,-1,2157,2170,2169,2158,-1,2158,2169,2168,2159,-1,2159,2168,2167,2160,-1,2160,2167,2166,2161,-1,2161,2166,2165,2162,-1,2163,2164,2180,2179,-1,2163,2179,2194,2178,-1,2164,2165,2181,2180,-1,2165,2166,2182,2181,-1,2166,2167,2183,2182,-1,2167,2168,2184,2183,-1,2168,2169,2185,2184,-1,2169,2170,2186,2185,-1,2170,2171,2187,2186,-1,2171,2172,2188,2187,-1,2172,2173,2189,2188,-1,2173,2174,2190,2189,-1,2174,2175,2191,2190,-1,2175,2176,2192,2191,-1,2176,2177,2193,2192,-1,2177,2178,2194,2193,-1,2179,2180,2196,2195,-1,2179,2195,2210,2194,-1,2180,2181,2197,2196,-1,2181,2182,2198,2197,-1,2182,2183,2199,2198,-1,2183,2184,2200,2199,-1,2184,2185,2201,2200,-1,2185,2186,2202,2201,-1,2186,2187,2203,2202,-1,2187,2188,2204,2203,-1,2188,2189,2205,2204,-1,2189,2190,2206,2205,-1,2190,2191,2207,2206,-1,2191,2192,2208,2207,-1,2192,2193,2209,2208,-1,2193,2194,2210,2209,-1,2195,2196,2197,2198,2199,2200,2201,2202,2203,2204,2205,2206,2207,2208,2209,2210,-1,2229,2230,2231,2232,2233,2243,2244,2249,2250,2235,2236,2237,2251,2252,2241,2242,-1,2229,2242,2239,2296,2295,-1,2229,2295,2294,2231,2230,-1,2231,2294,2293,2233,2232,-1,2233,2293,2292,2246,2243,-1,2239,2242,2268,2267,-1,2239,2267,2240,-1,2240,2262,2261,2253,-1,2240,2267,2270,2262,-1,2241,2252,2260,2259,-1,2241,2259,2269,2268,-1,2241,2268,2242,-1,2243,2246,2276,2275,-1,2243,2275,2244,-1,2244,2255,2258,2249,-1,2244,2275,2278,2255,-1,2245,2247,2257,2256,-1,2245,2256,2277,2276,-1,2245,2276,2246,-1,2247,2248,2271,-1,2247,2271,2274,2257,-1,2248,2250,2272,2271,-1,2249,2258,2273,2272,-1,2249,2272,2250,-1,2251,2254,2264,2263,-1,2251,2263,2252,-1,2252,2263,2266,2260,-1,2253,2261,2265,2264,-1,2253,2264,2254,-1,2255,2256,2257,2258,-1,2255,2278,2277,2256,-1,2257,2274,2273,2258,-1,2259,2260,2261,2262,-1,2259,2262,2270,2269,-1,2260,2266,2265,2261,-1,2263,2264,2265,2266,-1,2267,2268,2269,2270,-1,2271,2272,2273,2274,-1,2275,2276,2277,2278,-1,2292,2293,2299,2298,-1,2293,2294,2301,2300,2299,-1,2294,2295,2303,2302,2301,-1,2295,2296,2304,2303,-1,2297,2298,2307,2306,-1,2298,2299,2308,2307,-1,2299,2300,2309,2308,-1,2300,2301,2310,2309,-1,2301,2302,2311,2310,-1,2302,2303,2312,2311,-1,2303,2304,2313,2312,-1,2304,2305,2314,2313,-1,2306,2307,2316,2315,-1,2307,2308,2317,2316,-1,2308,2309,2318,2317,-1,2309,2310,2319,2318,-1,2310,2311,2320,2319,-1,2311,2312,2321,2320,-1,2312,2313,2322,2321,-1,2313,2314,2323,2322,-1,2324,2325,2357,-1,2324,2357,2356,2331,-1,2325,2329,2358,2357,-1,2326,2333,2351,2354,-1,2326,2354,2327,-1,2327,2354,2353,2328,-1,2328,2353,2352,2334,-1,2329,2339,2359,2358,-1,2330,2336,2344,2343,-1,2330,2343,2342,2337,-1,2331,2340,2345,2332,-1,2331,2356,2340,-1,2332,2345,2346,-1,2332,2346,2350,2333,-1,2333,2350,2351,-1,2334,2349,2348,2335,-1,2334,2352,2349,-1,2335,2348,2347,2336,-1,2336,2347,2344,-1,2337,2342,2341,2338,-1,2338,2341,2355,-1,2338,2355,2359,2339,-1,2340,2341,2342,2343,2344,2345,-1,2340,2356,2355,2341,-1,2344,2347,2346,2345,-1,2346,2347,2348,2349,2350,-1,2349,2352,2351,2350,-1,2351,2352,2353,2354,-1,2355,2356,2357,2358,2359,-1,2360,2368,2374,2377,-1,2360,2377,2361,-1,2361,2377,2376,2362,-1,2362,2376,2363,-1,2363,2376,2375,2369,-1,2364,2365,2372,-1,2364,2372,2371,2368,-1,2365,2366,2373,2372,-1,2366,2367,2373,-1,2367,2369,2370,2373,-1,2368,2371,2374,-1,2369,2375,2370,-1,2370,2371,2372,2373,-1,2370,2375,2374,2371,-1,2374,2375,2376,2377,-1};
			return value;
		}


		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_5_1013_normalIndex_1()
		{
			int[] value = {0,12,34,17,-1,0,14,15,16,3,7,72,69,71,66,12,-1,0,17,21,20,3,16,15,14,-1,1,184,185,5,199,218,203,202,216,201,-1,1,201,200,63,62,123,122,121,120,119,118,117,116,115,114,113,112,111,110,179,178,181,180,55,50,49,48,47,2,2291,2290,2289,2288,2287,2286,2285,2284,2283,2282,2281,11,235,234,233,232,-1,1,232,233,234,235,11,97,10,57,5,185,184,-1,2,47,2315,2316,2317,2318,2319,2320,2321,2322,2323,51,2324,2331,2332,2333,2326,-1,2,2326,2327,190,2291,-1,3,20,64,7,-1,4,13,59,68,67,70,9,6,25,24,23,-1,4,19,36,13,-1,4,23,24,25,6,28,27,19,-1,5,57,10,58,2279,2280,99,2325,2324,51,52,53,54,56,183,182,175,174,137,136,135,134,133,132,131,130,129,128,127,126,125,124,60,61,198,199,-1,6,9,65,28,-1,7,64,81,73,-1,7,73,166,167,168,89,72,-1,8,18,30,-1,8,22,29,-1,8,26,42,-1,8,29,18,-1,8,30,26,-1,8,42,22,-1,9,70,93,169,170,171,74,-1,9,74,85,65,-1,10,97,98,58,-1,11,2281,2282,2283,2284,2285,2286,98,97,-1,12,66,86,75,-1,12,75,92,34,-1,13,36,90,76,-1,13,76,96,59,-1,17,34,44,37,-1,17,37,39,21,-1,18,29,45,-1,18,45,30,-1,19,27,40,38,-1,19,38,46,36,-1,20,21,31,64,-1,21,39,41,31,-1,22,37,29,-1,22,39,37,-1,22,41,39,-1,22,42,41,-1,26,30,38,-1,26,38,40,-1,26,40,43,-1,26,43,42,-1,27,28,65,33,-1,27,33,43,40,-1,29,37,44,-1,29,44,45,-1,30,45,46,-1,30,46,38,-1,31,32,83,82,-1,31,41,42,32,-1,31,82,81,64,-1,32,33,84,83,-1,32,42,43,33,-1,33,65,85,84,-1,34,35,36,46,45,44,-1,34,92,91,35,-1,35,91,90,36,-1,47,48,2306,2315,-1,48,49,2297,2306,-1,49,50,2292,2298,2297,-1,50,55,2246,2292,-1,51,2323,2314,52,-1,52,2314,2305,53,-1,53,2305,2304,2296,54,-1,54,2296,2239,56,-1,55,180,181,178,179,110,111,112,113,114,115,116,117,118,119,120,121,122,123,62,80,138,139,140,141,142,143,144,145,146,147,148,149,150,151,176,177,77,2219,2218,2217,2216,2215,2214,2213,2212,2211,-1,55,2211,2212,2213,2214,2215,2216,2217,2218,2219,77,2234,2248,2247,2245,2246,-1,56,2220,2221,2222,2223,2224,2225,2226,2227,2228,78,172,173,152,153,154,155,156,157,158,159,160,161,162,163,164,165,79,60,124,125,126,127,128,129,130,131,132,133,134,135,136,137,174,175,182,183,-1,56,2239,2240,2253,2254,2238,78,2228,2227,2226,2225,2224,2223,2222,2221,2220,-1,58,98,193,2279,-1,59,96,95,68,-1,60,79,214,189,-1,60,189,187,61,-1,61,187,205,219,198,-1,62,63,186,188,-1,62,188,215,80,-1,63,200,217,204,186,-1,66,71,87,86,-1,67,68,95,94,-1,67,94,93,70,-1,69,72,89,88,-1,69,88,87,71,-1,73,77,177,176,151,150,149,148,147,146,145,144,143,142,141,140,139,138,80,75,86,87,88,89,168,167,166,-1,73,81,82,83,84,85,74,78,2238,2254,2251,2237,2236,2235,2250,2248,2234,77,-1,74,171,170,169,93,94,95,96,76,79,165,164,163,162,161,160,159,158,157,156,155,154,153,152,173,172,78,-1,75,80,215,214,79,76,90,91,92,-1,98,2286,2287,193,-1,99,101,2329,2325,-1,99,194,195,100,196,197,102,103,101,-1,99,2280,192,100,195,194,-1,100,191,190,2327,2328,104,102,197,196,-1,100,192,2288,2289,-1,100,2289,2290,191,-1,101,103,105,2330,2337,2338,2339,2329,-1,102,104,2360,2361,282,281,-1,102,281,282,283,284,285,286,287,292,293,291,290,278,277,276,275,274,273,272,103,-1,103,272,273,2365,2364,105,-1,104,105,2364,2368,2360,-1,104,2328,2334,2335,2336,2330,105,-1,106,107,237,236,-1,106,109,289,288,245,-1,106,236,239,109,-1,106,245,258,259,247,107,-1,107,108,238,237,-1,107,247,279,280,108,-1,108,109,243,242,-1,108,242,241,238,-1,108,280,279,288,289,109,-1,109,239,240,243,-1,186,204,208,206,-1,186,206,211,188,-1,187,189,210,207,-1,187,207,209,205,-1,188,189,214,215,-1,188,211,210,189,-1,190,191,2290,2291,-1,192,193,2287,2288,-1,192,2280,2279,193,-1,198,219,218,199,-1,200,201,216,217,-1,202,203,213,212,-1,202,212,224,220,-1,202,220,223,216,-1,203,218,228,226,-1,203,226,231,213,-1,204,217,222,221,-1,204,221,225,208,-1,205,209,230,227};
			return value;
		}
		private int[] getIndexedFaceSet_5_1013_normalIndex_2()
		{
			int[] value = {-1,205,227,229,219,-1,206,207,210,211,-1,206,208,209,207,-1,208,212,213,209,-1,208,225,224,212,-1,209,213,231,230,-1,216,223,222,217,-1,218,219,229,228,-1,220,221,222,223,-1,220,224,225,221,-1,226,227,230,231,-1,226,228,229,227,-1,236,237,238,239,-1,238,241,240,239,-1,240,241,242,243,-1,244,248,249,250,292,287,286,-1,244,256,263,248,-1,244,286,285,284,2362,2363,-1,244,2363,2369,2367,246,257,256,-1,245,251,261,258,-1,245,288,297,296,-1,245,296,295,251,-1,246,252,262,257,-1,246,277,278,254,253,252,-1,246,2367,2366,275,276,277,-1,247,255,298,301,-1,247,259,260,255,-1,247,301,300,279,-1,248,263,262,252,253,249,-1,249,253,254,250,-1,250,251,293,292,-1,250,254,255,260,261,251,-1,251,295,294,293,-1,254,278,290,291,255,-1,255,291,299,298,-1,256,257,268,271,-1,256,271,270,263,-1,257,262,269,268,-1,258,261,267,266,-1,258,266,265,259,-1,259,265,264,260,-1,260,264,267,261,-1,262,263,270,269,-1,264,265,266,267,-1,268,269,270,271,-1,273,274,275,2366,2365,-1,279,291,293,288,-1,279,300,299,291,-1,282,2361,2362,284,283,-1,288,293,294,297,-1,294,295,296,297,-1,298,299,300,301,-1,302,303,319,318,-1,302,317,350,-1,302,318,333,317,-1,302,350,303,-1,303,304,320,319,-1,303,350,304,-1,304,305,321,320,-1,304,350,305,-1,305,306,322,321,-1,305,350,306,-1,306,307,323,322,-1,306,350,307,-1,307,308,324,323,-1,307,350,308,-1,308,309,325,324,-1,308,350,309,-1,309,310,326,325,-1,309,350,310,-1,310,311,327,326,-1,310,350,311,-1,311,312,328,327,-1,311,350,312,-1,312,313,329,328,-1,312,350,313,-1,313,314,330,329,-1,313,350,314,-1,314,315,331,330,-1,314,350,315,-1,315,316,332,331,-1,315,350,316,-1,316,317,333,332,-1,316,350,317,-1,318,319,335,334,-1,318,334,349,333,-1,319,320,336,335,-1,320,321,337,336,-1,321,322,338,337,-1,322,323,339,338,-1,323,324,340,339,-1,324,325,341,340,-1,325,326,342,341,-1,326,327,343,342,-1,327,328,344,343,-1,328,329,345,344,-1,329,330,346,345,-1,330,331,347,346,-1,331,332,348,347,-1,332,333,349,348,-1,334,335,352,351,-1,334,351,366,349,-1,335,336,353,352,-1,336,337,354,353,-1,337,338,355,354,-1,338,339,356,355,-1,339,340,357,356,-1,340,341,358,357,-1,341,342,359,358,-1,342,343,360,359,-1,343,344,361,360,-1,344,345,362,361,-1,345,346,363,362,-1,346,347,364,363,-1,347,348,365,364,-1,348,349,366,365,-1,351,352,370,369,-1,351,369,368,366,-1,352,353,371,370,-1,353,354,372,371,-1,354,355,373,372,-1,355,356,374,373,-1,356,357,375,374,-1,357,358,376,375,-1,358,359,377,376,-1,359,360,378,377,-1,360,361,379,378,-1,361,362,380,379,-1,362,363,381,380,-1,363,364,382,381,-1,364,365,367,382,-1,365,366,368,367,-1,367,368,384,383,-1,367,383,398,382,-1,368,369,385,384,-1,369,370,386,385,-1,370,371,387,386,-1,371,372,388,387,-1,372,373,389,388,-1,373,374,390,389,-1,374,375,391,390,-1,375,376,392,391,-1,376,377,393,392,-1,377,378,394,393,-1,378,379,395,394,-1,379,380,396,395,-1,380,381,397,396,-1,381,382,398,397,-1,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,-1,399,400,416,415,-1,399,414,447,-1,399,415,430,414,-1,399,447,400,-1,400,401,417,416,-1,400,447,401,-1,401,402,418,417,-1,401,447,402,-1,402,403,419,418,-1,402,447,403,-1,403,404,420,419,-1,403,447,404,-1,404,405,421,420,-1,404,447,405,-1,405,406,422,421,-1,405,447,406,-1,406,407,423,422,-1,406,447,407,-1,407,408,424,423,-1,407,447,408,-1,408,409,425,424,-1,408,447,409,-1,409,410,426,425,-1,409,447,410,-1,410,411,427,426,-1,410,447,411,-1,411,412,428,427,-1,411,447,412,-1,412,413,429,428,-1,412,447,413,-1,413,414,430,429,-1,413,447,414,-1,415,416,432,431,-1,415,431,446,430,-1,416,417,433,432,-1,417,418,434,433,-1,418,419,435,434,-1,419,420,436,435,-1,420,421,437,436,-1,421,422,438,437,-1,422,423,439,438,-1,423,424,440,439,-1,424,425,441,440,-1,425,426,442,441,-1,426,427,443,442,-1,427,428,444,443,-1,428,429,445,444,-1,429,430,446,445,-1,431,432,449,448,-1,431,448,463,446,-1,432,433,450,449,-1};
			return value;
		}
		private int[] getIndexedFaceSet_5_1013_normalIndex_3()
		{
			int[] value = {433,434,451,450,-1,434,435,452,451,-1,435,436,453,452,-1,436,437,454,453,-1,437,438,455,454,-1,438,439,456,455,-1,439,440,457,456,-1,440,441,458,457,-1,441,442,459,458,-1,442,443,460,459,-1,443,444,461,460,-1,444,445,462,461,-1,445,446,463,462,-1,448,449,467,466,-1,448,466,465,463,-1,449,450,468,467,-1,450,451,469,468,-1,451,452,470,469,-1,452,453,471,470,-1,453,454,472,471,-1,454,455,473,472,-1,455,456,474,473,-1,456,457,475,474,-1,457,458,476,475,-1,458,459,477,476,-1,459,460,478,477,-1,460,461,479,478,-1,461,462,464,479,-1,462,463,465,464,-1,464,465,481,480,-1,464,480,495,479,-1,465,466,482,481,-1,466,467,483,482,-1,467,468,484,483,-1,468,469,485,484,-1,469,470,486,485,-1,470,471,487,486,-1,471,472,488,487,-1,472,473,489,488,-1,473,474,490,489,-1,474,475,491,490,-1,475,476,492,491,-1,476,477,493,492,-1,477,478,494,493,-1,478,479,495,494,-1,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,-1,496,497,513,512,-1,496,511,544,-1,496,512,527,511,-1,496,544,497,-1,497,498,514,513,-1,497,544,498,-1,498,499,515,514,-1,498,544,499,-1,499,500,516,515,-1,499,544,500,-1,500,501,517,516,-1,500,544,501,-1,501,502,518,517,-1,501,544,502,-1,502,503,519,518,-1,502,544,503,-1,503,504,520,519,-1,503,544,504,-1,504,505,521,520,-1,504,544,505,-1,505,506,522,521,-1,505,544,506,-1,506,507,523,522,-1,506,544,507,-1,507,508,524,523,-1,507,544,508,-1,508,509,525,524,-1,508,544,509,-1,509,510,526,525,-1,509,544,510,-1,510,511,527,526,-1,510,544,511,-1,512,513,529,528,-1,512,528,543,527,-1,513,514,530,529,-1,514,515,531,530,-1,515,516,532,531,-1,516,517,533,532,-1,517,518,534,533,-1,518,519,535,534,-1,519,520,536,535,-1,520,521,537,536,-1,521,522,538,537,-1,522,523,539,538,-1,523,524,540,539,-1,524,525,541,540,-1,525,526,542,541,-1,526,527,543,542,-1,528,529,546,545,-1,528,545,560,543,-1,529,530,547,546,-1,530,531,548,547,-1,531,532,549,548,-1,532,533,550,549,-1,533,534,551,550,-1,534,535,552,551,-1,535,536,553,552,-1,536,537,554,553,-1,537,538,555,554,-1,538,539,556,555,-1,539,540,557,556,-1,540,541,558,557,-1,541,542,559,558,-1,542,543,560,559,-1,545,546,564,563,-1,545,563,562,560,-1,546,547,565,564,-1,547,548,566,565,-1,548,549,567,566,-1,549,550,568,567,-1,550,551,569,568,-1,551,552,570,569,-1,552,553,571,570,-1,553,554,572,571,-1,554,555,573,572,-1,555,556,574,573,-1,556,557,575,574,-1,557,558,576,575,-1,558,559,561,576,-1,559,560,562,561,-1,561,562,578,577,-1,561,577,592,576,-1,562,563,579,578,-1,563,564,580,579,-1,564,565,581,580,-1,565,566,582,581,-1,566,567,583,582,-1,567,568,584,583,-1,568,569,585,584,-1,569,570,586,585,-1,570,571,587,586,-1,571,572,588,587,-1,572,573,589,588,-1,573,574,590,589,-1,574,575,591,590,-1,575,576,592,591,-1,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,-1,593,594,603,602,-1,593,602,660,659,-1,593,656,594,-1,593,659,658,656,-1,594,595,604,603,-1,594,656,595,-1,595,596,605,604,-1,595,656,596,-1,596,597,606,605,-1,596,656,597,-1,597,598,607,606,-1,597,656,598,-1,598,599,608,607,-1,598,656,599,-1,599,600,609,608,-1,599,656,600,-1,600,601,610,609,-1,600,656,601,-1,601,656,658,673,-1,601,673,672,610,-1,602,603,612,611,-1,602,611,661,660,-1,603,604,613,612,-1,604,605,614,613,-1,605,606,615,614,-1,606,607,616,615,-1,607,608,617,616,-1,608,609,618,617,-1,609,610,619,618,-1,610,672,671,619,-1,611,612,621,620,-1,611,620,662,661,-1,612,613,622,621,-1,613,614,623,622,-1,614,615,624,623,-1,615,616,625,624,-1,616,617,626,625,-1,617,618,627,626,-1,618,619,628,627,-1,619,671,670,628,-1,620,621,630,629,-1,620,629,663,662,-1,621,622,631,630,-1,622,623,632,631,-1,623,624,633,632,-1,624,625,634,633,-1,625,626,635,634,-1,626,627,636,635,-1,627,628,637,636,-1,628,670,669,637,-1,629,630,639,638,-1,629,638,664,663,-1,630,631,640,639,-1,631,632,641,640,-1,632,633,642,641,-1,633,634,643,642,-1,634,635,644,643,-1};
			return value;
		}
		private int[] getIndexedFaceSet_5_1013_normalIndex_4()
		{
			int[] value = {635,636,645,644,-1,636,637,646,645,-1,637,669,668,646,-1,638,639,648,647,-1,638,647,665,664,-1,639,640,649,648,-1,640,641,650,649,-1,641,642,651,650,-1,642,643,652,651,-1,643,644,653,652,-1,644,645,654,653,-1,645,646,655,654,-1,646,668,667,655,-1,647,648,657,-1,647,657,666,665,-1,648,649,657,-1,649,650,657,-1,650,651,657,-1,651,652,657,-1,652,653,657,-1,653,654,657,-1,654,655,657,-1,655,667,666,657,-1,658,659,675,674,-1,658,674,689,673,-1,659,660,676,675,-1,660,661,677,676,-1,661,662,678,677,-1,662,663,679,678,-1,663,664,680,679,-1,664,665,681,680,-1,665,666,682,681,-1,666,667,683,682,-1,667,668,684,683,-1,668,669,685,684,-1,669,670,686,685,-1,670,671,687,686,-1,671,672,688,687,-1,672,673,689,688,-1,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,-1,690,722,785,724,-1,690,723,722,-1,690,724,770,723,-1,691,722,725,-1,691,725,784,726,-1,691,726,785,722,-1,692,725,727,-1,692,727,783,728,-1,692,728,784,725,-1,693,727,729,-1,693,729,782,730,-1,693,730,783,727,-1,694,729,731,-1,694,731,781,732,-1,694,732,782,729,-1,695,731,733,-1,695,733,780,734,-1,695,734,781,731,-1,696,733,735,-1,696,735,779,736,-1,696,736,780,733,-1,697,735,737,-1,697,737,778,738,-1,697,738,779,735,-1,698,737,739,-1,698,739,777,740,-1,698,740,778,737,-1,699,739,741,-1,699,741,776,742,-1,699,742,777,739,-1,700,741,743,-1,700,743,775,744,-1,700,744,776,741,-1,701,743,745,-1,701,745,774,746,-1,701,746,775,743,-1,702,745,747,-1,702,747,773,748,-1,702,748,774,745,-1,703,747,749,-1,703,749,772,750,-1,703,750,773,747,-1,704,749,751,-1,704,751,771,752,-1,704,752,772,749,-1,705,723,770,753,-1,705,751,723,-1,705,753,771,751,-1,706,754,755,-1,706,755,794,786,-1,706,786,801,754,-1,707,754,801,787,-1,707,756,754,-1,707,787,800,756,-1,708,756,800,788,-1,708,757,756,-1,708,788,799,757,-1,709,757,799,789,-1,709,758,757,-1,709,789,798,758,-1,710,758,798,790,-1,710,759,758,-1,710,790,732,781,759,-1,711,734,780,760,-1,711,759,781,734,-1,711,760,759,-1,712,736,779,761,-1,712,760,780,736,-1,712,761,760,-1,713,738,778,762,-1,713,761,779,738,-1,713,762,761,-1,714,740,777,763,-1,714,762,778,740,-1,714,763,762,-1,715,742,776,764,-1,715,763,777,742,-1,715,764,763,-1,716,744,775,765,-1,716,764,776,744,-1,716,765,764,-1,717,746,774,766,-1,717,765,775,746,-1,717,766,765,-1,718,748,773,797,767,-1,718,766,774,748,-1,718,767,766,-1,719,767,797,791,-1,719,768,767,-1,719,791,796,768,-1,720,768,796,792,-1,720,769,768,-1,720,792,795,769,-1,721,755,769,-1,721,769,795,793,-1,721,793,794,755,-1,722,723,751,749,747,745,743,741,739,737,735,733,731,729,727,725,-1,724,785,801,786,-1,724,786,794,770,-1,726,784,800,787,-1,726,787,801,785,-1,728,783,799,788,-1,728,788,800,784,-1,730,782,798,789,-1,730,789,799,783,-1,732,790,798,782,-1,750,772,796,791,-1,750,791,797,773,-1,752,771,795,792,-1,752,792,796,772,-1,753,770,794,793,-1,753,793,795,771,-1,754,756,804,803,-1,754,803,802,755,-1,755,802,817,769,-1,756,757,805,804,-1,757,758,806,805,-1,758,759,807,806,-1,759,760,808,807,-1,760,761,809,808,-1,761,762,810,809,-1,762,763,811,810,-1,763,764,812,811,-1,764,765,813,812,-1,765,766,814,813,-1,766,767,815,814,-1,767,768,816,815,-1,768,769,817,816,-1,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,-1,818,819,828,827,-1,818,827,885,884,-1,818,881,819,-1,818,884,883,881,-1,819,820,829,828,-1,819,881,820,-1,820,821,830,829,-1,820,881,821,-1,821,822,831,830,-1,821,881,822,-1,822,823,832,831,-1,822,881,823,-1,823,824,833,832,-1,823,881,824,-1,824,825,834,833,-1,824,881,825,-1,825,826,835,834,-1,825,881,826,-1,826,881,883,898,-1,826,898,897,835,-1,827,828,837,836,-1,827,836,886,885,-1,828,829,838,837,-1,829,830,839,838,-1,830,831,840,839,-1,831,832,841,840,-1,832,833,842,841,-1,833,834,843,842,-1,834,835,844,843,-1,835,897,896,844,-1,836,837,846,845,-1,836,845,887,886,-1,837,838,847,846,-1};
			return value;
		}
		private int[] getIndexedFaceSet_5_1013_normalIndex_5()
		{
			int[] value = {838,839,848,847,-1,839,840,849,848,-1,840,841,850,849,-1,841,842,851,850,-1,842,843,852,851,-1,843,844,853,852,-1,844,896,895,853,-1,845,846,855,854,-1,845,854,888,887,-1,846,847,856,855,-1,847,848,857,856,-1,848,849,858,857,-1,849,850,859,858,-1,850,851,860,859,-1,851,852,861,860,-1,852,853,862,861,-1,853,895,894,862,-1,854,855,864,863,-1,854,863,889,888,-1,855,856,865,864,-1,856,857,866,865,-1,857,858,867,866,-1,858,859,868,867,-1,859,860,869,868,-1,860,861,870,869,-1,861,862,871,870,-1,862,894,893,871,-1,863,864,873,872,-1,863,872,890,889,-1,864,865,874,873,-1,865,866,875,874,-1,866,867,876,875,-1,867,868,877,876,-1,868,869,878,877,-1,869,870,879,878,-1,870,871,880,879,-1,871,893,892,880,-1,872,873,882,-1,872,882,891,890,-1,873,874,882,-1,874,875,882,-1,875,876,882,-1,876,877,882,-1,877,878,882,-1,878,879,882,-1,879,880,882,-1,880,892,891,882,-1,883,884,900,899,-1,883,899,914,898,-1,884,885,901,900,-1,885,886,902,901,-1,886,887,903,902,-1,887,888,904,903,-1,888,889,905,904,-1,889,890,906,905,-1,890,891,907,906,-1,891,892,908,907,-1,892,893,909,908,-1,893,894,910,909,-1,894,895,911,910,-1,895,896,912,911,-1,896,897,913,912,-1,897,898,914,913,-1,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,-1,915,947,1010,949,-1,915,948,947,-1,915,949,995,948,-1,916,947,950,-1,916,950,1009,951,-1,916,951,1010,947,-1,917,950,952,-1,917,952,1008,953,-1,917,953,1009,950,-1,918,952,954,-1,918,954,1007,955,-1,918,955,1008,952,-1,919,954,956,-1,919,956,1006,957,-1,919,957,1007,954,-1,920,956,958,-1,920,958,1005,959,-1,920,959,1006,956,-1,921,958,960,-1,921,960,1004,961,-1,921,961,1005,958,-1,922,960,962,-1,922,962,1003,963,-1,922,963,1004,960,-1,923,962,964,-1,923,964,1002,965,-1,923,965,1003,962,-1,924,964,966,-1,924,966,1001,967,-1,924,967,1002,964,-1,925,966,968,-1,925,968,1000,969,-1,925,969,1001,966,-1,926,968,970,-1,926,970,999,971,-1,926,971,1000,968,-1,927,970,972,-1,927,972,998,973,-1,927,973,999,970,-1,928,972,974,-1,928,974,997,975,-1,928,975,998,972,-1,929,974,976,-1,929,976,996,977,-1,929,977,997,974,-1,930,948,995,978,-1,930,976,948,-1,930,978,996,976,-1,931,979,980,-1,931,980,1019,1011,-1,931,1011,1026,979,-1,932,979,1026,1012,-1,932,981,979,-1,932,1012,1025,981,-1,933,981,1025,1013,-1,933,982,981,-1,933,1013,1024,982,-1,934,982,1024,1014,-1,934,983,982,-1,934,1014,1023,983,-1,935,983,1023,1015,-1,935,984,983,-1,935,1015,957,1006,984,-1,936,959,1005,985,-1,936,984,1006,959,-1,936,985,984,-1,937,961,1004,986,-1,937,985,1005,961,-1,937,986,985,-1,938,963,1003,987,-1,938,986,1004,963,-1,938,987,986,-1,939,965,1002,988,-1,939,987,1003,965,-1,939,988,987,-1,940,967,1001,989,-1,940,988,1002,967,-1,940,989,988,-1,941,969,1000,990,-1,941,989,1001,969,-1,941,990,989,-1,942,971,999,991,-1,942,990,1000,971,-1,942,991,990,-1,943,973,998,1022,992,-1,943,991,999,973,-1,943,992,991,-1,944,992,1022,1016,-1,944,993,992,-1,944,1016,1021,993,-1,945,993,1021,1017,-1,945,994,993,-1,945,1017,1020,994,-1,946,980,994,-1,946,994,1020,1018,-1,946,1018,1019,980,-1,947,948,976,974,972,970,968,966,964,962,960,958,956,954,952,950,-1,949,1010,1026,1011,-1,949,1011,1019,995,-1,951,1009,1025,1012,-1,951,1012,1026,1010,-1,953,1008,1024,1013,-1,953,1013,1025,1009,-1,955,1007,1023,1014,-1,955,1014,1024,1008,-1,957,1015,1023,1007,-1,975,997,1021,1016,-1,975,1016,1022,998,-1,977,996,1020,1017,-1,977,1017,1021,997,-1,978,995,1019,1018,-1,978,1018,1020,996,-1,979,981,1029,1028,-1,979,1028,1027,980,-1,980,1027,1042,994,-1,981,982,1030,1029,-1,982,983,1031,1030,-1,983,984,1032,1031,-1,984,985,1033,1032,-1,985,986,1034,1033,-1,986,987,1035,1034,-1,987,988,1036,1035,-1,988,989,1037,1036,-1,989,990,1038,1037,-1,990,991,1039,1038,-1,991,992,1040,1039,-1,992,993,1041,1040,-1,993,994,1042,1041,-1,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,-1,1043,1044,1053,1054,-1,1043,1046,1045,1068,1067,1044,-1,1043,1047,1050,1046,-1,1043,1054,1058,1047,-1,1044,1048,1057,1053,-1,1044,1067,1069,1048,-1,1045,1046,1050,1049,-1};
			return value;
		}
		private int[] getIndexedFaceSet_5_1013_normalIndex_6()
		{
			int[] value = {1045,1049,1070,1068,-1,1047,1048,1069,1070,1049,1050,-1,1047,1058,1057,1048,-1,1051,1052,1064,1063,-1,1051,1055,1058,1054,1084,1083,-1,1051,1063,1059,1055,-1,1051,1083,1085,1052,-1,1052,1056,1060,1064,-1,1052,1085,1086,1053,1057,1056,-1,1053,1086,1084,1054,-1,1055,1056,1057,1058,-1,1055,1059,1060,1056,-1,1059,1062,1061,1072,1071,1060,-1,1059,1063,1066,1062,-1,1060,1071,1073,1064,-1,1061,1062,1066,1065,-1,1061,1065,1074,1072,-1,1063,1064,1073,1074,1065,1066,-1,1067,1068,1077,1076,-1,1067,1076,1075,1069,-1,1068,1070,1078,1077,-1,1069,1075,1078,1070,-1,1071,1072,1081,1080,-1,1071,1080,1079,1073,-1,1072,1074,1082,1081,-1,1073,1079,1082,1074,-1,1075,1076,1077,1078,-1,1079,1080,1081,1082,-1,1083,1084,1087,1090,-1,1083,1090,1089,1085,-1,1084,1086,1088,1087,-1,1085,1089,1088,1086,-1,1087,1088,1089,1090,-1,1091,1092,1101,1102,-1,1091,1094,1093,1116,1115,1092,-1,1091,1095,1098,1094,-1,1091,1102,1106,1095,-1,1092,1096,1105,1101,-1,1092,1115,1117,1096,-1,1093,1094,1098,1097,-1,1093,1097,1118,1116,-1,1095,1096,1117,1118,1097,1098,-1,1095,1106,1105,1096,-1,1099,1100,1112,1111,-1,1099,1103,1106,1102,1132,1131,-1,1099,1111,1107,1103,-1,1099,1131,1133,1100,-1,1100,1104,1108,1112,-1,1100,1133,1134,1101,1105,1104,-1,1101,1134,1132,1102,-1,1103,1104,1105,1106,-1,1103,1107,1108,1104,-1,1107,1110,1109,1120,1119,1108,-1,1107,1111,1114,1110,-1,1108,1119,1121,1112,-1,1109,1110,1114,1113,-1,1109,1113,1122,1120,-1,1111,1112,1121,1122,1113,1114,-1,1115,1116,1125,1124,-1,1115,1124,1123,1117,-1,1116,1118,1126,1125,-1,1117,1123,1126,1118,-1,1119,1120,1129,1128,-1,1119,1128,1127,1121,-1,1120,1122,1130,1129,-1,1121,1127,1130,1122,-1,1123,1124,1125,1126,-1,1127,1128,1129,1130,-1,1131,1132,1135,1138,-1,1131,1138,1137,1133,-1,1132,1134,1136,1135,-1,1133,1137,1136,1134,-1,1135,1136,1137,1138,-1,1139,1156,1157,-1,1139,1157,1203,1158,-1,1139,1158,1188,1156,-1,1140,1156,1188,1160,-1,1140,1159,1156,-1,1140,1160,1189,1159,-1,1141,1159,1189,1162,-1,1141,1161,1159,-1,1141,1162,1190,1161,-1,1142,1161,1190,1164,-1,1142,1163,1161,-1,1142,1164,1191,1163,-1,1143,1163,1191,1166,-1,1143,1165,1163,-1,1143,1166,1192,1165,-1,1144,1165,1192,1168,-1,1144,1167,1165,-1,1144,1168,1193,1167,-1,1145,1167,1193,1170,-1,1145,1169,1167,-1,1145,1170,1194,1169,-1,1146,1169,1194,1172,-1,1146,1171,1169,-1,1146,1172,1195,1171,-1,1147,1171,1195,1174,-1,1147,1173,1171,-1,1147,1174,1196,1173,-1,1148,1173,1196,1176,-1,1148,1175,1173,-1,1148,1176,1197,1175,-1,1149,1175,1197,1178,-1,1149,1177,1175,-1,1149,1178,1198,1177,-1,1150,1177,1198,1180,-1,1150,1179,1177,-1,1150,1180,1199,1179,-1,1151,1179,1199,1182,-1,1151,1181,1179,-1,1151,1182,1200,1181,-1,1152,1181,1200,1184,-1,1152,1183,1181,-1,1152,1184,1201,1183,-1,1153,1183,1201,1186,-1,1153,1185,1183,-1,1153,1186,1202,1185,-1,1154,1157,1185,-1,1154,1185,1202,1187,-1,1154,1187,1203,1157,-1,1155,1220,1242,1235,-1,1155,1221,1243,1220,-1,1155,1222,1221,-1,1155,1223,1222,-1,1155,1224,1223,-1,1155,1225,1224,-1,1155,1226,1225,-1,1155,1227,1226,-1,1155,1228,1227,-1,1155,1229,1228,-1,1155,1230,1229,-1,1155,1231,1230,-1,1155,1232,1231,-1,1155,1233,1232,-1,1155,1234,1233,-1,1155,1235,1234,-1,1156,1159,1161,1163,1165,1167,1169,1171,1173,1175,1177,1179,1181,1183,1185,1157,-1,1158,1203,1187,1219,1204,-1,1158,1204,1205,1160,1188,-1,1160,1205,1206,1162,1189,-1,1162,1206,1207,1164,1190,-1,1164,1207,1208,1166,1191,-1,1166,1208,1209,1168,1192,-1,1168,1209,1210,1170,1193,-1,1170,1210,1211,1172,1194,-1,1172,1211,1212,1174,1195,-1,1174,1212,1213,1176,1196,-1,1176,1213,1214,1178,1197,-1,1178,1214,1215,1180,1198,-1,1180,1215,1216,1182,1199,-1,1182,1216,1217,1184,1200,-1,1184,1217,1218,1186,1201,-1,1186,1218,1219,1187,1202,-1,1204,1219,1240,1241,1244,1237,1236,-1,1204,1236,1237,1245,1239,1238,1205,-1,1205,1238,1239,1221,1222,1206,-1,1206,1222,1223,1207,-1,1207,1223,1224,1208,-1,1208,1224,1225,1209,-1,1209,1225,1226,1210,-1,1210,1226,1227,1211,-1,1211,1227,1228,1212,-1,1212,1228,1229,1213,-1,1213,1229,1230,1214,-1,1214,1230,1231,1215,-1,1215,1231,1232,1216,-1,1216,1232,1233,1217,-1,1217,1233,1234,1218,-1,1218,1234,1235,1241,1240,1219,-1,1220,1243,1262,1263,1260,1261,-1,1220,1261,1260,1265,1264,1242,-1,1221,1239,1245,1243,-1,1235,1242,1244,1241,-1,1237,1244,1250,1247,-1,1237,1247,1249,1245,-1,1242,1251,1250,1244,-1,1242,1264,1265,1258,1255,1251,-1,1243,1245,1249,1248,-1,1243,1248,1254,1256,1263,1262,-1,1246,1252,1256,1254,-1,1246,1253,1259,1255,-1,1246,1254,1257,1253,-1,1246,1255,1258,1252,-1,1247,1250,1259,1253,-1,1247,1253,1257,1249,-1,1248,1249,1257,1254,-1,1250,1251,1255,1259,-1,1252,1258,1268,1266,-1,1252,1266,1271,1256,-1,1256,1271,1270,1263,-1,1258,1265,1269,1268,-1,1260,1263};
			return value;
		}
		private int[] getIndexedFaceSet_5_1013_normalIndex_7()
		{
			int[] value = {1270,1267,-1,1260,1267,1269,1265,-1,1266,1268,1274,1272,-1,1266,1272,1277,1271,-1,1267,1270,1282,1278,-1,1267,1278,1281,1269,-1,1268,1269,1275,1274,-1,1269,1281,1280,1285,1275,-1,1270,1271,1277,1276,-1,1270,1276,1286,1283,1282,-1,1272,1273,1276,1277,-1,1272,1274,1275,1273,-1,1273,1275,1285,1284,-1,1273,1284,1286,1276,-1,1278,1279,1280,1281,-1,1278,1282,1283,1279,-1,1279,1283,1286,1284,-1,1279,1284,1285,1280,-1,1287,1304,1305,-1,1287,1305,1351,1306,-1,1287,1306,1336,1304,-1,1288,1304,1336,1308,-1,1288,1307,1304,-1,1288,1308,1337,1307,-1,1289,1307,1337,1310,-1,1289,1309,1307,-1,1289,1310,1338,1309,-1,1290,1309,1338,1312,-1,1290,1311,1309,-1,1290,1312,1339,1311,-1,1291,1311,1339,1314,-1,1291,1313,1311,-1,1291,1314,1340,1313,-1,1292,1313,1340,1316,-1,1292,1315,1313,-1,1292,1316,1341,1315,-1,1293,1315,1341,1318,-1,1293,1317,1315,-1,1293,1318,1342,1317,-1,1294,1317,1342,1320,-1,1294,1319,1317,-1,1294,1320,1343,1319,-1,1295,1319,1343,1322,-1,1295,1321,1319,-1,1295,1322,1344,1321,-1,1296,1321,1344,1324,-1,1296,1323,1321,-1,1296,1324,1345,1323,-1,1297,1323,1345,1326,-1,1297,1325,1323,-1,1297,1326,1346,1325,-1,1298,1325,1346,1328,-1,1298,1327,1325,-1,1298,1328,1347,1327,-1,1299,1327,1347,1330,-1,1299,1329,1327,-1,1299,1330,1348,1329,-1,1300,1329,1348,1332,-1,1300,1331,1329,-1,1300,1332,1349,1331,-1,1301,1331,1349,1334,-1,1301,1333,1331,-1,1301,1334,1350,1333,-1,1302,1305,1333,-1,1302,1333,1350,1335,-1,1302,1335,1351,1305,-1,1303,1368,1390,1383,-1,1303,1369,1391,1368,-1,1303,1370,1369,-1,1303,1371,1370,-1,1303,1372,1371,-1,1303,1373,1372,-1,1303,1374,1373,-1,1303,1375,1374,-1,1303,1376,1375,-1,1303,1377,1376,-1,1303,1378,1377,-1,1303,1379,1378,-1,1303,1380,1379,-1,1303,1381,1380,-1,1303,1382,1381,-1,1303,1383,1382,-1,1304,1307,1309,1311,1313,1315,1317,1319,1321,1323,1325,1327,1329,1331,1333,1305,-1,1306,1351,1335,1367,1352,-1,1306,1352,1353,1308,1336,-1,1308,1353,1354,1310,1337,-1,1310,1354,1355,1312,1338,-1,1312,1355,1356,1314,1339,-1,1314,1356,1357,1316,1340,-1,1316,1357,1358,1318,1341,-1,1318,1358,1359,1320,1342,-1,1320,1359,1360,1322,1343,-1,1322,1360,1361,1324,1344,-1,1324,1361,1362,1326,1345,-1,1326,1362,1363,1328,1346,-1,1328,1363,1364,1330,1347,-1,1330,1364,1365,1332,1348,-1,1332,1365,1366,1334,1349,-1,1334,1366,1367,1335,1350,-1,1352,1367,1388,1389,1392,1385,1384,-1,1352,1384,1385,1393,1387,1386,1353,-1,1353,1386,1387,1369,1370,1354,-1,1354,1370,1371,1355,-1,1355,1371,1372,1356,-1,1356,1372,1373,1357,-1,1357,1373,1374,1358,-1,1358,1374,1375,1359,-1,1359,1375,1376,1360,-1,1360,1376,1377,1361,-1,1361,1377,1378,1362,-1,1362,1378,1379,1363,-1,1363,1379,1380,1364,-1,1364,1380,1381,1365,-1,1365,1381,1382,1366,-1,1366,1382,1383,1389,1388,1367,-1,1368,1391,1410,1411,1408,1409,-1,1368,1409,1408,1413,1412,1390,-1,1369,1387,1393,1391,-1,1383,1390,1392,1389,-1,1385,1392,1398,1395,-1,1385,1395,1397,1393,-1,1390,1399,1398,1392,-1,1390,1412,1413,1406,1403,1399,-1,1391,1393,1397,1396,-1,1391,1396,1402,1404,1411,1410,-1,1394,1400,1404,1402,-1,1394,1401,1407,1403,-1,1394,1402,1405,1401,-1,1394,1403,1406,1400,-1,1395,1398,1407,1401,-1,1395,1401,1405,1397,-1,1396,1397,1405,1402,-1,1398,1399,1403,1407,-1,1400,1406,1416,1414,-1,1400,1414,1419,1404,-1,1404,1419,1418,1411,-1,1406,1413,1417,1416,-1,1408,1411,1418,1415,-1,1408,1415,1417,1413,-1,1414,1416,1422,1420,-1,1414,1420,1425,1419,-1,1415,1418,1430,1426,-1,1415,1426,1429,1417,-1,1416,1417,1423,1422,-1,1417,1429,1428,1433,1423,-1,1418,1419,1425,1424,-1,1418,1424,1434,1431,1430,-1,1420,1421,1424,1425,-1,1420,1422,1423,1421,-1,1421,1423,1433,1432,-1,1421,1432,1434,1424,-1,1426,1427,1428,1429,-1,1426,1430,1431,1427,-1,1427,1431,1434,1432,-1,1427,1432,1433,1428,-1,1435,1452,1453,-1,1435,1453,1499,1454,-1,1435,1454,1484,1452,-1,1436,1452,1484,1456,-1,1436,1455,1452,-1,1436,1456,1485,1455,-1,1437,1455,1485,1458,-1,1437,1457,1455,-1,1437,1458,1486,1457,-1,1438,1457,1486,1460,-1,1438,1459,1457,-1,1438,1460,1487,1459,-1,1439,1459,1487,1462,-1,1439,1461,1459,-1,1439,1462,1488,1461,-1,1440,1461,1488,1464,-1,1440,1463,1461,-1,1440,1464,1489,1463,-1,1441,1463,1489,1466,-1,1441,1465,1463,-1,1441,1466,1490,1465,-1,1442,1465,1490,1468,-1,1442,1467,1465,-1,1442,1468,1491,1467,-1,1443,1467,1491,1470,-1,1443,1469,1467,-1,1443,1470,1492,1469,-1,1444,1469,1492,1472,-1,1444,1471,1469,-1,1444,1472,1493,1471,-1,1445,1471,1493,1474,-1,1445,1473,1471,-1,1445,1474,1494,1473,-1,1446,1473,1494,1476,-1,1446,1475,1473,-1,1446,1476,1495,1475,-1,1447,1475,1495,1478,-1,1447,1477,1475,-1,1447,1478,1496,1477,-1,1448,1477,1496,1480,-1,1448,1479,1477,-1,1448,1480,1497,1479,-1,1449,1479,1497,1482,-1,1449,1481,1479,-1,1449,1482};
			return value;
		}
		private int[] getIndexedFaceSet_5_1013_normalIndex_8()
		{
			int[] value = {1498,1481,-1,1450,1453,1481,-1,1450,1481,1498,1483,-1,1450,1483,1499,1453,-1,1451,1516,1538,1531,-1,1451,1517,1539,1516,-1,1451,1518,1517,-1,1451,1519,1518,-1,1451,1520,1519,-1,1451,1521,1520,-1,1451,1522,1521,-1,1451,1523,1522,-1,1451,1524,1523,-1,1451,1525,1524,-1,1451,1526,1525,-1,1451,1527,1526,-1,1451,1528,1527,-1,1451,1529,1528,-1,1451,1530,1529,-1,1451,1531,1530,-1,1452,1455,1457,1459,1461,1463,1465,1467,1469,1471,1473,1475,1477,1479,1481,1453,-1,1454,1499,1483,1515,1500,-1,1454,1500,1501,1456,1484,-1,1456,1501,1502,1458,1485,-1,1458,1502,1503,1460,1486,-1,1460,1503,1504,1462,1487,-1,1462,1504,1505,1464,1488,-1,1464,1505,1506,1466,1489,-1,1466,1506,1507,1468,1490,-1,1468,1507,1508,1470,1491,-1,1470,1508,1509,1472,1492,-1,1472,1509,1510,1474,1493,-1,1474,1510,1511,1476,1494,-1,1476,1511,1512,1478,1495,-1,1478,1512,1513,1480,1496,-1,1480,1513,1514,1482,1497,-1,1482,1514,1515,1483,1498,-1,1500,1515,1536,1537,1540,1533,1532,-1,1500,1532,1533,1541,1535,1534,1501,-1,1501,1534,1535,1517,1518,1502,-1,1502,1518,1519,1503,-1,1503,1519,1520,1504,-1,1504,1520,1521,1505,-1,1505,1521,1522,1506,-1,1506,1522,1523,1507,-1,1507,1523,1524,1508,-1,1508,1524,1525,1509,-1,1509,1525,1526,1510,-1,1510,1526,1527,1511,-1,1511,1527,1528,1512,-1,1512,1528,1529,1513,-1,1513,1529,1530,1514,-1,1514,1530,1531,1537,1536,1515,-1,1516,1539,1558,1559,1556,1557,-1,1516,1557,1556,1561,1560,1538,-1,1517,1535,1541,1539,-1,1531,1538,1540,1537,-1,1533,1540,1546,1543,-1,1533,1543,1545,1541,-1,1538,1547,1546,1540,-1,1538,1560,1561,1554,1551,1547,-1,1539,1541,1545,1544,-1,1539,1544,1550,1552,1559,1558,-1,1542,1548,1552,1550,-1,1542,1549,1555,1551,-1,1542,1550,1553,1549,-1,1542,1551,1554,1548,-1,1543,1546,1555,1549,-1,1543,1549,1553,1545,-1,1544,1545,1553,1550,-1,1546,1547,1551,1555,-1,1548,1554,1564,1562,-1,1548,1562,1567,1552,-1,1552,1567,1566,1559,-1,1554,1561,1565,1564,-1,1556,1559,1566,1563,-1,1556,1563,1565,1561,-1,1562,1564,1570,1568,-1,1562,1568,1573,1567,-1,1563,1566,1578,1574,-1,1563,1574,1577,1565,-1,1564,1565,1571,1570,-1,1565,1577,1576,1581,1571,-1,1566,1567,1573,1572,-1,1566,1572,1582,1579,1578,-1,1568,1569,1572,1573,-1,1568,1570,1571,1569,-1,1569,1571,1581,1580,-1,1569,1580,1582,1572,-1,1574,1575,1576,1577,-1,1574,1578,1579,1575,-1,1575,1579,1582,1580,-1,1575,1580,1581,1576,-1,1583,1600,1601,-1,1583,1601,1647,1602,-1,1583,1602,1632,1600,-1,1584,1600,1632,1604,-1,1584,1603,1600,-1,1584,1604,1633,1603,-1,1585,1603,1633,1606,-1,1585,1605,1603,-1,1585,1606,1634,1605,-1,1586,1605,1634,1608,-1,1586,1607,1605,-1,1586,1608,1635,1607,-1,1587,1607,1635,1610,-1,1587,1609,1607,-1,1587,1610,1636,1609,-1,1588,1609,1636,1612,-1,1588,1611,1609,-1,1588,1612,1637,1611,-1,1589,1611,1637,1614,-1,1589,1613,1611,-1,1589,1614,1638,1613,-1,1590,1613,1638,1616,-1,1590,1615,1613,-1,1590,1616,1639,1615,-1,1591,1615,1639,1618,-1,1591,1617,1615,-1,1591,1618,1640,1617,-1,1592,1617,1640,1620,-1,1592,1619,1617,-1,1592,1620,1641,1619,-1,1593,1619,1641,1622,-1,1593,1621,1619,-1,1593,1622,1642,1621,-1,1594,1621,1642,1624,-1,1594,1623,1621,-1,1594,1624,1643,1623,-1,1595,1623,1643,1626,-1,1595,1625,1623,-1,1595,1626,1644,1625,-1,1596,1625,1644,1628,-1,1596,1627,1625,-1,1596,1628,1645,1627,-1,1597,1627,1645,1630,-1,1597,1629,1627,-1,1597,1630,1646,1629,-1,1598,1601,1629,-1,1598,1629,1646,1631,-1,1598,1631,1647,1601,-1,1599,1664,1686,1679,-1,1599,1665,1687,1664,-1,1599,1666,1665,-1,1599,1667,1666,-1,1599,1668,1667,-1,1599,1669,1668,-1,1599,1670,1669,-1,1599,1671,1670,-1,1599,1672,1671,-1,1599,1673,1672,-1,1599,1674,1673,-1,1599,1675,1674,-1,1599,1676,1675,-1,1599,1677,1676,-1,1599,1678,1677,-1,1599,1679,1678,-1,1600,1603,1605,1607,1609,1611,1613,1615,1617,1619,1621,1623,1625,1627,1629,1601,-1,1602,1647,1631,1663,1648,-1,1602,1648,1649,1604,1632,-1,1604,1649,1650,1606,1633,-1,1606,1650,1651,1608,1634,-1,1608,1651,1652,1610,1635,-1,1610,1652,1653,1612,1636,-1,1612,1653,1654,1614,1637,-1,1614,1654,1655,1616,1638,-1,1616,1655,1656,1618,1639,-1,1618,1656,1657,1620,1640,-1,1620,1657,1658,1622,1641,-1,1622,1658,1659,1624,1642,-1,1624,1659,1660,1626,1643,-1,1626,1660,1661,1628,1644,-1,1628,1661,1662,1630,1645,-1,1630,1662,1663,1631,1646,-1,1648,1663,1684,1685,1688,1681,1680,-1,1648,1680,1681,1689,1683,1682,1649,-1,1649,1682,1683,1665,1666,1650,-1,1650,1666,1667,1651,-1,1651,1667,1668,1652,-1,1652,1668,1669,1653,-1,1653,1669,1670,1654,-1,1654,1670,1671,1655,-1,1655,1671,1672,1656,-1,1656,1672,1673,1657,-1,1657,1673,1674,1658,-1,1658,1674,1675,1659,-1,1659,1675,1676,1660,-1,1660,1676,1677,1661,-1,1661,1677,1678,1662,-1,1662,1678,1679,1685,1684,1663,-1,1664,1687,1706,1707,1704,1705,-1,1664,1705,1704,1709};
			return value;
		}
		private int[] getIndexedFaceSet_5_1013_normalIndex_9()
		{
			int[] value = {1708,1686,-1,1665,1683,1689,1687,-1,1679,1686,1688,1685,-1,1681,1688,1694,1691,-1,1681,1691,1693,1689,-1,1686,1695,1694,1688,-1,1686,1708,1709,1702,1699,1695,-1,1687,1689,1693,1692,-1,1687,1692,1698,1700,1707,1706,-1,1690,1696,1700,1698,-1,1690,1697,1703,1699,-1,1690,1698,1701,1697,-1,1690,1699,1702,1696,-1,1691,1694,1703,1697,-1,1691,1697,1701,1693,-1,1692,1693,1701,1698,-1,1694,1695,1699,1703,-1,1696,1702,1712,1710,-1,1696,1710,1715,1700,-1,1700,1715,1714,1707,-1,1702,1709,1713,1712,-1,1704,1707,1714,1711,-1,1704,1711,1713,1709,-1,1710,1712,1718,1716,-1,1710,1716,1721,1715,-1,1711,1714,1726,1722,-1,1711,1722,1725,1713,-1,1712,1713,1719,1718,-1,1713,1725,1724,1729,1719,-1,1714,1715,1721,1720,-1,1714,1720,1730,1727,1726,-1,1716,1717,1720,1721,-1,1716,1718,1719,1717,-1,1717,1719,1729,1728,-1,1717,1728,1730,1720,-1,1722,1723,1724,1725,-1,1722,1726,1727,1723,-1,1723,1727,1730,1728,-1,1723,1728,1729,1724,-1,1731,1732,1733,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1745,1746,-1,1731,1746,1762,1747,-1,1731,1747,1748,1732,-1,1732,1748,1749,1733,-1,1733,1749,1750,1734,-1,1734,1750,1751,1735,-1,1735,1751,1752,1736,-1,1736,1752,1753,1737,-1,1737,1753,1754,1738,-1,1738,1754,1755,1739,-1,1739,1755,1756,1740,-1,1740,1756,1757,1741,-1,1741,1757,1758,1742,-1,1742,1758,1759,1743,-1,1743,1759,1760,1744,-1,1744,1760,1761,1745,-1,1745,1761,1762,1746,-1,1747,1762,1765,1764,-1,1747,1764,1763,1748,-1,1748,1763,1778,1749,-1,1749,1778,1777,1750,-1,1750,1777,1776,1751,-1,1751,1776,1775,1752,-1,1752,1775,1774,1753,-1,1753,1774,1773,1754,-1,1754,1773,1772,1755,-1,1755,1772,1771,1756,-1,1756,1771,1770,1757,-1,1757,1770,1769,1758,-1,1758,1769,1768,1759,-1,1759,1768,1767,1760,-1,1760,1767,1766,1761,-1,1761,1766,1765,1762,-1,1763,1764,1780,1779,-1,1763,1779,1794,1778,-1,1764,1765,1781,1780,-1,1765,1766,1782,1781,-1,1766,1767,1783,1782,-1,1767,1768,1784,1783,-1,1768,1769,1785,1784,-1,1769,1770,1786,1785,-1,1770,1771,1787,1786,-1,1771,1772,1788,1787,-1,1772,1773,1789,1788,-1,1773,1774,1790,1789,-1,1774,1775,1791,1790,-1,1775,1776,1792,1791,-1,1776,1777,1793,1792,-1,1777,1778,1794,1793,-1,1779,1780,1796,1795,-1,1779,1795,1810,1794,-1,1780,1781,1797,1796,-1,1781,1782,1798,1797,-1,1782,1783,1799,1798,-1,1783,1784,1800,1799,-1,1784,1785,1801,1800,-1,1785,1786,1802,1801,-1,1786,1787,1803,1802,-1,1787,1788,1804,1803,-1,1788,1789,1805,1804,-1,1789,1790,1806,1805,-1,1790,1791,1807,1806,-1,1791,1792,1808,1807,-1,1792,1793,1809,1808,-1,1793,1794,1810,1809,-1,1795,1796,1797,1798,1799,1800,1801,1802,1803,1804,1805,1806,1807,1808,1809,1810,-1,1811,1812,1813,1814,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,-1,1811,1826,1842,1827,-1,1811,1827,1828,1812,-1,1812,1828,1829,1813,-1,1813,1829,1830,1814,-1,1814,1830,1831,1815,-1,1815,1831,1832,1816,-1,1816,1832,1833,1817,-1,1817,1833,1834,1818,-1,1818,1834,1835,1819,-1,1819,1835,1836,1820,-1,1820,1836,1837,1821,-1,1821,1837,1838,1822,-1,1822,1838,1839,1823,-1,1823,1839,1840,1824,-1,1824,1840,1841,1825,-1,1825,1841,1842,1826,-1,1827,1842,1845,1844,-1,1827,1844,1843,1828,-1,1828,1843,1858,1829,-1,1829,1858,1857,1830,-1,1830,1857,1856,1831,-1,1831,1856,1855,1832,-1,1832,1855,1854,1833,-1,1833,1854,1853,1834,-1,1834,1853,1852,1835,-1,1835,1852,1851,1836,-1,1836,1851,1850,1837,-1,1837,1850,1849,1838,-1,1838,1849,1848,1839,-1,1839,1848,1847,1840,-1,1840,1847,1846,1841,-1,1841,1846,1845,1842,-1,1843,1844,1860,1859,-1,1843,1859,1874,1858,-1,1844,1845,1861,1860,-1,1845,1846,1862,1861,-1,1846,1847,1863,1862,-1,1847,1848,1864,1863,-1,1848,1849,1865,1864,-1,1849,1850,1866,1865,-1,1850,1851,1867,1866,-1,1851,1852,1868,1867,-1,1852,1853,1869,1868,-1,1853,1854,1870,1869,-1,1854,1855,1871,1870,-1,1855,1856,1872,1871,-1,1856,1857,1873,1872,-1,1857,1858,1874,1873,-1,1859,1860,1876,1875,-1,1859,1875,1890,1874,-1,1860,1861,1877,1876,-1,1861,1862,1878,1877,-1,1862,1863,1879,1878,-1,1863,1864,1880,1879,-1,1864,1865,1881,1880,-1,1865,1866,1882,1881,-1,1866,1867,1883,1882,-1,1867,1868,1884,1883,-1,1868,1869,1885,1884,-1,1869,1870,1886,1885,-1,1870,1871,1887,1886,-1,1871,1872,1888,1887,-1,1872,1873,1889,1888,-1,1873,1874,1890,1889,-1,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,-1,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1904,1905,1906,-1,1891,1906,1922,1907,-1,1891,1907,1908,1892,-1,1892,1908,1909,1893,-1,1893,1909,1910,1894,-1,1894,1910,1911,1895,-1,1895,1911,1912,1896,-1,1896,1912,1913,1897,-1,1897,1913,1914,1898,-1,1898,1914,1915,1899,-1,1899,1915,1916,1900,-1,1900,1916,1917,1901,-1,1901,1917,1918,1902,-1,1902,1918,1919,1903,-1,1903,1919,1920,1904,-1,1904,1920,1921,1905,-1,1905};
			return value;
		}
		private int[] getIndexedFaceSet_5_1013_normalIndex_10()
		{
			int[] value = {1921,1922,1906,-1,1907,1922,1925,1924,-1,1907,1924,1923,1908,-1,1908,1923,1938,1909,-1,1909,1938,1937,1910,-1,1910,1937,1936,1911,-1,1911,1936,1935,1912,-1,1912,1935,1934,1913,-1,1913,1934,1933,1914,-1,1914,1933,1932,1915,-1,1915,1932,1931,1916,-1,1916,1931,1930,1917,-1,1917,1930,1929,1918,-1,1918,1929,1928,1919,-1,1919,1928,1927,1920,-1,1920,1927,1926,1921,-1,1921,1926,1925,1922,-1,1923,1924,1940,1939,-1,1923,1939,1954,1938,-1,1924,1925,1941,1940,-1,1925,1926,1942,1941,-1,1926,1927,1943,1942,-1,1927,1928,1944,1943,-1,1928,1929,1945,1944,-1,1929,1930,1946,1945,-1,1930,1931,1947,1946,-1,1931,1932,1948,1947,-1,1932,1933,1949,1948,-1,1933,1934,1950,1949,-1,1934,1935,1951,1950,-1,1935,1936,1952,1951,-1,1936,1937,1953,1952,-1,1937,1938,1954,1953,-1,1939,1940,1956,1955,-1,1939,1955,1970,1954,-1,1940,1941,1957,1956,-1,1941,1942,1958,1957,-1,1942,1943,1959,1958,-1,1943,1944,1960,1959,-1,1944,1945,1961,1960,-1,1945,1946,1962,1961,-1,1946,1947,1963,1962,-1,1947,1948,1964,1963,-1,1948,1949,1965,1964,-1,1949,1950,1966,1965,-1,1950,1951,1967,1966,-1,1951,1952,1968,1967,-1,1952,1953,1969,1968,-1,1953,1954,1970,1969,-1,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,-1,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,-1,1971,1986,2002,1987,-1,1971,1987,1988,1972,-1,1972,1988,1989,1973,-1,1973,1989,1990,1974,-1,1974,1990,1991,1975,-1,1975,1991,1992,1976,-1,1976,1992,1993,1977,-1,1977,1993,1994,1978,-1,1978,1994,1995,1979,-1,1979,1995,1996,1980,-1,1980,1996,1997,1981,-1,1981,1997,1998,1982,-1,1982,1998,1999,1983,-1,1983,1999,2000,1984,-1,1984,2000,2001,1985,-1,1985,2001,2002,1986,-1,1987,2002,2005,2004,-1,1987,2004,2003,1988,-1,1988,2003,2018,1989,-1,1989,2018,2017,1990,-1,1990,2017,2016,1991,-1,1991,2016,2015,1992,-1,1992,2015,2014,1993,-1,1993,2014,2013,1994,-1,1994,2013,2012,1995,-1,1995,2012,2011,1996,-1,1996,2011,2010,1997,-1,1997,2010,2009,1998,-1,1998,2009,2008,1999,-1,1999,2008,2007,2000,-1,2000,2007,2006,2001,-1,2001,2006,2005,2002,-1,2003,2004,2020,2019,-1,2003,2019,2034,2018,-1,2004,2005,2021,2020,-1,2005,2006,2022,2021,-1,2006,2007,2023,2022,-1,2007,2008,2024,2023,-1,2008,2009,2025,2024,-1,2009,2010,2026,2025,-1,2010,2011,2027,2026,-1,2011,2012,2028,2027,-1,2012,2013,2029,2028,-1,2013,2014,2030,2029,-1,2014,2015,2031,2030,-1,2015,2016,2032,2031,-1,2016,2017,2033,2032,-1,2017,2018,2034,2033,-1,2019,2020,2036,2035,-1,2019,2035,2050,2034,-1,2020,2021,2037,2036,-1,2021,2022,2038,2037,-1,2022,2023,2039,2038,-1,2023,2024,2040,2039,-1,2024,2025,2041,2040,-1,2025,2026,2042,2041,-1,2026,2027,2043,2042,-1,2027,2028,2044,2043,-1,2028,2029,2045,2044,-1,2029,2030,2046,2045,-1,2030,2031,2047,2046,-1,2031,2032,2048,2047,-1,2032,2033,2049,2048,-1,2033,2034,2050,2049,-1,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,-1,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066,-1,2051,2066,2082,2067,-1,2051,2067,2068,2052,-1,2052,2068,2069,2053,-1,2053,2069,2070,2054,-1,2054,2070,2071,2055,-1,2055,2071,2072,2056,-1,2056,2072,2073,2057,-1,2057,2073,2074,2058,-1,2058,2074,2075,2059,-1,2059,2075,2076,2060,-1,2060,2076,2077,2061,-1,2061,2077,2078,2062,-1,2062,2078,2079,2063,-1,2063,2079,2080,2064,-1,2064,2080,2081,2065,-1,2065,2081,2082,2066,-1,2067,2082,2085,2084,-1,2067,2084,2083,2068,-1,2068,2083,2098,2069,-1,2069,2098,2097,2070,-1,2070,2097,2096,2071,-1,2071,2096,2095,2072,-1,2072,2095,2094,2073,-1,2073,2094,2093,2074,-1,2074,2093,2092,2075,-1,2075,2092,2091,2076,-1,2076,2091,2090,2077,-1,2077,2090,2089,2078,-1,2078,2089,2088,2079,-1,2079,2088,2087,2080,-1,2080,2087,2086,2081,-1,2081,2086,2085,2082,-1,2083,2084,2100,2099,-1,2083,2099,2114,2098,-1,2084,2085,2101,2100,-1,2085,2086,2102,2101,-1,2086,2087,2103,2102,-1,2087,2088,2104,2103,-1,2088,2089,2105,2104,-1,2089,2090,2106,2105,-1,2090,2091,2107,2106,-1,2091,2092,2108,2107,-1,2092,2093,2109,2108,-1,2093,2094,2110,2109,-1,2094,2095,2111,2110,-1,2095,2096,2112,2111,-1,2096,2097,2113,2112,-1,2097,2098,2114,2113,-1,2099,2100,2116,2115,-1,2099,2115,2130,2114,-1,2100,2101,2117,2116,-1,2101,2102,2118,2117,-1,2102,2103,2119,2118,-1,2103,2104,2120,2119,-1,2104,2105,2121,2120,-1,2105,2106,2122,2121,-1,2106,2107,2123,2122,-1,2107,2108,2124,2123,-1,2108,2109,2125,2124,-1,2109,2110,2126,2125,-1,2110,2111,2127,2126,-1,2111,2112,2128,2127,-1,2112,2113,2129,2128,-1,2113,2114,2130,2129,-1,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2128,2129,2130,-1,2131,2132,2133,2134,2135,2136,2137,2138,2139,2140,2141,2142,2143,2144,2145,2146,-1,2131,2146,2162,2147,-1,2131,2147,2148,2132,-1,2132,2148,2149,2133};
			return value;
		}
		private int[] getIndexedFaceSet_5_1013_normalIndex_11()
		{
			int[] value = {-1,2133,2149,2150,2134,-1,2134,2150,2151,2135,-1,2135,2151,2152,2136,-1,2136,2152,2153,2137,-1,2137,2153,2154,2138,-1,2138,2154,2155,2139,-1,2139,2155,2156,2140,-1,2140,2156,2157,2141,-1,2141,2157,2158,2142,-1,2142,2158,2159,2143,-1,2143,2159,2160,2144,-1,2144,2160,2161,2145,-1,2145,2161,2162,2146,-1,2147,2162,2165,2164,-1,2147,2164,2163,2148,-1,2148,2163,2178,2149,-1,2149,2178,2177,2150,-1,2150,2177,2176,2151,-1,2151,2176,2175,2152,-1,2152,2175,2174,2153,-1,2153,2174,2173,2154,-1,2154,2173,2172,2155,-1,2155,2172,2171,2156,-1,2156,2171,2170,2157,-1,2157,2170,2169,2158,-1,2158,2169,2168,2159,-1,2159,2168,2167,2160,-1,2160,2167,2166,2161,-1,2161,2166,2165,2162,-1,2163,2164,2180,2179,-1,2163,2179,2194,2178,-1,2164,2165,2181,2180,-1,2165,2166,2182,2181,-1,2166,2167,2183,2182,-1,2167,2168,2184,2183,-1,2168,2169,2185,2184,-1,2169,2170,2186,2185,-1,2170,2171,2187,2186,-1,2171,2172,2188,2187,-1,2172,2173,2189,2188,-1,2173,2174,2190,2189,-1,2174,2175,2191,2190,-1,2175,2176,2192,2191,-1,2176,2177,2193,2192,-1,2177,2178,2194,2193,-1,2179,2180,2196,2195,-1,2179,2195,2210,2194,-1,2180,2181,2197,2196,-1,2181,2182,2198,2197,-1,2182,2183,2199,2198,-1,2183,2184,2200,2199,-1,2184,2185,2201,2200,-1,2185,2186,2202,2201,-1,2186,2187,2203,2202,-1,2187,2188,2204,2203,-1,2188,2189,2205,2204,-1,2189,2190,2206,2205,-1,2190,2191,2207,2206,-1,2191,2192,2208,2207,-1,2192,2193,2209,2208,-1,2193,2194,2210,2209,-1,2195,2196,2197,2198,2199,2200,2201,2202,2203,2204,2205,2206,2207,2208,2209,2210,-1,2229,2230,2231,2232,2233,2243,2244,2249,2250,2235,2236,2237,2251,2252,2241,2242,-1,2229,2242,2239,2296,2295,-1,2229,2295,2294,2231,2230,-1,2231,2294,2293,2233,2232,-1,2233,2293,2292,2246,2243,-1,2239,2242,2268,2267,-1,2239,2267,2240,-1,2240,2262,2261,2253,-1,2240,2267,2270,2262,-1,2241,2252,2260,2259,-1,2241,2259,2269,2268,-1,2241,2268,2242,-1,2243,2246,2276,2275,-1,2243,2275,2244,-1,2244,2255,2258,2249,-1,2244,2275,2278,2255,-1,2245,2247,2257,2256,-1,2245,2256,2277,2276,-1,2245,2276,2246,-1,2247,2248,2271,-1,2247,2271,2274,2257,-1,2248,2250,2272,2271,-1,2249,2258,2273,2272,-1,2249,2272,2250,-1,2251,2254,2264,2263,-1,2251,2263,2252,-1,2252,2263,2266,2260,-1,2253,2261,2265,2264,-1,2253,2264,2254,-1,2255,2256,2257,2258,-1,2255,2278,2277,2256,-1,2257,2274,2273,2258,-1,2259,2260,2261,2262,-1,2259,2262,2270,2269,-1,2260,2266,2265,2261,-1,2263,2264,2265,2266,-1,2267,2268,2269,2270,-1,2271,2272,2273,2274,-1,2275,2276,2277,2278,-1,2292,2293,2299,2298,-1,2293,2294,2301,2300,2299,-1,2294,2295,2303,2302,2301,-1,2295,2296,2304,2303,-1,2297,2298,2307,2306,-1,2298,2299,2308,2307,-1,2299,2300,2309,2308,-1,2300,2301,2310,2309,-1,2301,2302,2311,2310,-1,2302,2303,2312,2311,-1,2303,2304,2313,2312,-1,2304,2305,2314,2313,-1,2306,2307,2316,2315,-1,2307,2308,2317,2316,-1,2308,2309,2318,2317,-1,2309,2310,2319,2318,-1,2310,2311,2320,2319,-1,2311,2312,2321,2320,-1,2312,2313,2322,2321,-1,2313,2314,2323,2322,-1,2324,2325,2357,-1,2324,2357,2356,2331,-1,2325,2329,2358,2357,-1,2326,2333,2351,2354,-1,2326,2354,2327,-1,2327,2354,2353,2328,-1,2328,2353,2352,2334,-1,2329,2339,2359,2358,-1,2330,2336,2344,2343,-1,2330,2343,2342,2337,-1,2331,2340,2345,2332,-1,2331,2356,2340,-1,2332,2345,2346,-1,2332,2346,2350,2333,-1,2333,2350,2351,-1,2334,2349,2348,2335,-1,2334,2352,2349,-1,2335,2348,2347,2336,-1,2336,2347,2344,-1,2337,2342,2341,2338,-1,2338,2341,2355,-1,2338,2355,2359,2339,-1,2340,2341,2342,2343,2344,2345,-1,2340,2356,2355,2341,-1,2344,2347,2346,2345,-1,2346,2347,2348,2349,2350,-1,2349,2352,2351,2350,-1,2351,2352,2353,2354,-1,2355,2356,2357,2358,2359,-1,2360,2368,2374,2377,-1,2360,2377,2361,-1,2361,2377,2376,2362,-1,2362,2376,2363,-1,2363,2376,2375,2369,-1,2364,2365,2372,-1,2364,2372,2371,2368,-1,2365,2366,2373,2372,-1,2366,2367,2373,-1,2367,2369,2370,2373,-1,2368,2371,2374,-1,2369,2375,2370,-1,2370,2371,2372,2373,-1,2370,2375,2374,2371,-1,2374,2375,2376,2377,-1};
			return value;
		}


		/** Define subarrays using type double[] */
		private double[] getCoordinate_6_1014_point_1()
		{
			double[] value = {-9.15758,-1.69924,1.91749,-8.0436,0.84522,1.57589,7.61012,0.84522,1.57589,8.02539,-1.69924,1.91749,-9.15758,-1.69924,-1.92251,-8.0436,0.84522,-1.59136,8.02539,-1.69924,-1.92251,8.29532,-0.699242,1.90475,8.02539,-0.676847,-0.00251144,8.29532,-0.699242,-1.90977,-0.55162,0.84522,-1.59136,-0.55162,0.84522,1.57589,-9.15758,-0.699242,1.90475,-9.15758,-0.699242,-1.90977,-4.86183,-1.69924,1.91749,-0.566091,-1.69924,1.91749,3.72965,-1.69924,1.91749,-9.15758,-1.69924,0.957489,-9.15758,-0.676847,-0.00251144,-9.15758,-1.69924,-0.962511,8.02539,-1.69924,1.43749,8.02539,-1.69924,0.957489,8.02539,-0.676847,0.477489,-4.86183,-1.69924,-1.92251,-0.566091,-1.69924,-1.92251,3.72965,-1.69924,-1.92251,8.02539,-0.676847,-0.482511,8.02539,-1.69924,-0.962511,8.02539,-1.69924,-1.44251,-9.15758,-0.676847,0.477489,-9.15758,-0.676847,-0.482511,8.29532,-0.699242,0.957489,9.7906,-0.699242,-0.00251144,8.29532,-0.699242,-0.962511,-9.15758,-0.699242,0.957489,-9.15758,-0.740794,-0.00251144,-9.15758,-0.699242,-0.962511,-9.15758,-0.676847,0.957489,-9.15758,-0.676847,-0.962511,8.02539,-0.676847,0.957489,8.02539,-0.676847,-0.962511,9.83071,-0.680847,0.957489,9.83071,-0.680847,-0.00251144,9.83071,-0.680847,-0.962511,-9.15758,-0.680847,0.957489,-9.15758,-0.680847,-0.00251144,-9.15758,-0.680847,-0.962511,8.38646,0.118627,1.69851,8.74752,-0.0858398,1.70444,9.10859,-0.290307,1.58575,9.46965,-0.494774,1.28893,8.38646,0.118627,-1.70353,8.74752,-0.0858398,-1.70946,9.10859,-0.290307,-1.59077,9.46965,-0.494774,-1.29395,9.79737,-0.576632,1.06919,9.79737,-0.576632,-1.07421,-4.68388,0.84522,-1.59136,3.39924,0.84522,-1.59136,0.33657,-0.699242,-1.97462,-8.54038,-0.544922,-1.90977,-8.54038,0.126994,-1.74003,-8.54038,-0.567925,1.90475,-8.54038,0.126994,1.735,9.29749,-0.699242,1.43749,9.29749,-0.699242,-1.44251,0.33657,-0.699242,1.9696,5.08364,-0.699242,-2.18442,2.71011,-0.699242,-2.05472,5.08364,-0.699242,2.1794,7.45718,-0.699242,-2.05472,2.71011,-0.699242,2.0497,7.45718,-0.699242,2.0497,9.97688,-0.70496,1.41345,9.97688,-0.70496,-1.41848,-9.34402,-0.699242,2.04368,-9.34402,-0.699242,-2.0487,9.98366,-0.582351,1.41345,9.98366,-0.582351,-1.41848,-9.34402,-0.544922,-2.0487,-9.34402,-0.567925,2.04368,9.97688,-0.70496,0.993969,9.97688,-0.70496,0.661809,9.97688,-0.70496,-0.00251144,9.97688,-0.70496,-0.666831,9.97688,-0.70496,-0.998991,0.33657,-0.699242,2.11325,2.71011,-0.699242,2.19919,5.08364,-0.699242,2.33833,7.45718,-0.699242,2.19919,-9.34402,-0.699242,-0.962511,-9.34402,-0.740794,-0.00251144,-9.34402,-0.699242,0.957489,7.45718,-0.699242,-2.20421,5.08364,-0.699242,-2.34335,2.71011,-0.699242,-2.20421,0.33657,-0.699242,-2.11827,-0.464903,0.84522,-0.0412903,3.37549,0.84522,-0.0412903,5.27915,0.84522,-1.59136};
			return value;
		}
		private double[] getCoordinate_6_1014_point_2()
		{
			double[] value = {5.29569,0.84522,-0.0412903,5.69391,1.33347,-1.27758,5.69391,1.32329,-0.276773,5.69391,1.32838,-0.898338,6.56977,1.32159,-0.276773,6.56977,1.32753,-0.898338,6.13513,2.18931,-0.584177,6.13513,2.19055,-0.689261,5.99803,2.19073,-0.689261,5.99803,2.18966,-0.584177,8.5396,-0.576052,2.08664,7.28182,-0.575471,2.10311,6.02405,-0.574891,2.18609,4.76627,-0.57431,2.17558,3.50849,-0.57373,2.18609,2.25072,-0.573149,2.10311,0.992939,-0.572569,2.01156,-0.264837,-0.571988,1.96407,-1.52261,-0.571408,1.90475,-2.78039,-0.570827,1.90475,-4.03817,-0.570247,1.90475,-5.29594,-0.569666,1.90475,-6.55372,-0.569086,1.90475,-7.8115,-0.568505,1.90475,-7.8115,-0.547036,-1.90977,-6.55372,-0.54915,-1.90977,-5.29594,-0.551264,-1.90977,-4.03817,-0.553378,-1.90977,-2.78039,-0.555492,-1.90977,-1.52261,-0.557606,-1.90977,-0.264837,-0.55972,-1.96909,0.992939,-0.561834,-2.01658,2.25072,-0.563948,-2.10813,3.50849,-0.566062,-2.13195,4.76627,-0.568176,-2.1806,6.02405,-0.57029,-2.13195,7.28182,-0.572404,-2.10813,8.5396,-0.574518,-2.09166,-8.05551,-0.568886,2.04368,-6.767,-0.569848,2.04368,-5.47848,-0.57081,2.04368,-4.18997,-0.571772,2.04368,-2.90146,-0.572733,2.04368,-1.61295,-0.573695,2.04368,-0.324435,-0.574657,2.10732,0.964077,-0.575619,2.15827,2.25259,-0.57658,2.25648,3.5411,-0.577542,2.34335,4.82961,-0.578504,2.33424,6.11813,-0.579466,2.34335,7.40664,-0.580427,2.25648,8.69515,-0.581389,2.19919,8.69515,-0.579855,-2.20421,7.40664,-0.57736,-2.26151,6.11813,-0.574865,-2.28922,4.82961,-0.57237,-2.33926,3.5411,-0.569874,-2.28922,2.25259,-0.567379,-2.26151,0.964077,-0.564884,-2.16329,-0.324435,-0.562389,-2.11234,-1.61295,-0.559893,-2.0487,-2.90146,-0.557398,-2.0487,-4.18997,-0.554903,-2.0487,-5.47848,-0.552408,-2.0487,-6.767,-0.549912,-2.0487,-8.05551,-0.547417,-2.0487,9.34696,-0.703531,1.92914,8.71703,-0.702101,2.10297,8.0871,-0.700671,2.13911,8.0871,-0.700671,-2.14414,8.71703,-0.702101,-2.10799,9.34696,-0.703531,-1.93417,9.55416,-0.581519,-1.79113,9.12465,-0.580687,-2.00049,8.95886,-0.575223,-1.97979,9.37812,-0.575928,-1.77586,9.12465,-0.58171,1.99547,9.55416,-0.58203,1.78611,9.37812,-0.576439,1.77083,8.95886,-0.576245,1.97477,9.65762,-0.576568,1.30307,9.71604,-0.576503,1.53695,9.71604,-0.576162,-1.54197,9.65762,-0.576397,-1.30809,-8.0436,0.84522,0.52014,-8.0436,0.84522,-0.535608,-8.54038,0.126994,0.57666,-8.54038,0.126994,-0.581683,-8.54038,-0.632973,0.633242,-8.54038,-0.625306,-0.638265,6.90717,0.84522,-0.0189194,6.10143,0.84522,-0.0301049,4.65562,0.84522,-0.0412903,4.01556,0.84522,-0.0412903,5.25917,0.84522,-1.07467,5.27823,0.84522,-0.557979,5.42843,0.997932,-0.119785,5.56117,1.16061,-0.198279,-8.0436,0.126994,-1.69047,-8.0436,0.781675,-1.64091};
			return value;
		}
		private double[] getCoordinate_6_1014_point_3()
		{
			double[] value = {-8.0436,0.126994,1.68197,-8.0436,0.781675,1.62893,-8.0436,0.781675,0.53898,-8.0436,0.781675,-0.550967,-8.0436,0.126994,0.55782,-8.0436,0.126994,-0.566325,-5.32543,0.126994,0.57666,-5.32543,0.126994,-0.581683,-5.32543,0.126994,0.55782,-5.32543,0.126994,-0.566325,-5.32543,-0.55259,-0.638265,-5.32543,-0.560257,0.633242,-5.32543,0.781675,0.53898,-5.32543,0.781675,-0.550967,-9.34402,-0.625306,-0.684575,-9.34402,-0.632973,0.679552,-8.0436,0.781675,1.55726,-8.0436,0.126994,1.59319,-8.0436,0.781675,-1.57755,-8.0436,0.126994,-1.61,-5.35293,0.781675,0.53898,-5.35293,0.126994,0.55782,-5.35293,0.126994,1.59319,-5.35293,0.781675,1.55726,-2.63477,0.781675,0.53898,-2.63477,0.126994,0.55782,-5.35293,0.781675,-0.550967,-5.35293,0.126994,-0.566325,-5.35293,0.781675,-1.57755,-5.35293,0.126994,-1.61,-2.63477,0.126994,-0.566325,-2.63477,0.781675,-0.550967,-6.5452,0.84522,1.57589,-5.04681,0.84522,1.57589,-3.54841,0.84522,1.57589,-2.05002,0.84522,1.57589,6.13513,2.25121,-0.584177,6.13513,2.25246,-0.689261,5.99803,2.25264,-0.689261,5.99803,2.25157,-0.584177,5.84296,2.25157,-0.584177,5.84296,2.25264,-0.689261,5.84296,2.19073,-0.689261,5.84296,2.18966,-0.584177,6.30899,1.84222,-0.461215,6.22206,2.00649,-0.522696,6.30899,1.84535,-0.772892,6.22206,2.00867,-0.731076,6.2916,1.87693,-0.473511,6.27421,1.91164,-0.485808,6.25683,1.94635,-0.498104,6.23944,1.98106,-0.5104,6.2916,1.87987,-0.764529,6.27421,1.91439,-0.756166,6.25683,1.94891,-0.747802,6.23944,1.98343,-0.739439,6.30899,1.84326,-0.565107,6.30899,1.8443,-0.669,6.22206,2.01649,-0.592156,6.22206,2.01722,-0.661616,6.23944,1.98264,-0.663093,6.23944,1.98185,-0.586746,6.2916,1.87889,-0.667523,6.2916,1.87791,-0.570517,6.42965,1.99326,-0.646432,6.42005,2.00612,-0.645617,6.42005,2.00585,-0.607275,6.42965,1.99296,-0.604289,6.44229,1.85484,-0.646168,6.43269,1.86771,-0.645353,6.43269,1.86735,-0.591806,6.44229,1.85446,-0.58882,5.72432,1.41461,-0.87743,5.75473,1.50085,-0.856522,5.78514,1.58709,-0.835615,5.81556,1.67332,-0.814707,5.84597,1.75956,-0.793799,5.87638,1.84579,-0.772892,5.90679,1.93203,-0.751984,5.9372,2.00898,-0.731076,5.96762,2.1045,-0.710169,5.72432,1.40993,-0.307514,5.75473,1.49656,-0.338254,5.78514,1.5832,-0.368994,5.81556,1.66984,-0.399735,5.84597,1.75648,-0.430475,5.87638,1.84311,-0.461215,5.90679,1.92975,-0.491956,5.9372,2.00711,-0.522696,5.96762,2.10303,-0.553436,5.91693,1.96077,-0.745015,5.92707,1.98952,-0.738046,5.91693,1.95863,-0.502202,5.92707,1.98751,-0.512449,5.92738,1.99527,-0.127024,6.23975,1.99255,-0.127024,6.22237,2.0072,-0.127024,5.93751,2.00746,-0.127024,6.23955,1.99239,-1.13189,5.92718,1.99496,-1.13189};
			return value;
		}
		private double[] getCoordinate_6_1014_point_4()
		{
			double[] value = {5.93731,2.0071,-1.13189,6.22217,2.00697,-1.13189,6.05182,2.57802,-0.632903,6.04724,2.57802,-0.608346,6.03421,2.57802,-0.587527,6.01471,2.57802,-0.573616,5.99171,2.57802,-0.568732,5.9687,2.57802,-0.573616,5.9492,2.57802,-0.587527,5.93617,2.57802,-0.608346,5.9316,2.57802,-0.632903,5.93617,2.57802,-0.65746,5.9492,2.57802,-0.678279,5.9687,2.57802,-0.69219,5.99171,2.57802,-0.697075,6.01471,2.57802,-0.69219,6.03421,2.57802,-0.678279,6.04724,2.57802,-0.65746,6.10278,2.54167,-0.632903,6.09432,2.54167,-0.587527,6.07024,2.54167,-0.549059,6.03421,2.54167,-0.523356,5.99171,2.54167,-0.51433,5.9492,2.54167,-0.523356,5.91317,2.54167,-0.549059,5.88909,2.54167,-0.587527,5.88064,2.54167,-0.632903,5.88909,2.54167,-0.678279,5.91317,2.54167,-0.716747,5.9492,2.54167,-0.742451,5.99171,2.54167,-0.751476,6.03421,2.54167,-0.742451,6.07024,2.54167,-0.716747,6.09432,2.54167,-0.678279,6.13683,2.48727,-0.632903,6.12578,2.48727,-0.573616,6.09432,2.48727,-0.523356,6.04724,2.48727,-0.489772,5.99171,2.48727,-0.47798,5.93617,2.48727,-0.489772,5.88909,2.48727,-0.523356,5.85763,2.48727,-0.573616,5.84659,2.48727,-0.632903,5.85763,2.48727,-0.69219,5.88909,2.48727,-0.742451,5.93617,2.48727,-0.776034,5.99171,2.48727,-0.787827,6.04724,2.48727,-0.776034,6.09432,2.48727,-0.742451,6.12578,2.48727,-0.69219,5.99171,2.59078,-0.632903,6.13624,2.28326,-0.632903,6.12524,2.28326,-0.573854,6.09391,2.28326,-0.523794,6.04702,2.28326,-0.490346,5.99171,2.28326,-0.4786,5.93639,2.28326,-0.490346,5.8895,2.28326,-0.523794,5.85817,2.28326,-0.573854,5.84717,2.28326,-0.632903,5.85817,2.28326,-0.691952,5.8895,2.28326,-0.742012,5.93639,2.28326,-0.775461,5.99171,2.28326,-0.787206,6.04702,2.28326,-0.775461,6.09391,2.28326,-0.742012,6.12524,2.28326,-0.691952,6.13199,2.27331,-0.734813,6.17392,2.27331,-0.688056,6.18864,2.27331,-0.632903,6.17392,2.27331,-0.57775,6.13199,2.27331,-0.530993,6.06924,2.27331,-0.499751,5.99171,2.27331,-0.488781,5.94004,2.27331,-0.499751,5.89625,2.27331,-0.530993,5.86698,2.27331,-0.57775,5.8567,2.27331,-0.632903,5.86698,2.27331,-0.688056,5.85847,2.27331,-0.734813,5.92121,2.27331,-0.766055,5.99523,2.27331,-0.777026,6.06924,2.27331,-0.766055,6.02178,2.25047,-0.65269,6.02992,2.25047,-0.643612,6.03278,2.25047,-0.632903,6.02992,2.25047,-0.622195,6.02178,2.25047,-0.613116,6.0096,2.25047,-0.60705,5.99523,2.25047,-0.60492,5.98168,2.25047,-0.60705,5.97317,2.25047,-0.613116,5.96749,2.25047,-0.622195,5.96549,2.25047,-0.632903,5.96053,2.25047,-0.643612,5.96867,2.25047,-0.65269,5.98086,2.25047,-0.658756,5.99523,2.25047,-0.660886,6.0096,2.25047,-0.658756,6.10863,2.1671,-1.07281};
			return value;
		}
		private double[] getCoordinate_6_1014_point_5()
		{
			double[] value = {6.10628,2.1671,-1.06018,6.09958,2.1671,-1.04948,6.08956,2.1671,-1.04233,6.07774,2.1671,-1.03982,6.06591,2.1671,-1.04233,6.05589,2.1671,-1.04948,6.04919,2.1671,-1.06018,6.04684,2.1671,-1.07281,6.04919,2.1671,-1.08543,6.05589,2.1671,-1.09613,6.06591,2.1671,-1.10328,6.07774,2.1671,-1.10579,6.08956,2.1671,-1.10328,6.09958,2.1671,-1.09613,6.10628,2.1671,-1.08543,6.13483,2.14841,-1.07281,6.13048,2.14841,-1.04948,6.1181,2.14841,-1.02971,6.09958,2.14841,-1.0165,6.07774,2.14841,-1.01186,6.05589,2.14841,-1.0165,6.03737,2.14841,-1.02971,6.02499,2.14841,-1.04948,6.02065,2.14841,-1.07281,6.02499,2.14841,-1.09613,6.03737,2.14841,-1.1159,6.05589,2.14841,-1.12911,6.07774,2.14841,-1.13375,6.09958,2.14841,-1.12911,6.1181,2.14841,-1.1159,6.13048,2.14841,-1.09613,6.15233,2.12045,-1.07281,6.14665,2.12045,-1.04233,6.13048,2.12045,-1.0165,6.10628,2.12045,-0.999238,6.07774,2.12045,-0.993176,6.04919,2.12045,-0.999238,6.02499,2.12045,-1.0165,6.00882,2.12045,-1.04233,6.00314,2.12045,-1.07281,6.00882,2.12045,-1.10328,6.02499,2.12045,-1.12911,6.04919,2.12045,-1.14638,6.07774,2.12045,-1.15244,6.10628,2.12045,-1.14638,6.13048,2.12045,-1.12911,6.14665,2.12045,-1.10328,6.07774,2.17366,-1.07281,6.15203,2.01559,-1.07281,6.14637,2.01559,-1.04246,6.13027,2.01559,-1.01673,6.10617,2.01559,-0.999533,6.07774,2.01559,-0.993495,6.0493,2.01559,-0.999533,6.0252,2.01559,-1.01673,6.0091,2.01559,-1.04246,6.00344,2.01559,-1.07281,6.0091,2.01559,-1.10316,6.0252,2.01559,-1.12889,6.0493,2.01559,-1.14608,6.07774,2.01559,-1.15212,6.10617,2.01559,-1.14608,6.13027,2.01559,-1.12889,6.14637,2.01559,-1.10316,6.14803,2.01048,-1.12519,6.16958,2.01048,-1.10116,6.17715,2.01048,-1.07281,6.16958,2.01048,-1.04446,6.14803,2.01048,-1.02043,6.11578,2.01048,-1.00437,6.07774,2.01048,-0.998728,6.03969,2.01048,-1.00437,6.00744,2.01048,-1.02043,5.98589,2.01048,-1.04446,5.97832,2.01048,-1.07281,5.98589,2.01048,-1.10116,6.00744,2.01048,-1.12519,6.03969,2.01048,-1.14125,6.07774,2.01048,-1.14689,6.11578,2.01048,-1.14125,6.09138,1.99874,-1.08298,6.09557,1.99874,-1.07831,6.09704,1.99874,-1.07281,6.09557,1.99874,-1.0673,6.09138,1.99874,-1.06264,6.08512,1.99874,-1.05952,6.07774,1.99874,-1.05842,6.07035,1.99874,-1.05952,6.06409,1.99874,-1.06264,6.0599,1.99874,-1.0673,6.05843,1.99874,-1.07281,6.0599,1.99874,-1.07831,6.06409,1.99874,-1.08298,6.07035,1.99874,-1.0861,6.07774,1.99874,-1.08719,6.08512,1.99874,-1.0861,6.10863,2.1671,-0.186639,6.10628,2.1671,-0.174017,6.09958,2.1671,-0.163316,6.08956,2.1671,-0.156166};
			return value;
		}
		private double[] getCoordinate_6_1014_point_6()
		{
			double[] value = {6.07774,2.1671,-0.153655,6.06591,2.1671,-0.156166,6.05589,2.1671,-0.163316,6.04919,2.1671,-0.174017,6.04684,2.1671,-0.186639,6.04919,2.1671,-0.199262,6.05589,2.1671,-0.209962,6.06591,2.1671,-0.217112,6.07774,2.1671,-0.219623,6.08956,2.1671,-0.217112,6.09958,2.1671,-0.209962,6.10628,2.1671,-0.199262,6.13483,2.14841,-0.186639,6.13048,2.14841,-0.163316,6.1181,2.14841,-0.143543,6.09958,2.14841,-0.130332,6.07774,2.14841,-0.125692,6.05589,2.14841,-0.130332,6.03737,2.14841,-0.143543,6.02499,2.14841,-0.163316,6.02065,2.14841,-0.186639,6.02499,2.14841,-0.209962,6.03737,2.14841,-0.229735,6.05589,2.14841,-0.242946,6.07774,2.14841,-0.247586,6.09958,2.14841,-0.242946,6.1181,2.14841,-0.229735,6.13048,2.14841,-0.209962,6.15233,2.12045,-0.186639,6.14665,2.12045,-0.156166,6.13048,2.12045,-0.130332,6.10628,2.12045,-0.11307,6.07774,2.12045,-0.107008,6.04919,2.12045,-0.11307,6.02499,2.12045,-0.130332,6.00882,2.12045,-0.156166,6.00314,2.12045,-0.186639,6.00882,2.12045,-0.217112,6.02499,2.12045,-0.242946,6.04919,2.12045,-0.260208,6.07774,2.12045,-0.26627,6.10628,2.12045,-0.260208,6.13048,2.12045,-0.242946,6.14665,2.12045,-0.217112,6.07774,2.17366,-0.186639,6.15203,2.01559,-0.186639,6.14637,2.01559,-0.156288,6.13027,2.01559,-0.130557,6.10617,2.01559,-0.113364,6.07774,2.01559,-0.107327,6.0493,2.01559,-0.113364,6.0252,2.01559,-0.130557,6.0091,2.01559,-0.156288,6.00344,2.01559,-0.186639,6.0091,2.01559,-0.21699,6.0252,2.01559,-0.242721,6.0493,2.01559,-0.259914,6.07774,2.01559,-0.265951,6.10617,2.01559,-0.259914,6.13027,2.01559,-0.242721,6.14637,2.01559,-0.21699,6.14803,2.01048,-0.239021,6.16958,2.01048,-0.214988,6.17715,2.01048,-0.186639,6.16958,2.01048,-0.15829,6.14803,2.01048,-0.134257,6.11578,2.01048,-0.118199,6.07774,2.01048,-0.11256,6.03969,2.01048,-0.118199,6.00744,2.01048,-0.134257,5.98589,2.01048,-0.15829,5.97832,2.01048,-0.186639,5.98589,2.01048,-0.214988,6.00744,2.01048,-0.239021,6.03969,2.01048,-0.255079,6.07774,2.01048,-0.260718,6.11578,2.01048,-0.255079,6.09138,1.99874,-0.196809,6.09557,1.99874,-0.192143,6.09704,1.99874,-0.186639,6.09557,1.99874,-0.181135,6.09138,1.99874,-0.176469,6.08512,1.99874,-0.173351,6.07774,1.99874,-0.172256,6.07035,1.99874,-0.173351,6.06409,1.99874,-0.176469,6.0599,1.99874,-0.181135,6.05843,1.99874,-0.186639,6.0599,1.99874,-0.192143,6.06409,1.99874,-0.196809,6.07035,1.99874,-0.199927,6.07774,1.99874,-0.201022,6.08512,1.99874,-0.199927,7.78123,-2.11359,1.29373,7.82275,-2.11359,1.30362,7.85795,-2.11359,1.33181,7.88146,-2.11359,1.37399,7.88972,-2.11359,1.42375,7.88146,-2.11359,1.4735,7.85795,-2.11359,1.51569};
			return value;
		}
		private double[] getCoordinate_6_1014_point_7()
		{
			double[] value = {7.82275,-2.11359,1.54387,7.78123,-2.11359,1.55377,7.78123,-2.15245,1.1835,7.85795,-2.15245,1.20179,7.92298,-2.15245,1.25387,7.96644,-2.15245,1.33181,7.9817,-2.15245,1.42375,7.96644,-2.15245,1.51569,7.92298,-2.15245,1.59363,7.85795,-2.15245,1.64571,7.78123,-2.15245,1.664,7.78123,-2.21062,1.10985,7.88146,-2.21062,1.13374,7.96644,-2.21062,1.20179,8.02322,-2.21062,1.30362,8.04316,-2.21062,1.42375,8.02322,-2.21062,1.54387,7.96644,-2.21062,1.64571,7.88146,-2.21062,1.71375,7.78123,-2.21062,1.73765,7.78123,-2.27923,1.08399,7.88972,-2.27923,1.10985,7.9817,-2.27923,1.1835,8.04316,-2.27923,1.29373,8.06474,-2.27923,1.42375,8.04316,-2.27923,1.55377,7.9817,-2.27923,1.664,7.88972,-2.27923,1.73765,7.78123,-2.27923,1.76351,7.78123,-2.42657,1.10985,7.88146,-2.42657,1.13374,7.96644,-2.42657,1.20179,8.02322,-2.42657,1.30362,8.04316,-2.42657,1.42375,8.02322,-2.42657,1.54387,7.96644,-2.42657,1.64571,7.88146,-2.42657,1.71375,7.78123,-2.42657,1.73765,7.78123,-2.51287,1.1835,7.85795,-2.51287,1.20179,7.92298,-2.51287,1.25387,7.96644,-2.51287,1.33181,7.9817,-2.51287,1.42375,7.96644,-2.51287,1.51569,7.92298,-2.51287,1.59363,7.85795,-2.51287,1.64571,7.78123,-2.51287,1.664,7.78123,-2.57053,1.29373,7.82275,-2.57053,1.30362,7.85795,-2.57053,1.33181,7.88146,-2.57053,1.37399,7.88972,-2.57053,1.42375,7.88146,-2.57053,1.4735,7.85795,-2.57053,1.51569,7.82275,-2.57053,1.54387,7.78123,-2.57053,1.55377,7.78123,-2.05698,1.42375,7.78123,-2.59078,1.42375,7.69161,-1.84178,1.42375,7.67478,-1.86246,1.27212,7.63787,-1.95035,1.14357,7.62224,-2.02401,1.05768,7.64669,-2.1264,0.960858,7.64669,-2.34437,0.996094,7.64669,-2.47205,1.09644,7.64669,-2.55736,1.24661,7.64669,-2.58732,1.42375,7.64669,-2.55736,1.60089,7.64669,-2.47205,1.75106,7.64669,-2.34437,1.8514,7.64669,-2.1264,1.88664,7.62224,-2.02401,1.78982,7.63787,-1.95035,1.70393,7.67478,-1.86246,1.57538,7.60917,-1.74157,1.42375,7.58808,-1.75502,1.22814,7.53021,-1.73042,1.06232,7.4882,-1.85413,0.951515,7.48097,-1.93499,0.912607,7.26595,-2.26846,0.951515,7.13898,-2.41292,1.06232,7.05312,-2.51812,1.22814,7.02297,-2.55506,1.42375,7.05312,-2.51812,1.61935,7.13898,-2.41292,1.78518,7.26554,-2.22663,1.89598,7.48097,-1.93499,1.93489,7.4882,-1.85413,1.89598,7.53021,-1.73042,1.78518,7.58808,-1.75502,1.61935,-9.16059,-2.08386,1.43199,-9.16059,-2.06304,1.24635,-9.16059,-2.00373,1.08898,-9.16059,-1.91497,0.983827,-9.16059,-1.64689,0.946902,-9.16059,-1.64689,0.983827,-9.16059,-1.64689,1.08898,-9.16059,-1.64689,1.24635,-9.16059,-1.64689,1.43199,-9.16059,-1.64689,1.61762};
			return value;
		}
		private double[] getCoordinate_6_1014_point_8()
		{
			double[] value = {-9.16059,-1.64689,1.77499,-9.16059,-1.64689,1.88014,-9.16059,-1.64689,1.91707,-9.16059,-1.91497,1.88014,-9.16059,-2.00373,1.77499,-9.16059,-2.06304,1.61762,7.34134,-2.58013,1.43199,7.34134,-2.53742,1.21726,7.34134,-2.41579,1.03522,7.34134,-2.23375,0.913583,7.34134,-1.68393,0.870871,7.34134,-1.68393,0.913583,7.34134,-1.68393,1.03522,7.34134,-1.68393,1.21726,7.34134,-1.68393,1.43199,7.34134,-1.68393,1.64672,7.34134,-1.68393,1.82875,7.34134,-1.68393,1.95039,7.34134,-1.68393,1.9931,7.34134,-2.23375,1.95039,7.34134,-2.41579,1.82875,7.34134,-2.53742,1.64672,-9.16059,-2.07856,1.33737,-9.16059,-2.07856,1.5266,-0.268398,-2.58013,1.43199,-9.16059,-2.03771,1.16254,-0.268398,-2.53742,1.21726,-9.16059,-1.96224,1.02873,-0.268398,-2.41579,1.03522,-9.16059,-1.86364,0.956312,-0.268398,-2.23375,0.913583,-9.16059,-1.64689,0.956312,-0.268398,-1.68393,0.870871,-9.16059,-1.64689,1.02873,-0.268398,-1.68393,0.913583,-9.16059,-1.64689,1.16254,-0.268398,-1.68393,1.03522,-9.16059,-1.64689,1.33737,-0.268398,-1.68393,1.21726,-9.16059,-1.64689,1.5266,-0.268398,-1.68393,1.43199,-9.16059,-1.64689,1.70143,-0.268398,-1.68393,1.64672,-9.16059,-1.64689,1.83524,-0.268398,-1.68393,1.82875,-9.16059,-1.64689,1.90766,-0.268398,-1.68393,1.95039,-9.16059,-1.86364,1.90766,-0.268398,-1.68393,1.9931,-9.16059,-1.96224,1.83524,-0.268398,-2.23375,1.95039,-9.16059,-2.03771,1.70143,-0.268398,-2.41579,1.82875,-0.268398,-2.53742,1.64672,7.34134,-2.56925,1.32254,7.34134,-2.56925,1.54143,7.34134,-2.48548,1.12031,7.34134,-2.3307,0.965524,7.34134,-2.12847,0.881756,7.34134,-1.68393,0.881756,7.34134,-1.68393,0.965524,7.34134,-1.68393,1.12031,7.34134,-1.68393,1.32254,7.34134,-1.68393,1.54143,7.34134,-1.68393,1.74367,7.34134,-1.68393,1.89845,7.34134,-1.68393,1.98222,7.34134,-2.12847,1.98222,7.34134,-2.3307,1.89845,7.34134,-2.48548,1.74367,-0.268398,-2.56925,1.54143,-0.268398,-2.48548,1.74367,-0.268398,-2.3307,1.89845,-0.268398,-2.12847,1.98222,-0.268398,-1.68393,1.98222,-0.268398,-1.68393,1.89845,-0.268398,-1.68393,1.74367,-0.268398,-1.68393,1.54143,-0.268398,-1.68393,1.32254,-0.268398,-1.68393,1.12031,-0.268398,-1.68393,0.965524,-0.268398,-1.68393,0.881756,-0.268398,-2.12847,0.881756,-0.268398,-2.3307,0.965524,-0.268398,-2.48548,1.12031,-0.268398,-2.56925,1.32254,3.54599,-2.58649,1.42939,3.54599,-2.54224,1.20693,3.54599,-2.41623,1.01833,3.54599,-2.22764,0.892322,3.54599,-1.65802,0.848072,3.54599,-2.22764,1.96645,3.54599,-2.41623,1.84044,3.54599,-2.54224,1.65185,3.54599,-2.57522,1.54277,3.54599,-2.48843,1.75229,3.54599,-2.32808,1.91264,3.54599,-2.11857,1.99942,3.54599,-2.11857,0.859349,3.54599,-2.32808,0.946132};
			return value;
		}
		private double[] getCoordinate_6_1014_point_9()
		{
			double[] value = {3.54599,-2.48843,1.10649,3.54599,-2.57522,1.316,7.3781,-2.57313,1.55345,7.3781,-2.57313,1.31052,7.43816,-2.47277,1.08609,7.54913,-2.32232,0.914318,7.69413,-2.12575,0.911728,8.01285,-1.69364,0.911728,8.01285,-1.69364,0.914318,8.01285,-1.69364,1.08609,8.01285,-1.69364,1.31052,8.01285,-1.69364,1.55345,8.01285,-1.69364,1.77788,8.01285,-1.69364,1.94965,8.01285,-1.69364,1.95224,7.69413,-2.12575,1.95224,7.54913,-2.32232,1.94965,7.43816,-2.47277,1.77788,7.78123,-2.11359,-1.57348,7.82275,-2.11359,-1.56358,7.85795,-2.11359,-1.5354,7.88146,-2.11359,-1.49322,7.88972,-2.11359,-1.44346,7.88146,-2.11359,-1.3937,7.85795,-2.11359,-1.35152,7.82275,-2.11359,-1.32334,7.78123,-2.11359,-1.31344,7.78123,-2.15245,-1.68371,7.85795,-2.15245,-1.66542,7.92298,-2.15245,-1.61334,7.96644,-2.15245,-1.5354,7.9817,-2.15245,-1.44346,7.96644,-2.15245,-1.35152,7.92298,-2.15245,-1.27358,7.85795,-2.15245,-1.2215,7.78123,-2.15245,-1.20321,7.78123,-2.21062,-1.75736,7.88146,-2.21062,-1.73347,7.96644,-2.21062,-1.66542,8.02322,-2.21062,-1.56358,8.04316,-2.21062,-1.44346,8.02322,-2.21062,-1.32334,7.96644,-2.21062,-1.2215,7.88146,-2.21062,-1.15346,7.78123,-2.21062,-1.12956,7.78123,-2.27923,-1.78322,7.88972,-2.27923,-1.75736,7.9817,-2.27923,-1.68371,8.04316,-2.27923,-1.57348,8.06474,-2.27923,-1.44346,8.04316,-2.27923,-1.31344,7.9817,-2.27923,-1.20321,7.88972,-2.27923,-1.12956,7.78123,-2.27923,-1.1037,7.78123,-2.42657,-1.75736,7.88146,-2.42657,-1.73347,7.96644,-2.42657,-1.66542,8.02322,-2.42657,-1.56358,8.04316,-2.42657,-1.44346,8.02322,-2.42657,-1.32334,7.96644,-2.42657,-1.2215,7.88146,-2.42657,-1.15346,7.78123,-2.42657,-1.12956,7.78123,-2.51287,-1.68371,7.85795,-2.51287,-1.66542,7.92298,-2.51287,-1.61334,7.96644,-2.51287,-1.5354,7.9817,-2.51287,-1.44346,7.96644,-2.51287,-1.35152,7.92298,-2.51287,-1.27358,7.85795,-2.51287,-1.2215,7.78123,-2.51287,-1.20321,7.78123,-2.57053,-1.57348,7.82275,-2.57053,-1.56358,7.85795,-2.57053,-1.5354,7.88146,-2.57053,-1.49322,7.88972,-2.57053,-1.44346,7.88146,-2.57053,-1.3937,7.85795,-2.57053,-1.35152,7.82275,-2.57053,-1.32334,7.78123,-2.57053,-1.31344,7.78123,-2.05698,-1.44346,7.78123,-2.59078,-1.44346,7.69161,-1.84178,-1.44346,7.67478,-1.86246,-1.59509,7.63787,-1.95035,-1.72364,7.62224,-2.02401,-1.80953,7.64669,-2.1264,-1.90635,7.64669,-2.34437,-1.87112,7.64669,-2.47205,-1.77077,7.64669,-2.55736,-1.6206,7.64669,-2.58732,-1.44346,7.64669,-2.55736,-1.26632,7.64669,-2.47205,-1.11615,7.64669,-2.34437,-1.01581,7.64669,-2.1264,-0.980571,7.62224,-2.02401,-1.07739,7.63787,-1.95035,-1.16328,7.67478,-1.86246,-1.29183,7.60917,-1.74157,-1.44346};
			return value;
		}
		private double[] getCoordinate_6_1014_point_10()
		{
			double[] value = {7.58808,-1.75502,-1.63907,7.53021,-1.73042,-1.80489,7.4882,-1.85413,-1.91569,7.48097,-1.93499,-1.9546,7.26595,-2.26846,-1.91569,7.13898,-2.41292,-1.80489,7.05312,-2.51812,-1.63907,7.02297,-2.55506,-1.44346,7.05312,-2.51812,-1.24786,7.13898,-2.41292,-1.08203,7.26554,-2.22663,-0.971228,7.48097,-1.93499,-0.932319,7.4882,-1.85413,-0.971228,7.53021,-1.73042,-1.08203,7.58808,-1.75502,-1.24786,-9.16059,-2.08386,-1.43522,-9.16059,-2.06304,-1.62086,-9.16059,-2.00373,-1.77823,-9.16059,-1.91497,-1.88338,-9.16059,-1.64689,-1.92031,-9.16059,-1.64689,-1.88338,-9.16059,-1.64689,-1.77823,-9.16059,-1.64689,-1.62086,-9.16059,-1.64689,-1.43522,-9.16059,-1.64689,-1.24959,-9.16059,-1.64689,-1.09222,-9.16059,-1.64689,-0.987064,-9.16059,-1.64689,-0.950139,-9.16059,-1.91497,-0.987064,-9.16059,-2.00373,-1.09222,-9.16059,-2.06304,-1.24959,7.34134,-2.58013,-1.43522,7.34134,-2.53742,-1.64995,7.34134,-2.41579,-1.83199,7.34134,-2.23375,-1.95363,7.34134,-1.68393,-1.99634,7.34134,-1.68393,-1.95363,7.34134,-1.68393,-1.83199,7.34134,-1.68393,-1.64995,7.34134,-1.68393,-1.43522,7.34134,-1.68393,-1.22049,7.34134,-1.68393,-1.03845,7.34134,-1.68393,-0.916821,7.34134,-1.68393,-0.874108,7.34134,-2.23375,-0.916821,7.34134,-2.41579,-1.03845,7.34134,-2.53742,-1.22049,-9.16059,-2.07856,-1.52984,-9.16059,-2.07856,-1.34061,-0.268398,-2.58013,-1.43522,-9.16059,-2.03771,-1.70467,-0.268398,-2.53742,-1.64995,-9.16059,-1.96224,-1.83848,-0.268398,-2.41579,-1.83199,-9.16059,-1.86364,-1.9109,-0.268398,-2.23375,-1.95363,-9.16059,-1.64689,-1.9109,-0.268398,-1.68393,-1.99634,-9.16059,-1.64689,-1.83848,-0.268398,-1.68393,-1.95363,-9.16059,-1.64689,-1.70467,-0.268398,-1.68393,-1.83199,-9.16059,-1.64689,-1.52984,-0.268398,-1.68393,-1.64995,-9.16059,-1.64689,-1.34061,-0.268398,-1.68393,-1.43522,-9.16059,-1.64689,-1.16578,-0.268398,-1.68393,-1.22049,-9.16059,-1.64689,-1.03197,-0.268398,-1.68393,-1.03845,-9.16059,-1.64689,-0.95955,-0.268398,-1.68393,-0.916821,-9.16059,-1.86364,-0.95955,-0.268398,-1.68393,-0.874108,-9.16059,-1.96224,-1.03197,-0.268398,-2.23375,-0.916821,-9.16059,-2.03771,-1.16578,-0.268398,-2.41579,-1.03845,-0.268398,-2.53742,-1.22049,7.34134,-2.56925,-1.54467,7.34134,-2.56925,-1.32578,7.34134,-2.48548,-1.7469,7.34134,-2.3307,-1.90169,7.34134,-2.12847,-1.98545,7.34134,-1.68393,-1.98545,7.34134,-1.68393,-1.90169,7.34134,-1.68393,-1.7469,7.34134,-1.68393,-1.54467,7.34134,-1.68393,-1.32578,7.34134,-1.68393,-1.12354,7.34134,-1.68393,-0.968761,7.34134,-1.68393,-0.884993,7.34134,-2.12847,-0.884993,7.34134,-2.3307,-0.968761,7.34134,-2.48548,-1.12354,-0.268398,-2.56925,-1.32578,-0.268398,-2.48548,-1.12354,-0.268398,-2.3307,-0.968761,-0.268398,-2.12847,-0.884993,-0.268398,-1.68393,-0.884993};
			return value;
		}
		private double[] getCoordinate_6_1014_point_11()
		{
			double[] value = {-0.268398,-1.68393,-0.968761,-0.268398,-1.68393,-1.12354,-0.268398,-1.68393,-1.32578,-0.268398,-1.68393,-1.54467,-0.268398,-1.68393,-1.7469,-0.268398,-1.68393,-1.90169,-0.268398,-1.68393,-1.98545,-0.268398,-2.12847,-1.98545,-0.268398,-2.3307,-1.90169,-0.268398,-2.48548,-1.7469,-0.268398,-2.56925,-1.54467,3.54599,-2.58649,-1.43782,3.54599,-2.54224,-1.66028,3.54599,-2.41623,-1.84887,3.54599,-2.22764,-1.97489,3.54599,-1.65802,-2.02662,3.54599,-2.22764,-0.900757,3.54599,-2.41623,-1.02677,3.54599,-2.54224,-1.21536,3.54599,-2.57522,-1.32443,3.54599,-2.48843,-1.11492,3.54599,-2.32808,-0.954567,3.54599,-2.11857,-0.867784,3.54599,-2.11857,-2.00786,3.54599,-2.32808,-1.92108,3.54599,-2.48843,-1.76072,3.54599,-2.57522,-1.55121,7.3781,-2.57313,-1.31376,7.3781,-2.57313,-1.55669,7.43816,-2.47277,-1.78112,7.54913,-2.32232,-1.95289,7.69413,-2.12575,-1.95548,8.01285,-1.69364,-1.95548,8.01285,-1.69364,-1.95289,8.01285,-1.69364,-1.78112,8.01285,-1.69364,-1.55669,8.01285,-1.69364,-1.31376,8.01285,-1.69364,-1.08933,8.01285,-1.69364,-0.917555,8.01285,-1.69364,-0.914965,7.69413,-2.12575,-0.914965,7.54913,-2.32232,-0.917555,7.43816,-2.47277,-1.08933,-9.93226,-1.55603,1.03326,-9.93226,-1.46699,1.03326,-9.12566,-1.46699,1.03326,-9.12566,-1.55603,1.03326,-9.93226,-1.55603,0.987551,-9.93226,-1.46699,0.987551,-9.12566,-1.46699,0.987551,-9.12566,-1.55603,0.987551,-9.9318,-1.55603,1.87974,-9.9318,-1.46699,1.87974,-9.93178,-1.46699,0.991913,-9.93178,-1.55603,0.991913,-9.98366,-1.55603,1.87974,-9.98366,-1.46699,1.87974,-9.98363,-1.46699,0.991911,-9.98363,-1.55603,0.991911,-9.93226,-1.55603,1.88282,-9.93226,-1.46699,1.88282,-9.12566,-1.46699,1.88282,-9.12566,-1.55603,1.88282,-9.93226,-1.55603,1.83712,-9.93226,-1.46699,1.83712,-9.12566,-1.46699,1.83712,-9.12566,-1.55603,1.83712,-9.47323,-1.46699,1.03326,-9.33078,-1.46699,1.03326,-9.47323,-1.46699,0.987551,-9.33078,-1.46699,0.987551,-9.47323,-1.46699,1.88282,-9.33078,-1.46699,1.88282,-9.47323,-1.46699,1.83712,-9.33078,-1.46699,1.83712,-9.11243,-1.13869,0.987551,-9.11243,-1.13869,1.03326,-9.11243,-1.25907,1.03326,-9.11243,-1.25907,0.987551,-9.11243,-1.13869,1.83712,-9.11243,-1.13869,1.88282,-9.11243,-1.25907,1.88282,-9.11243,-1.25907,1.83712,-9.93179,-1.55603,1.5838,-9.93178,-1.55603,1.28786,-9.93179,-1.46699,1.5838,-9.93178,-1.46699,1.28786,-9.10196,-1.55603,1.28786,-9.10196,-1.46699,1.28786,-9.10197,-1.46699,1.5838,-9.10197,-1.55603,1.5838,-9.93226,-1.55603,-1.84339,-9.93226,-1.46699,-1.84339,-9.12566,-1.46699,-1.84339,-9.12566,-1.55603,-1.84339,-9.93226,-1.55603,-1.8891,-9.93226,-1.46699,-1.8891,-9.12566,-1.46699,-1.8891,-9.12566,-1.55603,-1.8891,-9.9318,-1.55603,-0.996905};
			return value;
		}
		private double[] getCoordinate_6_1014_point_12()
		{
			double[] value = {-9.9318,-1.46699,-0.996905,-9.93178,-1.46699,-1.88473,-9.93178,-1.55603,-1.88473,-9.98366,-1.55603,-0.996907,-9.98366,-1.46699,-0.996907,-9.98363,-1.46699,-1.88474,-9.98363,-1.55603,-1.88474,-9.93226,-1.55603,-0.993826,-9.93226,-1.46699,-0.993826,-9.12566,-1.46699,-0.993826,-9.12566,-1.55603,-0.993826,-9.93226,-1.55603,-1.03953,-9.93226,-1.46699,-1.03953,-9.12566,-1.46699,-1.03953,-9.12566,-1.55603,-1.03953,-9.47323,-1.46699,-1.84339,-9.33078,-1.46699,-1.84339,-9.47323,-1.46699,-1.8891,-9.33078,-1.46699,-1.8891,-9.47323,-1.46699,-0.993826,-9.33078,-1.46699,-0.993826,-9.47323,-1.46699,-1.03953,-9.33078,-1.46699,-1.03953,-9.11243,-1.13869,-1.8891,-9.11243,-1.13869,-1.84339,-9.11243,-1.25907,-1.84339,-9.11243,-1.25907,-1.8891,-9.11243,-1.13869,-1.03953,-9.11243,-1.13869,-0.993826,-9.11243,-1.25907,-0.993826,-9.11243,-1.25907,-1.03953,-9.93179,-1.55603,-1.29285,-9.93178,-1.55603,-1.58879,-9.93179,-1.46699,-1.29285,-9.93178,-1.46699,-1.58879,-9.10196,-1.55603,-1.58879,-9.10196,-1.46699,-1.58879,-9.10197,-1.46699,-1.29285,-9.10197,-1.55603,-1.29285,-9.13988,-1.65629,-1.67308,-9.13988,-1.66938,-1.60728,-9.13988,-1.70665,-1.55149,-9.13988,-1.76244,-1.51422,-9.13988,-1.82824,-1.50113,-9.13988,-1.89404,-1.51422,-9.13988,-1.94982,-1.55149,-9.13988,-1.98709,-1.60728,-9.13988,-2.00018,-1.67308,-9.13988,-1.98709,-1.73888,-9.13988,-1.94982,-1.79466,-9.13988,-1.89404,-1.83193,-9.13988,-1.82824,-1.84502,-9.13988,-1.76244,-1.83193,-9.13988,-1.70665,-1.79466,-9.13988,-1.66938,-1.73888,-9.66773,-1.82824,-1.67308,-9.13988,-1.65963,-1.63954,-9.13988,-1.65963,-1.70661,-9.3359,-1.72821,-1.67308,-9.13988,-1.6853,-1.57757,-9.3359,-1.73583,-1.6348,-9.13988,-1.73273,-1.53014,-9.3359,-1.75751,-1.60235,-9.13988,-1.7947,-1.50447,-9.3359,-1.78996,-1.58067,-9.13988,-1.86177,-1.50447,-9.3359,-1.82824,-1.57305,-9.13988,-1.92375,-1.53014,-9.3359,-1.86651,-1.58067,-9.13988,-1.97118,-1.57757,-9.3359,-1.89896,-1.60235,-9.13988,-1.99684,-1.63954,-9.3359,-1.92065,-1.6348,-9.13988,-1.99684,-1.70661,-9.3359,-1.92826,-1.67308,-9.13988,-1.97118,-1.76858,-9.3359,-1.92065,-1.71135,-9.13988,-1.92375,-1.81602,-9.3359,-1.89896,-1.7438,-9.13988,-1.86177,-1.84168,-9.3359,-1.86651,-1.76548,-9.13988,-1.7947,-1.84168,-9.3359,-1.82824,-1.7731,-9.13988,-1.73273,-1.81602,-9.3359,-1.78996,-1.76548,-9.13988,-1.6853,-1.76858,-9.3359,-1.75751,-1.7438,-9.3359,-1.73583,-1.71135,-9.29669,-1.71583,-1.65072,-9.29669,-1.73294,-1.6094,-9.29669,-1.76456,-1.57778,-9.29669,-1.80588,-1.56067,-9.29669,-1.85059,-1.56067,-9.29669,-1.89191,-1.57778,-9.29669,-1.92353,-1.6094,-9.29669,-1.94064,-1.65072,-9.29669,-1.94064,-1.69543,-9.29669,-1.92353,-1.73675,-9.29669,-1.89191,-1.76837,-9.29669,-1.85059,-1.78548};
			return value;
		}
		private double[] getCoordinate_6_1014_point_13()
		{
			double[] value = {-9.29669,-1.80588,-1.78548,-9.29669,-1.76456,-1.76837,-9.29669,-1.73294,-1.73675,-9.29669,-1.71583,-1.69543,-9.38518,-1.74842,-1.67308,-9.38518,-1.7545,-1.64253,-9.38518,-1.7718,-1.61664,-9.38518,-1.79769,-1.59934,-9.38518,-1.82824,-1.59326,-9.38518,-1.85878,-1.59934,-9.38518,-1.88467,-1.61664,-9.38518,-1.90197,-1.64253,-9.38518,-1.90805,-1.67308,-9.38518,-1.90197,-1.70362,-9.38518,-1.88467,-1.72951,-9.38518,-1.85878,-1.74681,-9.38518,-1.82824,-1.75289,-9.38518,-1.79769,-1.74681,-9.38518,-1.7718,-1.72951,-9.38518,-1.7545,-1.70362,-9.64749,-1.74842,-1.67308,-9.64749,-1.7545,-1.64253,-9.64749,-1.7718,-1.61664,-9.64749,-1.79769,-1.59934,-9.64749,-1.82824,-1.59326,-9.64749,-1.85878,-1.59934,-9.64749,-1.88467,-1.61664,-9.64749,-1.90197,-1.64253,-9.64749,-1.90805,-1.67308,-9.64749,-1.90197,-1.70362,-9.64749,-1.88467,-1.72951,-9.64749,-1.85878,-1.74681,-9.64749,-1.82824,-1.75289,-9.64749,-1.79769,-1.74681,-9.64749,-1.7718,-1.72951,-9.64749,-1.7545,-1.70362,-9.47262,-1.74842,-1.67308,-9.56006,-1.74842,-1.67308,-9.47262,-1.7545,-1.64253,-9.56006,-1.7545,-1.64253,-9.47262,-1.7545,-1.70362,-9.56006,-1.7545,-1.70362,-9.64749,-1.75146,-1.68835,-9.64749,-1.75146,-1.6578,-9.56006,-1.75146,-1.68835,-9.56006,-1.75146,-1.6578,-9.71481,-1.72895,-1.67308,-9.56006,-1.72895,-1.67308,-9.64749,-1.73199,-1.6578,-9.56006,-1.73199,-1.6578,-9.56006,-1.73199,-1.68835,-9.64749,-1.73199,-1.68835,-9.71481,-1.74842,-1.67308,-9.70607,-1.72895,-1.67308,-9.71481,-1.73199,-1.6578,-9.71481,-1.73199,-1.68835,-9.71481,-1.75146,-1.6578,-9.70607,-1.73199,-1.6578,-9.71481,-1.75146,-1.68835,-9.70607,-1.73199,-1.68835,-9.6793,-1.74842,-1.67308,-9.69617,-1.74842,-1.67308,-9.69617,-1.75146,-1.6578,-9.6793,-1.75146,-1.6578,-9.69617,-1.75146,-1.68835,-9.6793,-1.75146,-1.68835,-9.75528,-1.92475,-1.67308,-9.6793,-1.92475,-1.67308,-9.75528,-1.91772,-1.68835,-9.6793,-1.91772,-1.68835,-9.6793,-1.91772,-1.6578,-9.75528,-1.91772,-1.6578,-9.75528,-1.94235,-1.67308,-9.6793,-1.94235,-1.67308,-9.75528,-1.93533,-1.68835,-9.6793,-1.93533,-1.68835,-9.6793,-1.93533,-1.6578,-9.75528,-1.93533,-1.6578,-9.50865,-1.92634,-1.67308,-9.50865,-1.93715,-1.67308,-9.50865,-1.93283,-1.68245,-9.50865,-1.92202,-1.68245,-9.50865,-1.92202,-1.6637,-9.50865,-1.93283,-1.6637,-9.59398,-1.95705,-1.67308,-9.59398,-1.94649,-1.69602,-9.59398,-1.94649,-1.65013,-9.13988,-1.65629,-1.19851,-9.13988,-1.66938,-1.13271,-9.13988,-1.70665,-1.07692,-9.13988,-1.76244,-1.03965,-9.13988,-1.82824,-1.02656,-9.13988,-1.89404,-1.03965,-9.13988,-1.94982,-1.07692,-9.13988,-1.98709,-1.13271,-9.13988,-2.00018,-1.19851,-9.13988,-1.98709,-1.26431,-9.13988,-1.94982,-1.32009,-9.13988,-1.89404,-1.35736,-9.13988,-1.82824,-1.37045};
			return value;
		}
		private double[] getCoordinate_6_1014_point_14()
		{
			double[] value = {-9.13988,-1.76244,-1.35736,-9.13988,-1.70665,-1.32009,-9.13988,-1.66938,-1.26431,-9.66773,-1.82824,-1.19851,-9.13988,-1.65963,-1.16497,-9.13988,-1.65963,-1.23204,-9.3359,-1.72821,-1.19851,-9.13988,-1.6853,-1.103,-9.3359,-1.73583,-1.16023,-9.13988,-1.73273,-1.05557,-9.3359,-1.75751,-1.12778,-9.13988,-1.7947,-1.0299,-9.3359,-1.78996,-1.1061,-9.13988,-1.86177,-1.0299,-9.3359,-1.82824,-1.09848,-9.13988,-1.92375,-1.05557,-9.3359,-1.86651,-1.1061,-9.13988,-1.97118,-1.103,-9.3359,-1.89896,-1.12778,-9.13988,-1.99684,-1.16497,-9.3359,-1.92065,-1.16023,-9.13988,-1.99684,-1.23204,-9.3359,-1.92826,-1.19851,-9.13988,-1.97118,-1.29402,-9.3359,-1.92065,-1.23678,-9.13988,-1.92375,-1.34145,-9.3359,-1.89896,-1.26923,-9.13988,-1.86177,-1.36711,-9.3359,-1.86651,-1.29092,-9.13988,-1.7947,-1.36711,-9.3359,-1.82824,-1.29853,-9.13988,-1.73273,-1.34145,-9.3359,-1.78996,-1.29092,-9.13988,-1.6853,-1.29402,-9.3359,-1.75751,-1.26923,-9.3359,-1.73583,-1.23678,-9.29669,-1.71583,-1.17615,-9.29669,-1.73294,-1.13483,-9.29669,-1.76456,-1.10321,-9.29669,-1.80588,-1.0861,-9.29669,-1.85059,-1.0861,-9.29669,-1.89191,-1.10321,-9.29669,-1.92353,-1.13483,-9.29669,-1.94064,-1.17615,-9.29669,-1.94064,-1.22086,-9.29669,-1.92353,-1.26218,-9.29669,-1.89191,-1.2938,-9.29669,-1.85059,-1.31091,-9.29669,-1.80588,-1.31091,-9.29669,-1.76456,-1.2938,-9.29669,-1.73294,-1.26218,-9.29669,-1.71583,-1.22086,-9.38518,-1.74842,-1.19851,-9.38518,-1.7545,-1.16796,-9.38518,-1.7718,-1.14207,-9.38518,-1.79769,-1.12477,-9.38518,-1.82824,-1.11869,-9.38518,-1.85878,-1.12477,-9.38518,-1.88467,-1.14207,-9.38518,-1.90197,-1.16796,-9.38518,-1.90805,-1.19851,-9.38518,-1.90197,-1.22905,-9.38518,-1.88467,-1.25494,-9.38518,-1.85878,-1.27224,-9.38518,-1.82824,-1.27832,-9.38518,-1.79769,-1.27224,-9.38518,-1.7718,-1.25494,-9.38518,-1.7545,-1.22905,-9.64749,-1.74842,-1.19851,-9.64749,-1.7545,-1.16796,-9.64749,-1.7718,-1.14207,-9.64749,-1.79769,-1.12477,-9.64749,-1.82824,-1.11869,-9.64749,-1.85878,-1.12477,-9.64749,-1.88467,-1.14207,-9.64749,-1.90197,-1.16796,-9.64749,-1.90805,-1.19851,-9.64749,-1.90197,-1.22905,-9.64749,-1.88467,-1.25494,-9.64749,-1.85878,-1.27224,-9.64749,-1.82824,-1.27832,-9.64749,-1.79769,-1.27224,-9.64749,-1.7718,-1.25494,-9.64749,-1.7545,-1.22905,-9.47262,-1.74842,-1.19851,-9.56006,-1.74842,-1.19851,-9.47262,-1.7545,-1.16796,-9.56006,-1.7545,-1.16796,-9.47262,-1.7545,-1.22905,-9.56006,-1.7545,-1.22905,-9.64749,-1.75146,-1.21378,-9.64749,-1.75146,-1.18323,-9.56006,-1.75146,-1.21378,-9.56006,-1.75146,-1.18323,-9.71481,-1.72895,-1.19851,-9.56006,-1.72895,-1.19851,-9.64749,-1.73199,-1.18323,-9.56006,-1.73199,-1.18323,-9.56006,-1.73199,-1.21378,-9.64749,-1.73199,-1.21378};
			return value;
		}
		private double[] getCoordinate_6_1014_point_15()
		{
			double[] value = {-9.71481,-1.74842,-1.19851,-9.70607,-1.72895,-1.19851,-9.71481,-1.73199,-1.18323,-9.71481,-1.73199,-1.21378,-9.71481,-1.75146,-1.18323,-9.70607,-1.73199,-1.18323,-9.71481,-1.75146,-1.21378,-9.70607,-1.73199,-1.21378,-9.6793,-1.74842,-1.19851,-9.69617,-1.74842,-1.19851,-9.69617,-1.75146,-1.18323,-9.6793,-1.75146,-1.18323,-9.69617,-1.75146,-1.21378,-9.6793,-1.75146,-1.21378,-9.75528,-1.92475,-1.19851,-9.6793,-1.92475,-1.19851,-9.75528,-1.91772,-1.21378,-9.6793,-1.91772,-1.21378,-9.6793,-1.91772,-1.18323,-9.75528,-1.91772,-1.18323,-9.75528,-1.94235,-1.19851,-9.6793,-1.94235,-1.19851,-9.75528,-1.93533,-1.21378,-9.6793,-1.93533,-1.21378,-9.6793,-1.93533,-1.18323,-9.75528,-1.93533,-1.18323,-9.50865,-1.92634,-1.19851,-9.50865,-1.93715,-1.19851,-9.50865,-1.93283,-1.20788,-9.50865,-1.92202,-1.20788,-9.50865,-1.92202,-1.18913,-9.50865,-1.93283,-1.18913,-9.59398,-1.95705,-1.19851,-9.59398,-1.94649,-1.22145,-9.59398,-1.94649,-1.17556,-9.13988,-1.65629,1.19591,-9.13988,-1.66938,1.26171,-9.13988,-1.70665,1.3175,-9.13988,-1.76244,1.35477,-9.13988,-1.82824,1.36786,-9.13988,-1.89404,1.35477,-9.13988,-1.94982,1.3175,-9.13988,-1.98709,1.26171,-9.13988,-2.00018,1.19591,-9.13988,-1.98709,1.13011,-9.13988,-1.94982,1.07433,-9.13988,-1.89404,1.03706,-9.13988,-1.82824,1.02397,-9.13988,-1.76244,1.03706,-9.13988,-1.70665,1.07433,-9.13988,-1.66938,1.13011,-9.66773,-1.82824,1.19591,-9.13988,-1.65963,1.22945,-9.13988,-1.65963,1.16238,-9.3359,-1.72821,1.19591,-9.13988,-1.6853,1.29142,-9.3359,-1.73583,1.23419,-9.13988,-1.73273,1.33885,-9.3359,-1.75751,1.26664,-9.13988,-1.7947,1.36452,-9.3359,-1.78996,1.28832,-9.13988,-1.86177,1.36452,-9.3359,-1.82824,1.29594,-9.13988,-1.92375,1.33885,-9.3359,-1.86651,1.28832,-9.13988,-1.97118,1.29142,-9.3359,-1.89896,1.26664,-9.13988,-1.99684,1.22945,-9.3359,-1.92065,1.23419,-9.13988,-1.99684,1.16238,-9.3359,-1.92826,1.19591,-9.13988,-1.97118,1.1004,-9.3359,-1.92065,1.15764,-9.13988,-1.92375,1.05297,-9.3359,-1.89896,1.12519,-9.13988,-1.86177,1.02731,-9.3359,-1.86651,1.1035,-9.13988,-1.7947,1.02731,-9.3359,-1.82824,1.09589,-9.13988,-1.73273,1.05297,-9.3359,-1.78996,1.1035,-9.13988,-1.6853,1.1004,-9.3359,-1.75751,1.12519,-9.3359,-1.73583,1.15764,-9.29669,-1.71583,1.21827,-9.29669,-1.73294,1.25959,-9.29669,-1.76456,1.29121,-9.29669,-1.80588,1.30832,-9.29669,-1.85059,1.30832,-9.29669,-1.89191,1.29121,-9.29669,-1.92353,1.25959,-9.29669,-1.94064,1.21827,-9.29669,-1.94064,1.17356,-9.29669,-1.92353,1.13224,-9.29669,-1.89191,1.10062,-9.29669,-1.85059,1.08351,-9.29669,-1.80588,1.08351,-9.29669,-1.76456,1.10062,-9.29669,-1.73294,1.13224,-9.29669,-1.71583,1.17356};
			return value;
		}
		private double[] getCoordinate_6_1014_point_16()
		{
			double[] value = {-9.38518,-1.74842,1.19591,-9.38518,-1.7545,1.22646,-9.38518,-1.7718,1.25235,-9.38518,-1.79769,1.26965,-9.38518,-1.82824,1.27573,-9.38518,-1.85878,1.26965,-9.38518,-1.88467,1.25235,-9.38518,-1.90197,1.22646,-9.38518,-1.90805,1.19591,-9.38518,-1.90197,1.16537,-9.38518,-1.88467,1.13948,-9.38518,-1.85878,1.12218,-9.38518,-1.82824,1.1161,-9.38518,-1.79769,1.12218,-9.38518,-1.7718,1.13948,-9.38518,-1.7545,1.16537,-9.64749,-1.74842,1.19591,-9.64749,-1.7545,1.22646,-9.64749,-1.7718,1.25235,-9.64749,-1.79769,1.26965,-9.64749,-1.82824,1.27573,-9.64749,-1.85878,1.26965,-9.64749,-1.88467,1.25235,-9.64749,-1.90197,1.22646,-9.64749,-1.90805,1.19591,-9.64749,-1.90197,1.16537,-9.64749,-1.88467,1.13948,-9.64749,-1.85878,1.12218,-9.64749,-1.82824,1.1161,-9.64749,-1.79769,1.12218,-9.64749,-1.7718,1.13948,-9.64749,-1.7545,1.16537,-9.47262,-1.74842,1.19591,-9.56006,-1.74842,1.19591,-9.47262,-1.7545,1.22646,-9.56006,-1.7545,1.22646,-9.47262,-1.7545,1.16537,-9.56006,-1.7545,1.16537,-9.64749,-1.75146,1.18064,-9.64749,-1.75146,1.21119,-9.56006,-1.75146,1.18064,-9.56006,-1.75146,1.21119,-9.71481,-1.72895,1.19591,-9.56006,-1.72895,1.19591,-9.64749,-1.73199,1.21119,-9.56006,-1.73199,1.21119,-9.56006,-1.73199,1.18064,-9.64749,-1.73199,1.18064,-9.71481,-1.74842,1.19591,-9.70607,-1.72895,1.19591,-9.71481,-1.73199,1.21119,-9.71481,-1.73199,1.18064,-9.71481,-1.75146,1.21119,-9.70607,-1.73199,1.21119,-9.71481,-1.75146,1.18064,-9.70607,-1.73199,1.18064,-9.6793,-1.74842,1.19591,-9.69617,-1.74842,1.19591,-9.69617,-1.75146,1.21119,-9.6793,-1.75146,1.21119,-9.69617,-1.75146,1.18064,-9.6793,-1.75146,1.18064,-9.75528,-1.92475,1.19591,-9.6793,-1.92475,1.19591,-9.75528,-1.91772,1.18064,-9.6793,-1.91772,1.18064,-9.6793,-1.91772,1.21119,-9.75528,-1.91772,1.21119,-9.75528,-1.94235,1.19591,-9.6793,-1.94235,1.19591,-9.75528,-1.93533,1.18064,-9.6793,-1.93533,1.18064,-9.6793,-1.93533,1.21119,-9.75528,-1.93533,1.21119,-9.50865,-1.92634,1.19591,-9.50865,-1.93715,1.19591,-9.50865,-1.93283,1.18654,-9.50865,-1.92202,1.18654,-9.50865,-1.92202,1.20529,-9.50865,-1.93283,1.20529,-9.59398,-1.95705,1.19591,-9.59398,-1.94649,1.17297,-9.59398,-1.94649,1.21886,-9.13988,-1.65629,1.67048,-9.13988,-1.66938,1.73628,-9.13988,-1.70665,1.79207,-9.13988,-1.76244,1.82934,-9.13988,-1.82824,1.84243,-9.13988,-1.89404,1.82934,-9.13988,-1.94982,1.79207,-9.13988,-1.98709,1.73628,-9.13988,-2.00018,1.67048,-9.13988,-1.98709,1.60468,-9.13988,-1.94982,1.5489,-9.13988,-1.89404,1.51163,-9.13988,-1.82824,1.49854,-9.13988,-1.76244,1.51163,-9.13988,-1.70665,1.5489,-9.13988,-1.66938,1.60468,-9.66773,-1.82824,1.67048};
			return value;
		}
		private double[] getCoordinate_6_1014_point_17()
		{
			double[] value = {-9.13988,-1.65963,1.70402,-9.13988,-1.65963,1.63695,-9.3359,-1.72821,1.67048,-9.13988,-1.6853,1.76599,-9.3359,-1.73583,1.70876,-9.13988,-1.73273,1.81342,-9.3359,-1.75751,1.74121,-9.13988,-1.7947,1.83909,-9.3359,-1.78996,1.76289,-9.13988,-1.86177,1.83909,-9.3359,-1.82824,1.77051,-9.13988,-1.92375,1.81342,-9.3359,-1.86651,1.76289,-9.13988,-1.97118,1.76599,-9.3359,-1.89896,1.74121,-9.13988,-1.99684,1.70402,-9.3359,-1.92065,1.70876,-9.13988,-1.99684,1.63695,-9.3359,-1.92826,1.67048,-9.13988,-1.97118,1.57497,-9.3359,-1.92065,1.63221,-9.13988,-1.92375,1.52754,-9.3359,-1.89896,1.59976,-9.13988,-1.86177,1.50187,-9.3359,-1.86651,1.57807,-9.13988,-1.7947,1.50187,-9.3359,-1.82824,1.57046,-9.13988,-1.73273,1.52754,-9.3359,-1.78996,1.57807,-9.13988,-1.6853,1.57497,-9.3359,-1.75751,1.59976,-9.3359,-1.73583,1.63221,-9.29669,-1.71583,1.69284,-9.29669,-1.73294,1.73416,-9.29669,-1.76456,1.76578,-9.29669,-1.80588,1.78289,-9.29669,-1.85059,1.78289,-9.29669,-1.89191,1.76578,-9.29669,-1.92353,1.73416,-9.29669,-1.94064,1.69284,-9.29669,-1.94064,1.64812,-9.29669,-1.92353,1.60681,-9.29669,-1.89191,1.57519,-9.29669,-1.85059,1.55808,-9.29669,-1.80588,1.55808,-9.29669,-1.76456,1.57519,-9.29669,-1.73294,1.60681,-9.29669,-1.71583,1.64812,-9.38518,-1.74842,1.67048,-9.38518,-1.7545,1.70103,-9.38518,-1.7718,1.72692,-9.38518,-1.79769,1.74422,-9.38518,-1.82824,1.7503,-9.38518,-1.85878,1.74422,-9.38518,-1.88467,1.72692,-9.38518,-1.90197,1.70103,-9.38518,-1.90805,1.67048,-9.38518,-1.90197,1.63994,-9.38518,-1.88467,1.61405,-9.38518,-1.85878,1.59675,-9.38518,-1.82824,1.59067,-9.38518,-1.79769,1.59675,-9.38518,-1.7718,1.61405,-9.38518,-1.7545,1.63994,-9.64749,-1.74842,1.67048,-9.64749,-1.7545,1.70103,-9.64749,-1.7718,1.72692,-9.64749,-1.79769,1.74422,-9.64749,-1.82824,1.7503,-9.64749,-1.85878,1.74422,-9.64749,-1.88467,1.72692,-9.64749,-1.90197,1.70103,-9.64749,-1.90805,1.67048,-9.64749,-1.90197,1.63994,-9.64749,-1.88467,1.61405,-9.64749,-1.85878,1.59675,-9.64749,-1.82824,1.59067,-9.64749,-1.79769,1.59675,-9.64749,-1.7718,1.61405,-9.64749,-1.7545,1.63994,-9.47262,-1.74842,1.67048,-9.56006,-1.74842,1.67048,-9.47262,-1.7545,1.70103,-9.56006,-1.7545,1.70103,-9.47262,-1.7545,1.63994,-9.56006,-1.7545,1.63994,-9.64749,-1.75146,1.65521,-9.64749,-1.75146,1.68576,-9.56006,-1.75146,1.65521,-9.56006,-1.75146,1.68576,-9.71481,-1.72895,1.67048,-9.56006,-1.72895,1.67048,-9.64749,-1.73199,1.68576,-9.56006,-1.73199,1.68576,-9.56006,-1.73199,1.65521,-9.64749,-1.73199,1.65521,-9.71481,-1.74842,1.67048,-9.70607,-1.72895,1.67048,-9.71481,-1.73199,1.68576,-9.71481,-1.73199,1.65521};
			return value;
		}
		private double[] getCoordinate_6_1014_point_18()
		{
			double[] value = {-9.71481,-1.75146,1.68576,-9.70607,-1.73199,1.68576,-9.71481,-1.75146,1.65521,-9.70607,-1.73199,1.65521,-9.6793,-1.74842,1.67048,-9.69617,-1.74842,1.67048,-9.69617,-1.75146,1.68576,-9.6793,-1.75146,1.68576,-9.69617,-1.75146,1.65521,-9.6793,-1.75146,1.65521,-9.75528,-1.92475,1.67048,-9.6793,-1.92475,1.67048,-9.75528,-1.91772,1.65521,-9.6793,-1.91772,1.65521,-9.6793,-1.91772,1.68576,-9.75528,-1.91772,1.68576,-9.75528,-1.94235,1.67048,-9.6793,-1.94235,1.67048,-9.75528,-1.93533,1.65521,-9.6793,-1.93533,1.65521,-9.6793,-1.93533,1.68576,-9.75528,-1.93533,1.68576,-9.50865,-1.92634,1.67048,-9.50865,-1.93715,1.67048,-9.50865,-1.93283,1.66111,-9.50865,-1.92202,1.66111,-9.50865,-1.92202,1.67986,-9.50865,-1.93283,1.67986,-9.59398,-1.95705,1.67048,-9.59398,-1.94649,1.64754,-9.59398,-1.94649,1.69343,6.10317,1.98964,-0.461477,6.10247,1.98964,-0.457987,6.1005,1.98964,-0.455028,6.09754,1.98964,-0.453051,6.09405,1.98964,-0.452357,6.09056,1.98964,-0.453051,6.0876,1.98964,-0.455028,6.08562,1.98964,-0.457987,6.08493,1.98964,-0.461477,6.08562,1.98964,-0.464967,6.0876,1.98964,-0.467926,6.09056,1.98964,-0.469903,6.09405,1.98964,-0.470597,6.09754,1.98964,-0.469903,6.1005,1.98964,-0.467926,6.10247,1.98964,-0.464967,6.10317,2.05791,-0.461477,6.10247,2.05791,-0.457987,6.1005,2.05791,-0.455028,6.09754,2.05791,-0.453051,6.09405,2.05791,-0.452357,6.09056,2.05791,-0.453051,6.0876,2.05791,-0.455028,6.08562,2.05791,-0.457987,6.08493,2.05791,-0.461477,6.08562,2.05791,-0.464967,6.0876,2.05791,-0.467926,6.09056,2.05791,-0.469903,6.09405,2.05791,-0.470597,6.09754,2.05791,-0.469903,6.1005,2.05791,-0.467926,6.10247,2.05791,-0.464967,6.10009,2.0647,-0.458976,6.10058,2.0647,-0.461477,6.10009,2.0647,-0.463977,6.09867,2.0647,-0.466097,6.09655,2.0647,-0.467513,6.09405,2.0647,-0.46801,6.09155,2.0647,-0.467513,6.08943,2.0647,-0.466097,6.08801,2.0647,-0.463977,6.08752,2.0647,-0.461477,6.08801,2.0647,-0.458976,6.08943,2.0647,-0.456857,6.09155,2.0647,-0.45544,6.09405,2.0647,-0.454943,6.09655,2.0647,-0.45544,6.09867,2.0647,-0.456857,6.10009,2.25478,-0.458976,6.10058,2.25478,-0.461477,6.10009,2.25478,-0.463977,6.09867,2.25478,-0.466097,6.09655,2.25478,-0.467513,6.09405,2.25478,-0.46801,6.09155,2.25478,-0.467513,6.08943,2.25478,-0.466097,6.08801,2.25478,-0.463977,6.08752,2.25478,-0.461477,6.08801,2.25478,-0.458976,6.08943,2.25478,-0.456857,6.09155,2.25478,-0.45544,6.09405,2.25478,-0.454943,6.09655,2.25478,-0.45544,6.09867,2.25478,-0.456857,6.09645,2.2651,-0.460481,6.09665,2.2651,-0.461477,6.09645,2.2651,-0.462473,6.09589,2.2651,-0.463317,6.09504,2.2651,-0.463881};
			return value;
		}
		private double[] getCoordinate_6_1014_point_19()
		{
			double[] value = {6.09405,2.2651,-0.464079,6.09305,2.2651,-0.463881,6.09221,2.2651,-0.463317,6.09164,2.2651,-0.462473,6.09145,2.2651,-0.461477,6.09164,2.2651,-0.460481,6.09221,2.2651,-0.459637,6.09305,2.2651,-0.459073,6.09405,2.2651,-0.458875,6.09504,2.2651,-0.459073,6.09589,2.2651,-0.459637,6.10317,1.98964,-0.311647,6.10247,1.98964,-0.308157,6.1005,1.98964,-0.305198,6.09754,1.98964,-0.303221,6.09405,1.98964,-0.302527,6.09056,1.98964,-0.303221,6.0876,1.98964,-0.305198,6.08562,1.98964,-0.308157,6.08493,1.98964,-0.311647,6.08562,1.98964,-0.315137,6.0876,1.98964,-0.318096,6.09056,1.98964,-0.320073,6.09405,1.98964,-0.320767,6.09754,1.98964,-0.320073,6.1005,1.98964,-0.318096,6.10247,1.98964,-0.315137,6.10317,2.05791,-0.311647,6.10247,2.05791,-0.308157,6.1005,2.05791,-0.305198,6.09754,2.05791,-0.303221,6.09405,2.05791,-0.302527,6.09056,2.05791,-0.303221,6.0876,2.05791,-0.305198,6.08562,2.05791,-0.308157,6.08493,2.05791,-0.311647,6.08562,2.05791,-0.315137,6.0876,2.05791,-0.318096,6.09056,2.05791,-0.320073,6.09405,2.05791,-0.320767,6.09754,2.05791,-0.320073,6.1005,2.05791,-0.318096,6.10247,2.05791,-0.315137,6.10009,2.0647,-0.309146,6.10058,2.0647,-0.311647,6.10009,2.0647,-0.314147,6.09867,2.0647,-0.316267,6.09655,2.0647,-0.317683,6.09405,2.0647,-0.318181,6.09155,2.0647,-0.317683,6.08943,2.0647,-0.316267,6.08801,2.0647,-0.314147,6.08752,2.0647,-0.311647,6.08801,2.0647,-0.309146,6.08943,2.0647,-0.307027,6.09155,2.0647,-0.30561,6.09405,2.0647,-0.305113,6.09655,2.0647,-0.30561,6.09867,2.0647,-0.307027,6.10009,2.25478,-0.309146,6.10058,2.25478,-0.311647,6.10009,2.25478,-0.314147,6.09867,2.25478,-0.316267,6.09655,2.25478,-0.317683,6.09405,2.25478,-0.318181,6.09155,2.25478,-0.317683,6.08943,2.25478,-0.316267,6.08801,2.25478,-0.314147,6.08752,2.25478,-0.311647,6.08801,2.25478,-0.309146,6.08943,2.25478,-0.307027,6.09155,2.25478,-0.30561,6.09405,2.25478,-0.305113,6.09655,2.25478,-0.30561,6.09867,2.25478,-0.307027,6.09645,2.2651,-0.310651,6.09665,2.2651,-0.311647,6.09645,2.2651,-0.312643,6.09589,2.2651,-0.313487,6.09504,2.2651,-0.314051,6.09405,2.2651,-0.314249,6.09305,2.2651,-0.314051,6.09221,2.2651,-0.313487,6.09164,2.2651,-0.312643,6.09145,2.2651,-0.311647,6.09164,2.2651,-0.310651,6.09221,2.2651,-0.309807,6.09305,2.2651,-0.309243,6.09405,2.2651,-0.309045,6.09504,2.2651,-0.309243,6.09589,2.2651,-0.309807,6.10317,1.98964,-0.385093,6.10247,1.98964,-0.381603,6.1005,1.98964,-0.378644,6.09754,1.98964,-0.376667,6.09405,1.98964,-0.375973,6.09056,1.98964,-0.376667,6.0876,1.98964,-0.378644,6.08562,1.98964,-0.381603,6.08493,1.98964,-0.385093};
			return value;
		}
		private double[] getCoordinate_6_1014_point_20()
		{
			double[] value = {6.08562,1.98964,-0.388583,6.0876,1.98964,-0.391542,6.09056,1.98964,-0.393519,6.09405,1.98964,-0.394213,6.09754,1.98964,-0.393519,6.1005,1.98964,-0.391542,6.10247,1.98964,-0.388583,6.10317,2.05791,-0.385093,6.10247,2.05791,-0.381603,6.1005,2.05791,-0.378644,6.09754,2.05791,-0.376667,6.09405,2.05791,-0.375973,6.09056,2.05791,-0.376667,6.0876,2.05791,-0.378644,6.08562,2.05791,-0.381603,6.08493,2.05791,-0.385093,6.08562,2.05791,-0.388583,6.0876,2.05791,-0.391542,6.09056,2.05791,-0.393519,6.09405,2.05791,-0.394213,6.09754,2.05791,-0.393519,6.1005,2.05791,-0.391542,6.10247,2.05791,-0.388583,6.10009,2.0647,-0.382592,6.10058,2.0647,-0.385093,6.10009,2.0647,-0.387593,6.09867,2.0647,-0.389713,6.09655,2.0647,-0.391129,6.09405,2.0647,-0.391627,6.09155,2.0647,-0.391129,6.08943,2.0647,-0.389713,6.08801,2.0647,-0.387593,6.08752,2.0647,-0.385093,6.08801,2.0647,-0.382592,6.08943,2.0647,-0.380473,6.09155,2.0647,-0.379056,6.09405,2.0647,-0.378559,6.09655,2.0647,-0.379056,6.09867,2.0647,-0.380473,6.10009,2.25478,-0.382592,6.10058,2.25478,-0.385093,6.10009,2.25478,-0.387593,6.09867,2.25478,-0.389713,6.09655,2.25478,-0.391129,6.09405,2.25478,-0.391627,6.09155,2.25478,-0.391129,6.08943,2.25478,-0.389713,6.08801,2.25478,-0.387593,6.08752,2.25478,-0.385093,6.08801,2.25478,-0.382592,6.08943,2.25478,-0.380473,6.09155,2.25478,-0.379056,6.09405,2.25478,-0.378559,6.09655,2.25478,-0.379056,6.09867,2.25478,-0.380473,6.09645,2.2651,-0.384097,6.09665,2.2651,-0.385093,6.09645,2.2651,-0.386089,6.09589,2.2651,-0.386933,6.09504,2.2651,-0.387497,6.09405,2.2651,-0.387695,6.09305,2.2651,-0.387497,6.09221,2.2651,-0.386933,6.09164,2.2651,-0.386089,6.09145,2.2651,-0.385093,6.09164,2.2651,-0.384097,6.09221,2.2651,-0.383253,6.09305,2.2651,-0.382689,6.09405,2.2651,-0.382491,6.09504,2.2651,-0.382689,6.09589,2.2651,-0.383253,6.10317,2.00056,-0.834361,6.10247,2.00056,-0.830871,6.1005,2.00056,-0.827912,6.09754,2.00056,-0.825935,6.09405,2.00056,-0.825241,6.09056,2.00056,-0.825935,6.0876,2.00056,-0.827912,6.08562,2.00056,-0.830871,6.08493,2.00056,-0.834361,6.08562,2.00056,-0.837851,6.0876,2.00056,-0.840809,6.09056,2.00056,-0.842786,6.09405,2.00056,-0.843481,6.09754,2.00056,-0.842786,6.1005,2.00056,-0.840809,6.10247,2.00056,-0.837851,6.10317,2.10201,-0.834361,6.10247,2.10201,-0.830871,6.1005,2.10201,-0.827912,6.09754,2.10201,-0.825935,6.09405,2.10201,-0.825241,6.09056,2.10201,-0.825935,6.0876,2.10201,-0.827912,6.08562,2.10201,-0.830871,6.08493,2.10201,-0.834361,6.08562,2.10201,-0.837851,6.0876,2.10201,-0.840809,6.09056,2.10201,-0.842786,6.09405,2.10201,-0.843481};
			return value;
		}
		private double[] getCoordinate_6_1014_point_21()
		{
			double[] value = {6.09754,2.10201,-0.842786,6.1005,2.10201,-0.840809,6.10247,2.10201,-0.837851,6.10009,2.1121,-0.83186,6.10058,2.1121,-0.834361,6.10009,2.1121,-0.836861,6.09867,2.1121,-0.838981,6.09655,2.1121,-0.840397,6.09405,2.1121,-0.840894,6.09155,2.1121,-0.840397,6.08943,2.1121,-0.838981,6.08801,2.1121,-0.836861,6.08752,2.1121,-0.834361,6.08801,2.1121,-0.83186,6.08943,2.1121,-0.829741,6.09155,2.1121,-0.828324,6.09405,2.1121,-0.827827,6.09655,2.1121,-0.828324,6.09867,2.1121,-0.829741,6.10009,2.39455,-0.83186,6.10058,2.39455,-0.834361,6.10009,2.39455,-0.836861,6.09867,2.39455,-0.838981,6.09655,2.39455,-0.840397,6.09405,2.39455,-0.840894,6.09155,2.39455,-0.840397,6.08943,2.39455,-0.838981,6.08801,2.39455,-0.836861,6.08752,2.39455,-0.834361,6.08801,2.39455,-0.83186,6.08943,2.39455,-0.829741,6.09155,2.39455,-0.828324,6.09405,2.39455,-0.827827,6.09655,2.39455,-0.828324,6.09867,2.39455,-0.829741,6.09645,2.40988,-0.833365,6.09665,2.40988,-0.834361,6.09645,2.40988,-0.835356,6.09589,2.40988,-0.836201,6.09504,2.40988,-0.836765,6.09405,2.40988,-0.836963,6.09305,2.40988,-0.836765,6.09221,2.40988,-0.836201,6.09164,2.40988,-0.835356,6.09145,2.40988,-0.834361,6.09164,2.40988,-0.833365,6.09221,2.40988,-0.832521,6.09305,2.40988,-0.831957,6.09405,2.40988,-0.831759,6.09504,2.40988,-0.831957,6.09589,2.40988,-0.832521,6.10317,1.98964,-0.801287,6.10247,1.98964,-0.797797,6.1005,1.98964,-0.794838,6.09754,1.98964,-0.792861,6.09405,1.98964,-0.792167,6.09056,1.98964,-0.792861,6.0876,1.98964,-0.794838,6.08562,1.98964,-0.797797,6.08493,1.98964,-0.801287,6.08562,1.98964,-0.804777,6.0876,1.98964,-0.807736,6.09056,1.98964,-0.809713,6.09405,1.98964,-0.810407,6.09754,1.98964,-0.809713,6.1005,1.98964,-0.807736,6.10247,1.98964,-0.804777,6.10317,2.05791,-0.801287,6.10247,2.05791,-0.797797,6.1005,2.05791,-0.794838,6.09754,2.05791,-0.792861,6.09405,2.05791,-0.792167,6.09056,2.05791,-0.792861,6.0876,2.05791,-0.794838,6.08562,2.05791,-0.797797,6.08493,2.05791,-0.801287,6.08562,2.05791,-0.804777,6.0876,2.05791,-0.807736,6.09056,2.05791,-0.809713,6.09405,2.05791,-0.810407,6.09754,2.05791,-0.809713,6.1005,2.05791,-0.807736,6.10247,2.05791,-0.804777,6.10009,2.0647,-0.798787,6.10058,2.0647,-0.801287,6.10009,2.0647,-0.803787,6.09867,2.0647,-0.805907,6.09655,2.0647,-0.807323,6.09405,2.0647,-0.807821,6.09155,2.0647,-0.807323,6.08943,2.0647,-0.805907,6.08801,2.0647,-0.803787,6.08752,2.0647,-0.801287,6.08801,2.0647,-0.798787,6.08943,2.0647,-0.796667,6.09155,2.0647,-0.795251,6.09405,2.0647,-0.794753,6.09655,2.0647,-0.795251,6.09867,2.0647,-0.796667,6.10009,2.25478,-0.798787};
			return value;
		}
		private double[] getCoordinate_6_1014_point_22()
		{
			double[] value = {6.10058,2.25478,-0.801287,6.10009,2.25478,-0.803787,6.09867,2.25478,-0.805907,6.09655,2.25478,-0.807323,6.09405,2.25478,-0.807821,6.09155,2.25478,-0.807323,6.08943,2.25478,-0.805907,6.08801,2.25478,-0.803787,6.08752,2.25478,-0.801287,6.08801,2.25478,-0.798787,6.08943,2.25478,-0.796667,6.09155,2.25478,-0.795251,6.09405,2.25478,-0.794753,6.09655,2.25478,-0.795251,6.09867,2.25478,-0.796667,6.09645,2.2651,-0.800291,6.09665,2.2651,-0.801287,6.09645,2.2651,-0.802283,6.09589,2.2651,-0.803127,6.09504,2.2651,-0.803691,6.09405,2.2651,-0.803889,6.09305,2.2651,-0.803691,6.09221,2.2651,-0.803127,6.09164,2.2651,-0.802283,6.09145,2.2651,-0.801287,6.09164,2.2651,-0.800291,6.09221,2.2651,-0.799447,6.09305,2.2651,-0.798883,6.09405,2.2651,-0.798685,6.09504,2.2651,-0.798883,6.09589,2.2651,-0.799447,6.10317,1.98964,-0.874733,6.10247,1.98964,-0.871243,6.1005,1.98964,-0.868284,6.09754,1.98964,-0.866307,6.09405,1.98964,-0.865613,6.09056,1.98964,-0.866307,6.0876,1.98964,-0.868284,6.08562,1.98964,-0.871243,6.08493,1.98964,-0.874733,6.08562,1.98964,-0.878223,6.0876,1.98964,-0.881182,6.09056,1.98964,-0.883159,6.09405,1.98964,-0.883853,6.09754,1.98964,-0.883159,6.1005,1.98964,-0.881182,6.10247,1.98964,-0.878223,6.10317,2.05791,-0.874733,6.10247,2.05791,-0.871243,6.1005,2.05791,-0.868284,6.09754,2.05791,-0.866307,6.09405,2.05791,-0.865613,6.09056,2.05791,-0.866307,6.0876,2.05791,-0.868284,6.08562,2.05791,-0.871243,6.08493,2.05791,-0.874733,6.08562,2.05791,-0.878223,6.0876,2.05791,-0.881182,6.09056,2.05791,-0.883159,6.09405,2.05791,-0.883853,6.09754,2.05791,-0.883159,6.1005,2.05791,-0.881182,6.10247,2.05791,-0.878223,6.10009,2.0647,-0.872233,6.10058,2.0647,-0.874733,6.10009,2.0647,-0.877233,6.09867,2.0647,-0.879353,6.09655,2.0647,-0.880769,6.09405,2.0647,-0.881267,6.09155,2.0647,-0.880769,6.08943,2.0647,-0.879353,6.08801,2.0647,-0.877233,6.08752,2.0647,-0.874733,6.08801,2.0647,-0.872233,6.08943,2.0647,-0.870113,6.09155,2.0647,-0.868697,6.09405,2.0647,-0.868199,6.09655,2.0647,-0.868697,6.09867,2.0647,-0.870113,6.10009,2.25478,-0.872233,6.10058,2.25478,-0.874733,6.10009,2.25478,-0.877233,6.09867,2.25478,-0.879353,6.09655,2.25478,-0.880769,6.09405,2.25478,-0.881267,6.09155,2.25478,-0.880769,6.08943,2.25478,-0.879353,6.08801,2.25478,-0.877233,6.08752,2.25478,-0.874733,6.08801,2.25478,-0.872233,6.08943,2.25478,-0.870113,6.09155,2.25478,-0.868697,6.09405,2.25478,-0.868199,6.09655,2.25478,-0.868697,6.09867,2.25478,-0.870113,6.09645,2.2651,-0.873737,6.09665,2.2651,-0.874733,6.09645,2.2651,-0.875729,6.09589,2.2651,-0.876573,6.09504,2.2651,-0.877137};
			return value;
		}
		private double[] getCoordinate_6_1014_point_23()
		{
			double[] value = {6.09405,2.2651,-0.877335,6.09305,2.2651,-0.877137,6.09221,2.2651,-0.876573,6.09164,2.2651,-0.875729,6.09145,2.2651,-0.874733,6.09164,2.2651,-0.873737,6.09221,2.2651,-0.872893,6.09305,2.2651,-0.872329,6.09405,2.2651,-0.872131,6.09504,2.2651,-0.872329,6.09589,2.2651,-0.872893,9.816,-0.577204,1.10361,9.83463,-0.577776,1.13804,9.85326,-0.578348,1.17247,9.87189,-0.57892,1.20689,9.89052,-0.579491,1.24132,9.90915,-0.580063,1.27575,9.92778,-0.580635,1.31017,9.9464,-0.581207,1.3446,9.96503,-0.581779,1.37903,9.816,-0.577204,-1.10864,9.83463,-0.577776,-1.14306,9.85326,-0.578348,-1.17749,9.87189,-0.57892,-1.21192,9.89052,-0.579491,-1.24634,9.90915,-0.580063,-1.28077,9.92778,-0.580635,-1.3152,9.9464,-0.581207,-1.34962,9.96503,-0.581779,-1.38405,9.79737,-0.576632,-0.431191,9.79737,-0.576632,-0.216851,9.79737,-0.576632,-0.00251144,9.79737,-0.576632,0.211828,9.79737,-0.576632,0.426168,9.98366,-0.582351,1.13026,9.98366,-0.582351,0.280681,9.98366,-0.582351,-0.00251144,9.98366,-0.582351,-0.285704,9.98366,-0.582351,-1.13528,9.79737,-0.576632,-0.821782,9.81165,-0.5781,-0.857873,9.81129,-0.578094,-0.583104,9.79737,-0.576632,-0.622603,9.79737,-0.576632,0.614276,9.81154,-0.578098,0.573031,9.81165,-0.5781,0.85285,9.79737,-0.576632,0.820225,9.96939,-0.580883,0.849064,9.98366,-0.582351,0.812446,9.9695,-0.580885,0.567031,9.98366,-0.582351,0.601962,9.98366,-0.582351,-0.603519,9.96975,-0.580889,-0.573775,9.96939,-0.580883,-0.854087,9.98366,-0.582351,-0.814002,9.81779,-0.425108,0.57201,9.81815,-0.425113,0.852201,9.96289,-0.426942,0.849713,9.96324,-0.426946,0.568052,9.81698,-0.425098,-0.58154,9.96406,-0.426956,-0.575338,9.96289,-0.426942,-0.854736,9.81815,-0.425113,-0.857224,9.93114,-0.534995,-0.616778,9.93114,-0.534995,-0.804209,9.927,-0.476242,-0.804209,9.927,-0.476242,-0.616778,9.84989,-0.529276,-0.811989,9.84989,-0.529276,-0.635862,9.85403,-0.470524,-0.635862,9.85403,-0.470524,-0.811989,9.93114,-0.534995,0.799187,9.93114,-0.534995,0.611755,9.927,-0.476242,0.611755,9.927,-0.476242,0.799187,9.84989,-0.529276,0.624069,9.84989,-0.529276,0.806966,9.85403,-0.470524,0.806966,9.85403,-0.470524,0.624069,4.02588,0.84522,-1.59136,4.65251,0.84522,-1.59136,0.128525,0.84522,1.57589,0.80867,0.84522,1.57589,1.48882,0.84522,1.57589,2.16896,0.84522,1.57589,2.84911,0.84522,1.57589,3.52925,0.84522,1.57589,4.2094,0.84522,1.57589,4.88954,0.84522,1.57589,5.56969,0.84522,1.57589,6.24983,0.84522,1.57589,6.92998,0.84522,1.57589,9.46965,-0.494774,0.85845,9.46965,-0.494774,0.427969,9.46965,-0.494774,-0.00251144,9.46965,-0.494774,-0.432992,9.46965,-0.494774,-0.863473,9.10859,-0.290307,1.2681,9.10859,-0.290307,0.950444,9.10859,-0.290307,0.632792};
			return value;
		}
		private double[] getCoordinate_6_1014_point_24()
		{
			double[] value = {9.10859,-0.290307,0.315141,9.10859,-0.290307,-0.00251144,9.10859,-0.290307,-0.320163,9.10859,-0.290307,-0.637815,9.10859,-0.290307,-0.955467,9.10859,-0.290307,-1.27312,8.74752,-0.0858398,1.36305,8.74752,-0.0858398,1.02166,8.74752,-0.0858398,0.680267,8.74752,-0.0858398,0.338878,8.74752,-0.0858398,-0.00251144,8.74752,-0.0858398,-0.343901,8.74752,-0.0858398,-0.68529,8.74752,-0.0858398,-1.02668,8.74752,-0.0858398,-1.36807,8.38646,0.118627,1.3583,8.38646,0.118627,1.0181,8.38646,0.118627,0.677896,8.38646,0.118627,0.337692,8.38646,0.118627,-0.00251144,8.38646,0.118627,-0.342715,8.38646,0.118627,-0.682919,8.38646,0.118627,-1.02312,8.38646,0.118627,-1.36333,7.62568,0.835715,-1.59361,7.58862,0.850335,-1.59136,7.61012,0.84522,0.0137687,7.58862,0.84522,-0.00807611,7.34161,1.31994,-0.276773,7.34161,1.33347,-1.27758,7.34161,1.32671,-0.898338,7.62581,0.834384,-1.1955,7.62581,0.833094,-0.799593,7.62581,0.831803,-0.403688,7.34161,1.32162,-0.432164,7.34161,1.32332,-0.587555,7.34161,1.32502,-0.742946,7.34161,1.32839,-0.993147,7.34161,1.33009,-1.08796,7.34161,1.33179,-1.18277,7.60022,0.868093,-1.16927,7.37303,1.31068,-1.07036,7.37296,1.30927,-0.993489,7.37296,1.30757,-0.898613,7.37294,1.30612,-0.766809,7.60032,0.867002,-0.818896,7.60019,0.866794,-0.775666,7.37305,1.3057,-0.72361,7.37302,1.3042,-0.587764,7.37298,1.30271,-0.452562,7.60025,0.865689,-0.426322,7.60017,0.865504,-0.383249,7.3731,1.3023,-0.409474,7.37302,1.30095,-0.290094,7.60022,0.864419,-0.0426636,7.37279,1.31134,-1.11407,7.60038,0.868317,-1.21309,7.60027,0.869375,-1.55414,7.37295,1.31412,-1.26529,7.3729,1.31263,-1.18311,6.4867,1.48743,-0.335526,6.47381,1.49515,-0.338254,6.38688,1.6687,-0.399735,6.39206,1.67638,-0.402463,6.48681,1.49225,-0.858433,6.47381,1.50014,-0.856522,6.38688,1.67275,-0.814707,6.39194,1.68063,-0.812796,6.4869,1.48956,-0.597466,6.39186,1.67878,-0.607142,6.39997,1.66272,-0.615812,6.47878,1.5058,-0.606897,6.47878,1.5081,-0.845344,6.39997,1.6646,-0.807432,6.47878,1.50562,-0.588797,6.39997,1.66254,-0.597712,6.39997,1.66067,-0.406368,6.47878,1.50333,-0.350627};
			return value;
		}


		/** Define subarrays using type double[] */
		private double[] getNormal_6_1015_vector_1()
		{
			double[] value = {-0.562513,-0.607611,0.560703,-0.522364,0.690366,0.500531,0.293884,0.866361,0.403794,0.260588,-0.661969,0.702774,-0.562513,-0.607611,-0.560703,-0.523615,0.687309,-0.503421,0.260588,-0.661969,-0.702774,0.193647,-0.826705,0.528262,-7.38556E-4,-1.0,0.0,0.193647,-0.826705,-0.528262,0.0033597,0.923872,-0.382687,0.00325288,0.924831,0.380364,-0.397757,-0.827403,0.396477,-0.397757,-0.827403,-0.396477,0.0,-0.734905,0.67817,0.0,-0.734905,0.67817,0.0,-0.734905,0.67817,-0.57735,-0.57735,-0.57735,0.707107,-0.707107,0.0,-0.57735,-0.57735,0.57735,0.532799,-0.846237,0.00274409,0.198134,-0.477378,-0.856068,-0.00110783,-0.999999,0.0,0.0,-0.734905,-0.67817,0.0,-0.734905,-0.67817,0.0,-0.734905,-0.67817,-0.00110783,-0.999999,0.0,0.198134,-0.477378,0.856068,0.532799,-0.846237,-0.00274409,0.707107,-0.707107,0.0,0.707107,-0.707107,0.0,0.251696,-0.642369,-0.723886,-0.999918,-0.0127902,-9.808E-16,0.251696,-0.642369,0.723886,-1.54962E-16,-0.999766,0.0216265,0.447548,-0.89426,-3.10549E-18,-1.54962E-16,-0.999766,-0.0216265,0.408248,-0.816497,-0.408248,0.408248,-0.816497,0.408248,-7.83356E-4,-0.707106,-0.707107,-7.83356E-4,-0.707106,0.707107,-0.0194518,-0.700731,-0.71316,-0.0277487,-0.999615,0.0,-0.0194518,-0.700731,0.71316,1.0,-1.54198E-13,0.0,1.0,-1.85037E-13,0.0,1.0,-1.54198E-13,0.0,0.485414,0.782685,0.389586,0.402383,0.830639,0.384873,0.402383,0.830639,0.384873,0.301331,0.872191,0.385334,0.486786,0.780941,-0.391369,0.403531,0.829053,-0.387083,0.403531,0.829053,-0.387083,0.302266,0.870857,-0.387613,0.0827071,0.955652,0.282646,0.0833146,0.955105,-0.284311,0.00518759,0.806733,-0.590893,0.0033597,0.923872,-0.382687,-8.74441E-18,-0.901811,-0.432132,-0.373194,0.862295,-0.342306,-0.523615,0.687309,-0.503421,-0.371637,0.862346,0.343869,-0.522364,0.690366,0.500531,0.380114,-0.92494,2.14164E-4,0.380114,-0.92494,-2.14164E-4,-2.21047E-18,-0.901811,0.432132,7.19116E-18,-0.901811,-0.432132,2.8677E-18,-0.901811,-0.432132,8.21847E-18,-0.901811,0.432132,-0.00143872,-0.902508,-0.430671,0.0,-0.901811,0.432132,-0.00143872,-0.902508,0.430671,0.394596,-0.836565,0.38007,0.401853,-0.828433,-0.390145,-0.384518,-0.834505,0.394648,-0.393888,-0.825204,-0.404835,0.451274,0.781723,0.430419,0.440439,0.791856,-0.423057,-0.407947,0.820333,-0.40079,-0.415609,0.81065,0.412451,0.432647,-0.90156,-0.00245508,0.433211,-0.901292,-0.00100261,0.431907,-0.901918,-2.62653E-17,0.433211,-0.901292,0.00100261,0.432647,-0.90156,0.00245508,0.0134443,-0.903926,0.427478,0.0134443,-0.903926,0.427478,0.0134443,-0.903926,0.427478,0.012028,-0.904629,0.42603,-0.447297,-0.894176,-0.0193424,-0.447548,-0.89426,-3.10549E-18,-0.447297,-0.894176,0.0193424,0.0109184,-0.898449,-0.438942,0.0123713,-0.897713,-0.440407,0.0123713,-0.897713,-0.440407,0.0123713,-0.897713,-0.440407,0.0,1.0,-1.15557E-17,0.0,1.0,-8.66678E-18,-0.235673,0.791286,-0.564203};
			return value;
		}
		private double[] getNormal_6_1015_vector_2()
		{
			double[] value = {-0.177346,0.961899,0.208083,-0.305581,0.892861,-0.330785,-0.552869,0.581795,0.596532,-0.574185,0.753666,-0.319844,0.29204,0.740454,0.605343,0.300368,0.900042,-0.315757,0.67114,0.270328,0.690286,0.673785,0.238021,-0.699543,-0.299299,-0.146111,-0.942906,-0.30379,-0.118136,0.945386,0.00637841,0.803734,0.594955,0.00637841,0.803734,0.594955,0.00637841,0.803734,0.594955,0.00637841,0.803734,0.594955,0.00637841,0.803734,0.594955,0.00637841,0.803734,0.594955,0.00637841,0.803734,0.594955,0.00637841,0.803734,0.594955,0.00637841,0.803734,0.594955,0.00637841,0.803734,0.594955,0.00637841,0.803734,0.594955,0.00637841,0.803734,0.594955,0.00637841,0.803734,0.594955,0.00637841,0.803734,0.594955,0.00725644,0.800667,-0.599065,0.00725644,0.800667,-0.599065,0.00725644,0.800667,-0.599065,0.00725644,0.800667,-0.599065,0.00725644,0.800667,-0.599065,0.00725644,0.800667,-0.599065,0.00725644,0.800667,-0.599065,0.00725644,0.800667,-0.599065,0.00725644,0.800667,-0.599065,0.00725644,0.800667,-0.599065,0.00725644,0.800667,-0.599065,0.00725644,0.800667,-0.599065,0.00725644,0.800667,-0.599065,0.00725644,0.800667,-0.599065,0.0247636,0.662517,0.748637,0.0247636,0.662517,0.748637,0.0247636,0.662517,0.748637,0.0247636,0.662517,0.748637,0.0247636,0.662517,0.748637,0.0247636,0.662517,0.748637,0.0247636,0.662517,0.748637,0.0247636,0.662517,0.748637,0.0247636,0.662517,0.748637,0.0247636,0.662517,0.748637,0.0247636,0.662517,0.748637,0.0247636,0.662517,0.748637,0.0247636,0.662517,0.748637,0.0247636,0.662517,0.748637,0.0224419,0.686785,-0.726514,0.0224419,0.686785,-0.726514,0.0224419,0.686785,-0.726514,0.0224419,0.686785,-0.726514,0.0224419,0.686785,-0.726514,0.0224419,0.686785,-0.726514,0.0224419,0.686785,-0.726514,0.0224419,0.686785,-0.726514,0.0224419,0.686785,-0.726514,0.0224419,0.686785,-0.726514,0.0224419,0.686785,-0.726514,0.0224419,0.686785,-0.726514,0.0224419,0.686785,-0.726514,0.0224419,0.686785,-0.726514,0.0188618,-0.743846,0.668084,0.0188618,-0.743846,0.668084,0.0188618,-0.743846,0.668084,0.017224,-0.721267,-0.692443,0.017224,-0.721267,-0.692443,0.017224,-0.721267,-0.692443,0.0224419,0.686785,-0.726514,0.0224419,0.686785,-0.726514,0.00725644,0.800667,-0.599065,0.00725644,0.800667,-0.599065,0.0247636,0.662517,0.748637,0.0247636,0.662517,0.748637,0.00637841,0.803734,0.594955,0.00637841,0.803734,0.594955,0.00637841,0.803734,0.594955,0.00637841,0.803734,0.594955,0.00725644,0.800667,-0.599065,0.00725644,0.800667,-0.599065,-0.707107,0.707107,0.0,-0.707107,0.707107,0.0,-0.706795,-0.0551476,-0.705266,-0.706792,-0.0557349,0.705223,-0.314751,0.894712,-0.316895,-0.314154,0.891412,0.326639,-0.00297356,0.94149,0.337028,-0.00297356,0.94149,0.337028,0.0,1.0,0.0,0.0,1.0,0.0,-0.413492,0.910494,0.0049673,-0.413492,0.910494,0.0049673,-0.467867,0.692639,0.548954,-0.467867,0.692639,0.548954,-0.523615,0.687309,-0.503421,-0.893681,0.13535,-0.427802};
			return value;
		}
		private double[] getNormal_6_1015_vector_3()
		{
			double[] value = {-0.522364,0.690366,0.500531,-0.893703,0.139483,0.426427,-0.447214,-0.894427,0.0,-0.447214,-0.894427,0.0,0.0,1.0,0.0,0.0,1.0,0.0,-0.562569,-0.60696,-0.561352,-0.562418,-0.607269,0.561169,-0.582967,-0.566198,0.582726,-0.581917,-0.56827,-0.581757,-0.600193,0.540991,0.589149,-0.602528,0.54358,-0.584363,-0.582967,-0.566198,0.582726,-0.581917,-0.56827,-0.581757,-0.449859,0.892602,0.0297971,-0.449382,0.893128,-0.0194295,-0.809138,-0.426745,-0.403961,-0.415918,0.809039,-0.415293,-0.80984,-0.424971,0.404424,-0.415158,0.809759,0.414649,-0.571893,-0.588344,-0.571656,-0.582967,0.566198,-0.582726,-0.588197,0.555956,-0.587313,-0.567082,-0.598166,-0.566229,0.0,0.0,0.0,0.0,0.0,0.0,-0.572889,-0.586325,0.572731,-0.581917,0.56827,0.581757,-0.56805,-0.596178,0.567354,-0.587122,0.55805,0.586402,0.0,0.0,0.0,0.0,0.0,0.0,0.0050198,0.809592,0.586972,0.0050198,0.809592,0.586972,0.0050198,0.809592,0.586972,0.0050198,0.809592,0.586972,0.575991,0.574834,0.581206,0.580233,0.579068,-0.572721,6.93028E-4,0.710844,-0.70335,6.85721E-4,0.703349,0.710845,-0.575402,0.575372,0.581257,-0.579319,0.579289,-0.573424,-0.575402,-0.575372,-0.581257,-0.579318,-0.579288,0.573424,0.588348,0.515369,0.62309,0.632074,0.73493,0.245684,0.602134,0.461179,-0.651728,0.642015,0.72337,-0.254071,0.754093,0.519831,0.401397,0.754101,0.519799,0.401423,0.588338,0.515323,0.623138,0.875814,0.331835,0.350478,0.76868,0.487513,-0.41408,0.768671,0.487548,-0.414054,0.602154,0.461228,-0.651674,0.884644,0.300364,-0.356631,0.902315,0.0706024,0.425255,0.900815,0.0176897,-0.433843,0.618616,0.710642,0.335115,0.639298,0.690258,-0.338884,0.879795,0.0240054,-0.474748,0.879999,0.0826117,0.467735,0.669116,0.672124,-0.31707,0.649981,0.692613,0.312748,0.670533,-0.217149,-0.709388,0.433481,0.780071,-0.451202,0.413596,0.799959,0.434746,0.690617,-0.134062,0.710686,0.716493,-0.178795,-0.674292,0.464037,0.774081,-0.43066,0.44373,0.794407,0.414753,0.734542,-0.100418,0.671092,-0.643055,0.387043,-0.660816,-0.409481,0.348826,-0.842998,-0.643054,0.387043,-0.660817,-0.409477,0.348827,-0.843,-0.643051,0.387045,-0.660819,-0.409473,0.348829,-0.843001,-0.409468,0.348828,-0.843004,-0.701537,0.665691,-0.254366,-0.64862,0.368579,-0.665914,-0.631791,0.446555,0.633584,-0.403416,0.428471,0.808497,-0.631787,0.446557,0.633586,-0.403407,0.428473,0.808501,-0.631781,0.446561,0.63359,-0.403393,0.428477,0.808506,-0.631772,0.446565,0.633596,-0.691283,0.679693,0.245247,-0.637486,0.426639,0.641554,-0.643046,0.387045,-0.660824,-0.921291,0.194941,-0.336484,-0.403379,0.428482,0.80851,-0.916291,0.226339,0.330426,-0.608306,-0.328034,0.722744,0.569357,-0.265597,0.778004,0.366453,0.798734,0.477217,-0.418122,0.76277,0.493312,0.569302,-0.263676,-0.778698,-0.608703,-0.32725,-0.722764};
			return value;
		}
		private double[] getNormal_6_1015_vector_4()
		{
			double[] value = {-0.41628,0.761999,-0.496054,0.363419,0.798001,-0.480751,0.402182,0.91556,1.06663E-17,0.372264,0.91679,0.144619,0.286218,0.919792,0.268445,0.155613,0.922836,0.352362,1.41336E-15,0.92411,0.382127,-0.155613,0.922836,0.352362,-0.286218,0.919792,0.268445,-0.372264,0.91679,0.144619,-0.402182,0.91556,1.06663E-17,-0.372264,0.91679,-0.144619,-0.286218,0.919792,-0.268445,-0.155613,0.922836,-0.352362,3.00074E-15,0.92411,-0.382127,0.155613,0.922836,-0.352362,0.286218,0.919792,-0.268445,0.372264,0.91679,-0.144619,0.727683,0.685914,2.85549E-17,0.675463,0.688979,0.262788,0.522973,0.696551,0.491239,0.286382,0.704379,0.649488,2.28926E-15,0.7077,0.706513,-0.286382,0.704379,0.649488,-0.522973,0.696551,0.491239,-0.675463,0.688979,0.262788,-0.727683,0.685914,-7.13872E-18,-0.675463,0.688979,-0.262788,-0.522973,0.696551,-0.491239,-0.286382,0.704379,-0.649488,3.91321E-15,0.7077,-0.706513,0.286382,0.704379,-0.649488,0.522973,0.696551,-0.491239,0.675463,0.688979,-0.262788,0.961364,0.275281,1.46582E-17,0.895241,0.277278,0.348799,0.698728,0.282276,0.657342,0.385887,0.287542,0.876591,4.03569E-15,0.289808,0.957085,-0.385887,0.287542,0.876591,-0.698728,0.282276,0.657342,-0.895241,0.277278,0.348799,-0.961364,0.275281,-2.19874E-17,-0.895241,0.277278,-0.348799,-0.698728,0.282276,-0.657342,-0.385887,0.287542,-0.876591,4.05787E-15,0.289808,-0.957085,0.385887,0.287542,-0.876591,0.698728,0.282276,-0.657342,0.895241,0.277278,-0.348799,9.11054E-16,1.0,6.64679E-18,0.769641,0.638477,-9.06852E-18,0.72656,0.617452,0.301436,0.60658,0.464962,0.64488,0.376361,0.00367759,0.926466,-0.00382576,-0.36177,0.932259,-0.371293,-0.388945,0.843127,-0.672856,-0.383219,0.632778,-0.862777,-0.377751,0.336036,-0.926799,-0.375557,-2.2714E-17,-0.954704,2.41758E-4,-0.297559,-0.713632,0.304229,-0.631011,-0.383252,-0.0672703,-0.921191,0.00216871,-0.339281,-0.940682,0.376494,0.0088683,-0.926377,0.60658,0.464962,-0.64488,0.72656,0.617452,-0.301436,0.577551,-0.263091,-0.772799,0.881106,-0.0530403,-0.469934,0.999663,-0.0259696,-1.12351E-16,0.881106,-0.0530403,0.469934,0.577551,-0.263091,0.772799,0.232941,-0.713811,0.660464,-0.00667003,-0.870768,0.49165,-0.188068,-0.884244,0.427485,-0.346003,-0.880231,0.324769,-0.448807,-0.876428,0.174485,-0.48679,-0.873502,0.00545668,-0.685299,-0.718902,-0.116388,-0.723818,-0.418799,-0.548356,-0.235678,-0.738418,-0.631819,0.00214915,-0.858584,-0.512668,0.235742,-0.707941,-0.665767,0.0682797,-0.993455,-0.0915709,0.0893932,-0.994758,-0.0496584,0.0968402,-0.9953,1.89973E-15,0.0893932,-0.994758,0.0496584,0.0682797,-0.993455,0.0915709,0.0365444,-0.992146,0.119632,-0.00371804,-0.9916,0.12929,-0.0519714,-0.991509,0.119198,-0.0973577,-0.991061,0.0912152,-0.127124,-0.990659,0.0493342,-0.141325,-0.989939,0.006961,-0.146134,-0.98925,-0.00536171,-0.101112,-0.99338,-0.0545202,-0.0368779,-0.992161,-0.119402,-1.39399E-16,-0.991627,-0.129131,0.0368779,-0.992161,-0.119402,0.402182,0.91556,-7.4664E-17};
			return value;
		}
		private double[] getNormal_6_1015_vector_5()
		{
			double[] value = {0.372264,0.91679,0.144619,0.286218,0.919792,0.268445,0.155613,0.922836,0.352362,3.10727E-15,0.92411,0.382127,-0.155613,0.922836,0.352362,-0.286218,0.919792,0.268445,-0.372264,0.91679,0.144619,-0.402182,0.91556,-1.06663E-17,-0.372264,0.91679,-0.144619,-0.286218,0.919792,-0.268445,-0.155613,0.922836,-0.352362,3.25997E-15,0.92411,-0.382127,0.155613,0.922836,-0.352362,0.286218,0.919792,-0.268445,0.372264,0.91679,-0.144619,0.727683,0.685914,-1.99884E-16,0.675463,0.688979,0.262788,0.522973,0.696551,0.491239,0.286382,0.704379,0.649488,6.13094E-15,0.7077,0.706513,-0.286382,0.704379,0.649488,-0.522973,0.696551,0.491239,-0.675463,0.688979,0.262788,-0.727683,0.685914,1.28497E-16,-0.675463,0.688979,-0.262788,-0.522973,0.696551,-0.491239,-0.286382,0.704379,-0.649488,6.18102E-15,0.7077,-0.706513,0.286382,0.704379,-0.649488,0.522973,0.696551,-0.491239,0.675463,0.688979,-0.262788,0.961364,0.275281,-1.31924E-16,0.895241,0.277278,0.348799,0.698728,0.282276,0.657342,0.385887,0.287542,0.876591,2.43176E-15,0.289808,0.957085,-0.385887,0.287542,0.876591,-0.698728,0.282276,0.657342,-0.895241,0.277278,0.348799,-0.961364,0.275281,1.31924E-16,-0.895241,0.277278,-0.348799,-0.698728,0.282276,-0.657342,-0.385887,0.287542,-0.876591,2.32828E-15,0.289808,-0.957085,0.385887,0.287542,-0.876591,0.698728,0.282276,-0.657342,0.895241,0.277278,-0.348799,3.81083E-16,1.0,8.41927E-18,0.774321,0.632793,-7.43814E-17,0.732208,0.608842,0.305257,0.616394,0.429734,0.659839,0.380293,-0.0264303,0.924488,-3.11907E-15,-0.339927,0.940452,-0.380293,-0.0264303,0.924488,-0.616394,0.429734,0.659839,-0.732208,0.608842,0.305257,-0.774321,0.632793,0.0,-0.732208,0.608842,-0.305257,-0.616394,0.429734,-0.659839,-0.380293,-0.0264303,-0.924488,-5.07129E-15,-0.339927,-0.940452,0.380293,-0.0264303,-0.924488,0.616394,0.429734,-0.659839,0.732208,0.608842,-0.305257,0.569335,-0.308974,-0.761835,0.880276,-0.0647587,-0.470021,0.999437,-0.0335494,-3.23566E-16,0.880276,-0.0647587,0.470021,0.569335,-0.308974,0.761835,0.23664,-0.721882,0.650298,-2.41362E-15,-0.858804,0.512304,-0.23664,-0.721882,0.650298,-0.569335,-0.308974,0.761835,-0.880276,-0.0647587,0.470021,-0.999437,-0.0335494,0.0,-0.880276,-0.0647587,-0.470021,-0.569335,-0.308974,-0.761835,-0.23664,-0.721882,-0.650298,-4.36045E-15,-0.858804,-0.512304,0.23664,-0.721882,-0.650298,0.0682797,-0.993455,-0.0915709,0.0893932,-0.994758,-0.0496584,0.0968402,-0.9953,3.41209E-15,0.0893932,-0.994758,0.0496584,0.0682797,-0.993455,0.0915709,0.0368779,-0.992161,0.119402,-3.87994E-16,-0.991627,0.129131,-0.0368779,-0.992161,0.119402,-0.0682797,-0.993455,0.0915709,-0.0893932,-0.994758,0.0496584,-0.0968402,-0.9953,3.41209E-15,-0.0893932,-0.994758,-0.0496584,-0.0682797,-0.993455,-0.0915709,-0.0368779,-0.992161,-0.119402,-4.04257E-16,-0.991627,-0.129131,0.0368779,-0.992161,-0.119402,0.402182,0.91556,0.0,0.372264,0.91679,0.144619,0.286218,0.919792,0.268445,0.155613,0.922836,0.352362};
			return value;
		}
		private double[] getNormal_6_1015_vector_6()
		{
			double[] value = {3.17119E-15,0.92411,0.382127,-0.155613,0.922836,0.352362,-0.286218,0.919792,0.268445,-0.372264,0.91679,0.144619,-0.402182,0.91556,0.0,-0.372264,0.91679,-0.144619,-0.286218,0.919792,-0.268445,-0.155613,0.922836,-0.352362,3.1854E-15,0.92411,-0.382127,0.155613,0.922836,-0.352362,0.286218,0.919792,-0.268445,0.372264,0.91679,-0.144619,0.727683,0.685914,-1.35636E-16,0.675463,0.688979,0.262788,0.522973,0.696551,0.491239,0.286382,0.704379,0.649488,6.15955E-15,0.7077,0.706513,-0.286382,0.704379,0.649488,-0.522973,0.696551,0.491239,-0.675463,0.688979,0.262788,-0.727683,0.685914,1.21358E-16,-0.675463,0.688979,-0.262788,-0.522973,0.696551,-0.491239,-0.286382,0.704379,-0.649488,6.18102E-15,0.7077,-0.706513,0.286382,0.704379,-0.649488,0.522973,0.696551,-0.491239,0.675463,0.688979,-0.262788,0.961364,0.275281,-1.39253E-16,0.895241,0.277278,0.348799,0.698728,0.282276,0.657342,0.385887,0.287542,0.876591,2.4022E-15,0.289808,0.957085,-0.385887,0.287542,0.876591,-0.698728,0.282276,0.657342,-0.895241,0.277278,0.348799,-0.961364,0.275281,1.24595E-16,-0.895241,0.277278,-0.348799,-0.698728,0.282276,-0.657342,-0.385887,0.287542,-0.876591,2.40959E-15,0.289808,-0.957085,0.385887,0.287542,-0.876591,0.698728,0.282276,-0.657342,0.895241,0.277278,-0.348799,3.77538E-16,1.0,4.43119E-19,0.774321,0.632793,-9.01593E-18,0.732208,0.608842,0.305257,0.616394,0.429734,0.659839,0.380293,-0.0264303,0.924488,-2.96199E-15,-0.339927,0.940452,-0.380293,-0.0264303,0.924488,-0.616394,0.429734,0.659839,-0.732208,0.608842,0.305257,-0.774321,0.632793,6.76195E-18,-0.732208,0.608842,-0.305257,-0.616394,0.429734,-0.659839,-0.380293,-0.0264303,-0.924488,-4.49535E-15,-0.339927,-0.940452,0.380293,-0.0264303,-0.924488,0.616394,0.429734,-0.659839,0.732208,0.608842,-0.305257,0.569335,-0.308974,-0.761835,0.880276,-0.0647587,-0.470021,0.999437,-0.0335494,2.94151E-17,0.880276,-0.0647587,0.470021,0.569335,-0.308974,0.761835,0.23664,-0.721882,0.650298,-2.28396E-15,-0.858804,0.512304,-0.23664,-0.721882,0.650298,-0.569335,-0.308974,0.761835,-0.880276,-0.0647587,0.470021,-0.999437,-0.0335494,9.80502E-17,-0.880276,-0.0647587,-0.470021,-0.569335,-0.308974,-0.761835,-0.23664,-0.721882,-0.650298,-3.80382E-15,-0.858804,-0.512304,0.23664,-0.721882,-0.650298,0.0682797,-0.993455,-0.0915709,0.0893932,-0.994758,-0.0496584,0.0968402,-0.9953,3.42832E-15,0.0893932,-0.994758,0.0496584,0.0682797,-0.993455,0.0915709,0.0368779,-0.992161,0.119402,-4.2052E-16,-0.991627,0.129131,-0.0368779,-0.992161,0.119402,-0.0682797,-0.993455,0.0915709,-0.0893932,-0.994758,0.0496584,-0.0968402,-0.9953,3.42832E-15,-0.0893932,-0.994758,-0.0496584,-0.0682797,-0.993455,-0.0915709,-0.0368779,-0.992161,-0.119402,-4.21682E-16,-0.991627,-0.129131,0.0368779,-0.992161,-0.119402,0.550704,0.756081,-0.353648,0.166831,0.926653,-0.336871,0.305372,0.917344,-0.255398,0.395301,0.908287,-0.136937,0.426246,0.904607,-4.17724E-17,0.395301,0.908287,0.136937,0.305372,0.917344,0.255398};
			return value;
		}
		private double[] getNormal_6_1015_vector_7()
		{
			double[] value = {0.166831,0.926653,0.336871,0.550704,0.756081,0.353648,0.499896,0.717744,-0.484713,0.218355,0.870038,-0.44199,0.39623,0.855973,-0.332133,0.508711,0.842633,-0.176589,0.546736,0.837305,-6.37364E-17,0.508711,0.842633,0.176589,0.39623,0.855973,0.332133,0.218355,0.870038,0.44199,0.499896,0.717744,0.484713,0.511076,0.549137,-0.661248,0.358604,0.581513,-0.730237,0.634198,0.558798,-0.534357,0.795594,0.538578,-0.277424,0.847479,0.530829,-1.26646E-15,0.795594,0.538578,0.277424,0.634198,0.558798,0.534357,0.358604,0.581513,0.730237,0.511076,0.549137,0.661248,0.496672,0.131537,-0.857913,0.437659,0.091099,-0.894514,0.760927,0.0858347,-0.643134,0.940839,0.081341,-0.328945,0.996822,0.0796646,-2.55251E-15,0.940839,0.081341,0.328945,0.760927,0.0858347,0.643134,0.437659,0.091099,0.894514,0.496672,0.131537,0.857913,0.333268,-0.40499,-0.85142,0.399845,-0.418042,-0.815699,0.701189,-0.397751,-0.591717,0.873259,-0.380061,-0.304913,0.927682,-0.373372,-1.3137E-15,0.873259,-0.380061,0.304913,0.701189,-0.397751,0.591717,0.399845,-0.418042,0.815699,0.333268,-0.40499,0.85142,0.161256,-0.766326,-0.621886,0.280087,-0.773682,-0.568303,0.50325,-0.753679,-0.422738,0.640238,-0.735197,-0.222669,0.685637,-0.727943,-6.76418E-17,0.640238,-0.735197,0.222669,0.50325,-0.753679,0.422738,0.280087,-0.773682,0.568303,0.161256,-0.766326,0.621886,0.0451031,-0.946725,-0.31887,0.142319,-0.947144,-0.287514,0.260438,-0.940577,-0.217914,0.337062,-0.934208,-0.116809,0.36342,-0.931626,-6.7244E-17,0.337062,-0.934208,0.116809,0.260438,-0.940577,0.217914,0.142319,-0.947144,0.287514,0.0451031,-0.946725,0.31887,0.472942,0.881094,-2.87411E-15,0.0904033,-0.995905,-1.23162E-15,0.86509,0.501617,-1.95509E-15,0.857148,0.447492,-0.255044,0.821503,0.383758,-0.421737,0.780569,0.402331,-0.478374,0.623505,0.15948,-0.765381,0.246908,-0.401412,-0.881989,0.0694418,-0.753717,-0.65352,-0.0189482,-0.93919,-0.342875,-0.0445193,-0.999009,-9.579E-16,-0.0189482,-0.93919,0.342875,0.0663401,-0.742044,0.66706,0.238449,-0.386738,0.890828,0.620819,0.158089,0.767849,0.780569,0.402331,0.478374,0.821503,0.383758,0.421737,0.857148,0.447492,0.255044,0.382114,0.924103,-0.00465041,0.446318,0.848903,-0.283131,0.496346,0.699953,-0.513523,0.425668,0.706031,-0.565975,0.00907751,0.483174,-0.875477,-0.39377,-0.113433,-0.912183,-0.491427,-0.490345,-0.719765,-0.539753,-0.735024,-0.410374,-0.555629,-0.831414,-0.00521488,-0.541993,-0.738075,0.401858,-0.499777,-0.459726,0.734081,-0.40319,-0.0857298,0.911092,-7.36176E-4,0.484574,0.87475,0.428093,0.710053,0.559071,0.499004,0.703702,0.505765,0.447546,0.851239,0.274033,-0.487208,-0.873286,1.27848E-15,-0.484528,-0.830283,-0.275433,-0.476957,-0.685876,-0.549624,-0.466293,-0.40595,-0.785987,-0.585205,0.564529,-0.582101,0.00416486,0.999991,1.63947E-16,0.00416486,0.999991,4.01784E-17,0.00416486,0.999991,1.65796E-17,0.00416486,0.999991,6.21388E-18,0.00416486,0.999991,-3.10506E-18};
			return value;
		}
		private double[] getNormal_6_1015_vector_8()
		{
			double[] value = {0.00416486,0.999991,-2.24274E-17,0.00416486,0.999991,-1.29485E-16,-0.585205,0.564529,0.582101,-0.466293,-0.40595,0.785987,-0.476957,-0.685876,0.549624,-0.484528,-0.830283,0.275433,0.450171,-0.892942,1.00363E-8,0.450555,-0.824792,-0.34164,0.451276,-0.631011,-0.631011,0.452224,-0.341317,-0.824012,0.7176,0.599358,-0.354712,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.578351,0.575351,0.578344,0.451323,-0.341492,0.824434,0.450587,-0.631257,0.631257,0.450182,-0.824966,0.341712,-0.842101,-0.532608,-0.0848222,-0.842101,-0.532608,0.0848222,-0.0286064,-0.999591,5.56087E-9,-0.840915,-0.477134,-0.255352,-0.026848,-0.936785,-0.348873,-0.838844,-0.348574,-0.418136,-0.0215842,-0.744671,-0.667083,-0.837935,-0.106513,-0.535276,-0.0141006,-0.421081,-0.906914,-0.705633,0.708578,4.00787E-13,-0.00452595,0.770548,-0.637366,-0.444229,0.895913,-4.27482E-17,0.00208243,0.999998,8.19736E-17,-0.444229,0.895913,-8.81272E-18,0.00208243,0.999998,2.00893E-17,-0.444229,0.895913,1.77172E-18,0.00208243,0.999998,8.28984E-18,-0.444229,0.895913,9.58285E-18,0.00208243,0.999998,3.10695E-18,-0.444229,0.895913,2.22584E-17,0.00208243,0.999998,-1.55253E-18,-0.444229,0.895913,6.32218E-17,0.00208243,0.999998,-1.12137E-17,-0.705633,0.708578,-4.00727E-13,0.00208243,0.999998,-6.47425E-17,-0.837935,-0.106513,0.535276,-0.0017193,0.700772,0.713383,-0.838844,-0.348574,0.418136,-0.01347,-0.421084,0.906921,-0.840915,-0.477134,0.255352,-0.0211018,-0.744678,0.66709,-0.0265873,-0.936792,0.348876,0.419273,-0.889279,-0.182738,0.419172,-0.889325,0.182747,0.410953,-0.754597,-0.511567,0.424834,-0.46593,-0.77616,0.456273,-0.119909,-0.881724,0.348395,0.923426,-0.160952,0.00723383,0.999974,0.0,0.00723383,0.999974,0.0,0.00723383,0.999974,0.0,0.00723383,0.999974,0.0,0.00723383,0.999974,0.0,0.00723383,0.999974,0.0,0.323152,0.897315,0.300663,0.455207,-0.115722,0.882833,0.424401,-0.466035,0.776334,0.410662,-0.754706,0.511641,-0.0280621,-0.983964,0.176145,-0.024228,-0.857341,0.514178,-0.0174047,-0.59867,0.800807,-0.00804643,-0.171994,0.985065,0.00208243,0.999998,3.8542E-16,0.00208243,0.999998,3.52832E-17,0.00208243,0.999998,1.24221E-17,0.00208243,0.999998,5.34805E-18,0.00208243,0.999998,9.88771E-19,0.00208243,0.999998,-4.91826E-18,0.00208243,0.999998,-2.38572E-17,0.00213741,0.99165,0.12894,-0.00983926,-0.176737,-0.984209,-0.0179722,-0.598664,-0.800799,-0.0246068,-0.857333,-0.514173,-0.0281949,-0.98396,-0.176144,4.181E-6,-1.0,1.11836E-8,5.52759E-6,-0.92388,-0.382683,8.05444E-6,-0.707107,-0.707107,1.13768E-5,-0.382684,-0.923879,1.7091E-5,0.478466,-0.878106,8.21939E-6,-0.382684,0.923879,5.63781E-6,-0.707107,0.707107,4.2197E-6,-0.92388,0.382683,4.01996E-6,-0.980785,0.19509,4.76264E-6,-0.83147,0.55557,6.80167E-6,-0.55557,0.83147,6.01968E-6,-0.196454,0.980513,1.35147E-5,-0.158356,-0.987382,9.6433E-6,-0.55557,-0.83147};
			return value;
		}
		private double[] getNormal_6_1015_vector_9()
		{
			double[] value = {6.66139E-6,-0.83147,-0.55557,4.68672E-6,-0.980785,-0.19509,0.239291,-0.958439,0.155351,0.239291,-0.958439,-0.155351,0.229273,-0.869412,-0.437673,0.268767,-0.638004,-0.721606,0.363145,-0.353441,-0.862094,0.634967,0.280688,-0.719744,0.510244,0.86003,0.0,0.510244,0.86003,0.0,0.510244,0.86003,0.0,0.510244,0.86003,0.0,0.510244,0.86003,0.0,0.510244,0.86003,0.0,0.634967,0.280688,0.719744,0.363145,-0.353441,0.862094,0.268767,-0.638004,0.721606,0.229273,-0.869412,0.437673,0.550704,0.756081,-0.353648,0.166831,0.926653,-0.336871,0.305372,0.917344,-0.255398,0.395301,0.908287,-0.136937,0.426246,0.904607,-6.96206E-18,0.395301,0.908287,0.136937,0.305372,0.917344,0.255398,0.166831,0.926653,0.336871,0.550704,0.756081,0.353648,0.499896,0.717744,-0.484713,0.218355,0.870038,-0.44199,0.39623,0.855973,-0.332133,0.508711,0.842633,-0.176589,0.546736,0.837305,3.54091E-18,0.508711,0.842633,0.176589,0.39623,0.855973,0.332133,0.218355,0.870038,0.44199,0.499896,0.717744,0.484713,0.511076,0.549137,-0.661248,0.358604,0.581513,-0.730237,0.634198,0.558798,-0.534357,0.795594,0.538578,-0.277424,0.847479,0.530829,-1.26646E-15,0.795594,0.538578,0.277424,0.634198,0.558798,0.534357,0.358604,0.581513,0.730237,0.511076,0.549137,0.661248,0.496672,0.131537,-0.857913,0.437659,0.091099,-0.894514,0.760927,0.0858347,-0.643134,0.940839,0.081341,-0.328945,0.996822,0.0796646,-2.5453E-15,0.940839,0.081341,0.328945,0.760927,0.0858347,0.643134,0.437659,0.091099,0.894514,0.496672,0.131537,0.857913,0.333268,-0.40499,-0.85142,0.399845,-0.418042,-0.815699,0.701189,-0.397751,-0.591717,0.873259,-0.380061,-0.304913,0.927682,-0.373372,-1.3137E-15,0.873259,-0.380061,0.304913,0.701189,-0.397751,0.591717,0.399845,-0.418042,0.815699,0.333268,-0.40499,0.85142,0.161256,-0.766326,-0.621886,0.280087,-0.773682,-0.568303,0.50325,-0.753679,-0.422738,0.640238,-0.735197,-0.222669,0.685637,-0.727943,2.13606E-17,0.640238,-0.735197,0.222669,0.50325,-0.753679,0.422738,0.280087,-0.773682,0.568303,0.161256,-0.766326,0.621886,0.0451031,-0.946725,-0.31887,0.142319,-0.947144,-0.287514,0.260438,-0.940577,-0.217914,0.337062,-0.934208,-0.116809,0.36342,-0.931626,2.47741E-17,0.337062,-0.934208,0.116809,0.260438,-0.940577,0.217914,0.142319,-0.947144,0.287514,0.0451031,-0.946725,0.31887,0.472942,0.881094,-2.89567E-15,0.0904033,-0.995905,-1.23443E-15,0.86509,0.501617,-1.94092E-15,0.857148,0.447492,-0.255044,0.821503,0.383758,-0.421737,0.780569,0.402331,-0.478374,0.623505,0.15948,-0.765381,0.246908,-0.401412,-0.881989,0.0694418,-0.753717,-0.65352,-0.0189482,-0.93919,-0.342875,-0.0445193,-0.999009,-9.579E-16,-0.0189482,-0.93919,0.342875,0.0663401,-0.742044,0.66706,0.238449,-0.386738,0.890828,0.620819,0.158089,0.767849,0.780569,0.402331,0.478374,0.821503,0.383758,0.421737,0.857148,0.447492,0.255044,0.382114,0.924103,-0.00465041};
			return value;
		}
		private double[] getNormal_6_1015_vector_10()
		{
			double[] value = {0.446318,0.848903,-0.283131,0.496346,0.699953,-0.513523,0.425668,0.706031,-0.565975,0.00907751,0.483174,-0.875477,-0.39377,-0.113433,-0.912183,-0.491427,-0.490345,-0.719765,-0.539753,-0.735024,-0.410374,-0.555629,-0.831414,-0.00521488,-0.541993,-0.738075,0.401858,-0.499777,-0.459726,0.734081,-0.40319,-0.0857298,0.911092,-7.36176E-4,0.484574,0.87475,0.428093,0.710053,0.559071,0.499004,0.703702,0.505765,0.447546,0.851239,0.274033,-0.487208,-0.873286,1.14454E-15,-0.484528,-0.830283,-0.275433,-0.476957,-0.685876,-0.549624,-0.466293,-0.40595,-0.785987,-0.585205,0.564529,-0.582101,0.00416486,0.999991,1.63947E-16,0.00416486,0.999991,4.01784E-17,0.00416486,0.999991,1.65796E-17,0.00416486,0.999991,6.21388E-18,0.00416486,0.999991,-3.10506E-18,0.00416486,0.999991,-2.24274E-17,0.00416486,0.999991,-1.29485E-16,-0.585205,0.564529,0.582101,-0.466293,-0.40595,0.785987,-0.476957,-0.685876,0.549624,-0.484528,-0.830283,0.275433,0.450171,-0.892942,1.00363E-8,0.450555,-0.824792,-0.34164,0.451276,-0.631011,-0.631011,0.452224,-0.341317,-0.824012,0.700711,0.600315,-0.38552,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.578351,0.575351,0.578344,0.451323,-0.341492,0.824434,0.450587,-0.631257,0.631257,0.450182,-0.824966,0.341712,-0.842101,-0.532608,-0.0848222,-0.842101,-0.532608,0.0848222,-0.0286064,-0.999591,5.56087E-9,-0.840915,-0.477134,-0.255352,-0.026848,-0.936785,-0.348873,-0.838844,-0.348574,-0.418136,-0.0215842,-0.744671,-0.667083,-0.837935,-0.106513,-0.535276,-0.0141006,-0.421081,-0.906914,-0.705633,0.708578,4.00787E-13,-0.00481635,0.762683,-0.646754,-0.444229,0.895913,-4.27482E-17,0.00208243,0.999998,8.19736E-17,-0.444229,0.895913,-8.81272E-18,0.00208243,0.999998,2.00893E-17,-0.444229,0.895913,1.77172E-18,0.00208243,0.999998,8.28984E-18,-0.444229,0.895913,9.58285E-18,0.00208243,0.999998,3.10695E-18,-0.444229,0.895913,2.22584E-17,0.00208243,0.999998,-1.55253E-18,-0.444229,0.895913,6.32218E-17,0.00208243,0.999998,-1.12137E-17,-0.705633,0.708578,-4.00727E-13,0.00208243,0.999998,-6.47425E-17,-0.837935,-0.106513,0.535276,-0.0017193,0.700772,0.713383,-0.838844,-0.348574,0.418136,-0.01347,-0.421084,0.906921,-0.840915,-0.477134,0.255352,-0.0211018,-0.744678,0.66709,-0.0265873,-0.936792,0.348876,0.419273,-0.889279,-0.182738,0.419172,-0.889325,0.182747,0.410953,-0.754597,-0.511567,0.424834,-0.46593,-0.77616,0.456361,-0.121726,-0.881429,0.344153,0.922028,-0.177269,0.00723383,0.999974,0.0,0.00723383,0.999974,0.0,0.00723383,0.999974,0.0,0.00723383,0.999974,0.0,0.00723383,0.999974,0.0,0.00723383,0.999974,0.0,0.323152,0.897315,0.300663,0.455207,-0.115722,0.882833,0.424401,-0.466035,0.776334,0.410662,-0.754706,0.511641,-0.0280621,-0.983964,0.176145,-0.024228,-0.857341,0.514178,-0.0174047,-0.59867,0.800807,-0.00804643,-0.171994,0.985065,0.00208243,0.999998,3.8542E-16};
			return value;
		}
		private double[] getNormal_6_1015_vector_11()
		{
			double[] value = {0.00208243,0.999998,3.52832E-17,0.00208243,0.999998,1.24221E-17,0.00208243,0.999998,5.34805E-18,0.00208243,0.999998,9.88771E-19,0.00208243,0.999998,-4.91826E-18,0.00208243,0.999998,-2.38572E-17,0.00212457,0.99352,0.113635,-0.0100739,-0.178769,-0.983839,-0.0179722,-0.598664,-0.800799,-0.0246068,-0.857333,-0.514173,-0.0281949,-0.98396,-0.176144,4.181E-6,-1.0,1.11836E-8,5.52759E-6,-0.92388,-0.382683,8.05444E-6,-0.707107,-0.707107,1.13768E-5,-0.382684,-0.923879,1.92206E-5,0.47118,-0.882037,8.21939E-6,-0.382684,0.923879,5.63781E-6,-0.707107,0.707107,4.2197E-6,-0.92388,0.382683,4.01996E-6,-0.980785,0.19509,4.76264E-6,-0.83147,0.55557,6.80167E-6,-0.55557,0.83147,6.01968E-6,-0.196454,0.980513,1.46961E-5,-0.162434,-0.986719,9.6433E-6,-0.55557,-0.83147,6.66139E-6,-0.83147,-0.55557,4.68672E-6,-0.980785,-0.19509,0.239291,-0.958439,0.155351,0.239291,-0.958439,-0.155351,0.229273,-0.869412,-0.437673,0.268767,-0.638004,-0.721606,0.363145,-0.353441,-0.862094,0.634967,0.280688,-0.719744,0.510244,0.86003,0.0,0.510244,0.86003,0.0,0.510244,0.86003,0.0,0.510244,0.86003,0.0,0.510244,0.86003,0.0,0.510244,0.86003,0.0,0.634967,0.280688,0.719744,0.363145,-0.353441,0.862094,0.268767,-0.638004,0.721606,0.229273,-0.869412,0.437673,-0.40902,-0.818095,0.404257,-0.40902,0.818095,0.404257,0.57735,0.57735,0.57735,0.57735,-0.57735,0.57735,-0.0299096,-0.707424,-0.706157,-0.0299096,0.707424,-0.706157,0.57735,0.57735,-0.57735,0.57735,-0.57735,-0.57735,2.88338E-5,-0.999986,0.00538452,2.88338E-5,0.999986,0.00538452,3.42954E-5,0.999983,-0.00584121,3.42954E-5,-0.999983,-0.00584121,-0.428423,-0.808479,0.403504,-0.428423,0.808479,0.403504,-0.436656,0.805223,-0.401182,-0.436656,-0.805223,-0.401182,-0.0211558,-0.707265,0.706632,-0.0211558,0.707265,0.706632,0.57735,0.57735,0.57735,0.57735,-0.57735,0.57735,-0.408957,-0.817962,-0.404589,-0.408957,0.817962,-0.404589,0.57735,0.57735,-0.57735,0.57735,-0.57735,-0.57735,-0.24609,0.636103,0.731309,0.323233,0.12928,0.937447,-0.24609,0.636103,-0.731309,0.323233,0.12928,-0.937447,-0.24609,0.636103,0.731309,0.323233,0.12928,0.937447,-0.24609,0.636103,-0.731309,0.323233,0.12928,-0.937447,0.254253,0.575109,-0.777563,0.254253,0.575109,0.777563,0.807397,-0.346061,0.477862,0.807397,-0.346061,-0.477862,0.254253,0.575109,-0.777563,0.254253,0.575109,0.777563,0.807397,-0.346061,0.477862,0.807397,-0.346061,-0.477862,0.408246,-0.816493,0.408258,0.40825,-0.816501,-0.408238,0.408246,0.816493,0.408258,0.40825,0.816501,-0.408238,0.577356,-0.577356,-0.577339,0.577356,0.577356,-0.577339,0.577345,0.577345,0.577362,0.577345,-0.577345,0.577362,-0.40902,-0.818095,0.404257,-0.40902,0.818095,0.404257,0.57735,0.57735,0.57735,0.57735,-0.57735,0.57735,-0.0299096,-0.707424,-0.706157,-0.0299096,0.707424,-0.706157,0.57735,0.57735,-0.57735,0.57735,-0.57735,-0.57735,2.88338E-5,-0.999986,0.00538452};
			return value;
		}
		private double[] getNormal_6_1015_vector_12()
		{
			double[] value = {2.88338E-5,0.999986,0.00538452,3.42954E-5,0.999983,-0.00584121,3.42954E-5,-0.999983,-0.00584121,-0.428423,-0.808479,0.403504,-0.428423,0.808479,0.403504,-0.436656,0.805223,-0.401182,-0.436656,-0.805223,-0.401182,-0.0211558,-0.707265,0.706632,-0.0211558,0.707265,0.706632,0.57735,0.57735,0.57735,0.57735,-0.57735,0.57735,-0.408957,-0.817962,-0.404589,-0.408957,0.817962,-0.404589,0.57735,0.57735,-0.57735,0.57735,-0.57735,-0.57735,-0.24609,0.636103,0.731309,0.323233,0.12928,0.937447,-0.24609,0.636103,-0.731309,0.323233,0.12928,-0.937447,-0.24609,0.636103,0.731309,0.323233,0.12928,0.937447,-0.24609,0.636103,-0.731309,0.323233,0.12928,-0.937447,0.254253,0.575109,-0.777563,0.254253,0.575109,0.777563,0.807397,-0.346061,0.477862,0.807397,-0.346061,-0.477862,0.254253,0.575109,-0.777563,0.254253,0.575109,0.777563,0.807397,-0.346061,0.477862,0.807397,-0.346061,-0.477862,0.408246,-0.816493,0.408258,0.40825,-0.816501,-0.408238,0.408246,0.816493,0.408258,0.40825,0.816501,-0.408238,0.577356,-0.577356,-0.577339,0.577356,0.577356,-0.577339,0.577345,0.577345,0.577362,0.577345,-0.577345,0.577362,0.166099,0.986109,8.82995E-15,0.166099,0.911046,0.377368,0.166099,0.697284,0.697284,0.166099,0.377368,0.911046,0.166099,3.84801E-15,0.986109,0.166099,-0.377368,0.911046,0.166099,-0.697284,0.697284,0.166099,-0.911046,0.377368,0.166099,-0.986109,8.82263E-15,0.166099,-0.911046,-0.377368,0.166099,-0.697284,-0.697284,0.166099,-0.377368,-0.911046,0.166099,1.5948E-15,-0.986109,0.166099,0.377368,-0.911046,0.166099,0.697284,-0.697284,0.166099,0.911046,-0.377368,-1.0,4.96315E-16,4.01039E-15,0.778027,0.61616,0.122562,0.778027,0.61616,-0.122562,-0.363897,0.931439,3.05725E-15,0.778027,0.522355,0.349027,-0.363897,0.860537,0.356446,0.778027,0.349027,0.522355,-0.363897,0.658627,0.658627,0.778027,0.122562,0.61616,-0.363897,0.356446,0.860537,0.778027,-0.122562,0.61616,-0.363897,5.39927E-16,0.931439,0.778027,-0.349027,0.522355,-0.363897,-0.356446,0.860537,0.778027,-0.522355,0.349027,-0.363897,-0.658627,0.658627,0.778027,-0.61616,0.122562,-0.363897,-0.860537,0.356446,0.778027,-0.61616,-0.122562,-0.363897,-0.931439,3.86363E-15,0.778027,-0.522355,-0.349027,-0.363897,-0.860537,-0.356446,0.778027,-0.349027,-0.522355,-0.363897,-0.658627,-0.658627,0.778027,-0.122562,-0.61616,-0.363897,-0.356446,-0.860537,0.778027,0.122562,-0.61616,-0.363897,1.61277E-15,-0.931439,0.778027,0.349027,-0.522355,-0.363897,0.356446,-0.860537,0.778027,0.522355,-0.349027,-0.363897,0.658627,-0.658627,-0.363897,0.860537,-0.356446,-0.355351,0.916772,0.182357,-0.355351,0.777202,0.51931,-0.355351,0.51931,0.777202,-0.355351,0.182357,0.916772,-0.355351,-0.182357,0.916772,-0.355351,-0.51931,0.777202,-0.355351,-0.777202,0.51931,-0.355351,-0.916772,0.182357,-0.355351,-0.916772,-0.182357,-0.355351,-0.777202,-0.51931,-0.355351,-0.51931,-0.777202,-0.355351,-0.182357,-0.916772};
			return value;
		}
		private double[] getNormal_6_1015_vector_13()
		{
			double[] value = {-0.355351,0.182357,-0.916772,-0.355351,0.51931,-0.777202,-0.355351,0.777202,-0.51931,-0.355351,0.916772,-0.182357,-0.1961,0.980584,-2.4855E-15,-0.1961,0.905941,0.375253,-0.1961,0.693377,0.693377,-0.1961,0.375253,0.905941,-0.1961,3.45809E-16,0.980584,-0.1961,-0.375253,0.905941,-0.1961,-0.693377,0.693377,-0.1961,-0.905941,0.375253,-0.1961,-0.980584,-4.32262E-17,-0.1961,-0.905941,-0.375253,-0.1961,-0.693377,-0.693377,-0.1961,-0.375253,-0.905941,-0.1961,2.55755E-15,-0.980584,-0.1961,0.375253,-0.905941,-0.1961,0.693377,-0.693377,-0.1961,0.905941,-0.375253,-0.79636,-0.604822,-4.14936E-14,-0.619673,0.725116,0.300353,-0.619673,0.55498,0.55498,-0.619673,0.300353,0.725116,-0.619673,2.51372E-15,0.78486,-0.619673,-0.300353,0.725116,-0.619673,-0.55498,0.55498,-0.619673,-0.725116,0.300353,-0.619673,-0.78486,2.39825E-16,-0.619673,-0.725116,-0.300353,-0.619673,-0.55498,-0.55498,-0.619673,-0.300353,-0.725116,-0.619673,2.5226E-15,-0.78486,-0.619673,0.300353,-0.725116,-0.619673,0.55498,-0.55498,-0.619673,0.725116,-0.300353,-1.21794E-15,1.0,-2.50449E-15,0.713933,0.700215,-1.75368E-15,-1.62392E-15,0.92388,0.382683,-1.08024E-15,0.947173,0.320722,4.0598E-16,0.92388,-0.382683,2.7006E-16,0.947173,-0.320722,-0.424763,0.107696,-0.898876,-0.424763,0.107696,0.898876,0.384037,0.753317,-0.533881,0.384037,0.753317,0.533881,-0.713933,0.700215,3.224E-14,0.713933,0.700215,3.08628E-14,0.0,0.0,1.0,0.543111,0.532675,0.649067,0.543111,0.532675,-0.649067,0.0,0.0,-1.0,-0.993279,0.115743,-3.51643E-15,0.0,1.0,4.50596E-14,-0.543111,0.532675,0.649067,-0.543111,0.532675,-0.649067,-0.705211,0.0821756,0.70422,0.0,0.980785,0.19509,-0.705211,0.0821756,-0.70422,0.0,0.980785,-0.19509,0.713933,-0.700215,-4.02455E-14,0.0,-1.0,-5.7476E-14,0.0,-0.77301,0.634393,0.437703,-0.429293,0.790015,0.0,-0.77301,-0.634393,0.437703,-0.429293,-0.790015,-0.993279,0.115743,2.9802E-15,0.742994,0.669298,-5.51104E-14,-0.705211,0.0821756,-0.70422,0.347552,0.388365,-0.853452,0.347552,0.388365,0.853452,-0.705211,0.0821756,0.70422,-0.740168,-0.672422,7.36676E-14,-0.0852934,-0.996356,7.402E-14,-0.510583,-0.46385,-0.723981,-0.0389803,-0.485219,-0.873524,-0.0389803,-0.485219,0.873524,-0.510583,-0.46385,0.723981,0.742994,0.669298,-5.51104E-14,0.805331,-0.592825,2.37907E-14,0.632093,-0.325514,-0.703206,0.628855,0.702703,-0.332792,0.628855,0.702703,0.332792,0.632093,-0.325514,0.703206,0.0294942,-0.999565,4.65632E-14,0.0349553,-0.65065,-0.758573,0.0349553,-0.65065,0.758573,0.166099,0.986109,3.32129E-15,0.166099,0.911046,0.377368,0.166099,0.697284,0.697284,0.166099,0.377368,0.911046,0.166099,1.0754E-15,0.986109,0.166099,-0.377368,0.911046,0.166099,-0.697284,0.697284,0.166099,-0.911046,0.377368,0.166099,-0.986109,3.46029E-15,0.166099,-0.911046,-0.377368,0.166099,-0.697284,-0.697284,0.166099,-0.377368,-0.911046,0.166099,-1.22902E-15,-0.986109};
			return value;
		}
		private double[] getNormal_6_1015_vector_14()
		{
			double[] value = {0.166099,0.377368,-0.911046,0.166099,0.697284,-0.697284,0.166099,0.911046,-0.377368,-1.0,6.23529E-16,1.42444E-15,0.778027,0.61616,0.122562,0.778027,0.61616,-0.122562,-0.363897,0.931439,4.41758E-16,0.778027,0.522355,0.349027,-0.363897,0.860537,0.356446,0.778027,0.349027,0.522355,-0.363897,0.658627,0.658627,0.778027,0.122562,0.61616,-0.363897,0.356446,0.860537,0.778027,-0.122562,0.61616,-0.363897,1.76002E-15,0.931439,0.778027,-0.349027,0.522355,-0.363897,-0.356446,0.860537,0.778027,-0.522355,0.349027,-0.363897,-0.658627,0.658627,0.778027,-0.61616,0.122562,-0.363897,-0.860537,0.356446,0.778027,-0.61616,-0.122562,-0.363897,-0.931439,1.29723E-15,0.778027,-0.522355,-0.349027,-0.363897,-0.860537,-0.356446,0.778027,-0.349027,-0.522355,-0.363897,-0.658627,-0.658627,0.778027,-0.122562,-0.61616,-0.363897,-0.356446,-0.860537,0.778027,0.122562,-0.61616,-0.363897,2.10361E-16,-0.931439,0.778027,0.349027,-0.522355,-0.363897,0.356446,-0.860537,0.778027,0.522355,-0.349027,-0.363897,0.658627,-0.658627,-0.363897,0.860537,-0.356446,-0.355351,0.916772,0.182357,-0.355351,0.777202,0.51931,-0.355351,0.51931,0.777202,-0.355351,0.182357,0.916772,-0.355351,-0.182357,0.916772,-0.355351,-0.51931,0.777202,-0.355351,-0.777202,0.51931,-0.355351,-0.916772,0.182357,-0.355351,-0.916772,-0.182357,-0.355351,-0.777202,-0.51931,-0.355351,-0.51931,-0.777202,-0.355351,-0.182357,-0.916772,-0.355351,0.182357,-0.916772,-0.355351,0.51931,-0.777202,-0.355351,0.777202,-0.51931,-0.355351,0.916772,-0.182357,-0.1961,0.980584,-2.45669E-15,-0.1961,0.905941,0.375253,-0.1961,0.693377,0.693377,-0.1961,0.375253,0.905941,-0.1961,2.9682E-15,0.980584,-0.1961,-0.375253,0.905941,-0.1961,-0.693377,0.693377,-0.1961,-0.905941,0.375253,-0.1961,-0.980584,-3.60218E-17,-0.1961,-0.905941,-0.375253,-0.1961,-0.693377,-0.693377,-0.1961,-0.375253,-0.905941,-0.1961,2.50712E-15,-0.980584,-0.1961,0.375253,-0.905941,-0.1961,0.693377,-0.693377,-0.1961,0.905941,-0.375253,-0.79636,-0.604822,-6.58647E-15,-0.619673,0.725116,0.300353,-0.619673,0.55498,0.55498,-0.619673,0.300353,0.725116,-0.619673,2.43378E-15,0.78486,-0.619673,-0.300353,0.725116,-0.619673,-0.55498,0.55498,-0.619673,-0.725116,0.300353,-0.619673,-0.78486,4.0859E-16,-0.619673,-0.725116,-0.300353,-0.619673,-0.55498,-0.55498,-0.619673,-0.300353,-0.725116,-0.619673,2.43378E-15,-0.78486,-0.619673,0.300353,-0.725116,-0.619673,0.55498,-0.55498,-0.619673,0.725116,-0.300353,-1.21794E-15,1.0,-2.50449E-15,0.713933,0.700215,-1.75368E-15,-5.68372E-16,0.92388,0.382683,-3.78084E-16,0.947173,0.320722,-6.49568E-16,0.92388,-0.382683,-4.32096E-16,0.947173,-0.320722,-0.424763,0.107696,-0.898876,-0.424763,0.107696,0.898876,0.384037,0.753317,-0.533881,0.384037,0.753317,0.533881,-0.713933,0.700215,0.0,0.713933,0.700215,8.32256E-16,0.0,0.0,1.0,0.543111,0.532675,0.649067,0.543111,0.532675,-0.649067,0.0,0.0,-1.0};
			return value;
		}
		private double[] getNormal_6_1015_vector_15()
		{
			double[] value = {-0.993279,0.115743,7.86087E-18,0.0,1.0,5.94286E-16,-0.543111,0.532675,0.649067,-0.543111,0.532675,-0.649067,-0.705211,0.0821756,0.70422,0.0,0.980785,0.19509,-0.705211,0.0821756,-0.70422,0.0,0.980785,-0.19509,0.713933,-0.700215,-9.63039E-15,0.0,-1.0,-1.37535E-14,0.0,-0.77301,0.634393,0.437703,-0.429293,0.790015,0.0,-0.77301,-0.634393,0.437703,-0.429293,-0.790015,-0.993279,0.115743,6.50449E-15,0.742994,0.669298,-1.47234E-15,-0.705211,0.0821756,-0.70422,0.347552,0.388365,-0.853452,0.347552,0.388365,0.853452,-0.705211,0.0821756,0.70422,-0.740168,-0.672422,9.55038E-15,-0.0852934,-0.996356,7.33463E-15,-0.510583,-0.46385,-0.723981,-0.0389803,-0.485219,-0.873524,-0.0389803,-0.485219,0.873524,-0.510583,-0.46385,0.723981,0.742994,0.669298,-1.47234E-15,0.805331,-0.592825,1.27007E-14,0.632093,-0.325514,-0.703206,0.628855,0.702703,-0.332792,0.628855,0.702703,0.332792,0.632093,-0.325514,0.703206,0.0294942,-0.999565,1.80941E-14,0.0349553,-0.65065,-0.758573,0.0349553,-0.65065,0.758573,0.166099,0.986109,8.82995E-15,0.166099,0.911046,0.377368,0.166099,0.697284,0.697284,0.166099,0.377368,0.911046,0.166099,1.0315E-15,0.986109,0.166099,-0.377368,0.911046,0.166099,-0.697284,0.697284,0.166099,-0.911046,0.377368,0.166099,-0.986109,8.93237E-15,0.166099,-0.911046,-0.377368,0.166099,-0.697284,-0.697284,0.166099,-0.377368,-0.911046,0.166099,1.8289E-16,-0.986109,0.166099,0.377368,-0.911046,0.166099,0.697284,-0.697284,0.166099,0.911046,-0.377368,-1.0,1.3241E-15,4.12954E-15,0.778027,0.61616,0.122562,0.778027,0.61616,-0.122562,-0.363897,0.931439,7.02606E-15,0.778027,0.522355,0.349027,-0.363897,0.860537,0.356446,0.778027,0.349027,0.522355,-0.363897,0.658627,0.658627,0.778027,0.122562,0.61616,-0.363897,0.356446,0.860537,0.778027,-0.122562,0.61616,-0.363897,4.23527E-15,0.931439,0.778027,-0.349027,0.522355,-0.363897,-0.356446,0.860537,0.778027,-0.522355,0.349027,-0.363897,-0.658627,0.658627,0.778027,-0.61616,0.122562,-0.363897,-0.860537,0.356446,0.778027,-0.61616,-0.122562,-0.363897,-0.931439,7.88153E-15,0.778027,-0.522355,-0.349027,-0.363897,-0.860537,-0.356446,0.778027,-0.349027,-0.522355,-0.363897,-0.658627,-0.658627,0.778027,-0.122562,-0.61616,-0.363897,-0.356446,-0.860537,0.778027,0.122562,-0.61616,-0.363897,8.83517E-16,-0.931439,0.778027,0.349027,-0.522355,-0.363897,0.356446,-0.860537,0.778027,0.522355,-0.349027,-0.363897,0.658627,-0.658627,-0.363897,0.860537,-0.356446,-0.355351,0.916772,0.182357,-0.355351,0.777202,0.51931,-0.355351,0.51931,0.777202,-0.355351,0.182357,0.916772,-0.355351,-0.182357,0.916772,-0.355351,-0.51931,0.777202,-0.355351,-0.777202,0.51931,-0.355351,-0.916772,0.182357,-0.355351,-0.916772,-0.182357,-0.355351,-0.777202,-0.51931,-0.355351,-0.51931,-0.777202,-0.355351,-0.182357,-0.916772,-0.355351,0.182357,-0.916772,-0.355351,0.51931,-0.777202,-0.355351,0.777202,-0.51931,-0.355351,0.916772,-0.182357};
			return value;
		}
		private double[] getNormal_6_1015_vector_16()
		{
			double[] value = {-0.1961,0.980584,7.66544E-15,-0.1961,0.905941,0.375253,-0.1961,0.693377,0.693377,-0.1961,0.375253,0.905941,-0.1961,5.53295E-15,0.980584,-0.1961,-0.375253,0.905941,-0.1961,-0.693377,0.693377,-0.1961,-0.905941,0.375253,-0.1961,-0.980584,9.10631E-15,-0.1961,-0.905941,-0.375253,-0.1961,-0.693377,-0.693377,-0.1961,-0.375253,-0.905941,-0.1961,2.49991E-15,-0.980584,-0.1961,0.375253,-0.905941,-0.1961,0.693377,-0.693377,-0.1961,0.905941,-0.375253,-0.79636,-0.604822,-3.93134E-14,-0.619673,0.725116,0.300353,-0.619673,0.55498,0.55498,-0.619673,0.300353,0.725116,-0.619673,2.60254E-15,0.78486,-0.619673,-0.300353,0.725116,-0.619673,-0.55498,0.55498,-0.619673,-0.725116,0.300353,-0.619673,-0.78486,8.50045E-15,-0.619673,-0.725116,-0.300353,-0.619673,-0.55498,-0.55498,-0.619673,-0.300353,-0.725116,-0.619673,2.51372E-15,-0.78486,-0.619673,0.300353,-0.725116,-0.619673,0.55498,-0.55498,-0.619673,0.725116,-0.300353,-7.30763E-16,1.0,9.42368E-15,0.713933,0.700215,6.5986E-15,-1.13674E-15,0.92388,0.382683,-7.56168E-16,0.947173,0.320722,4.0598E-16,0.92388,-0.382683,2.7006E-16,0.947173,-0.320722,-0.424763,0.107696,-0.898876,-0.424763,0.107696,0.898876,0.384037,0.753317,-0.533881,0.384037,0.753317,0.533881,-0.713933,0.700215,3.04962E-14,0.713933,0.700215,3.25174E-14,0.0,0.0,1.0,0.543111,0.532675,0.649067,0.543111,0.532675,-0.649067,0.0,0.0,-1.0,-0.993279,0.115743,-3.50769E-15,0.0,1.0,4.49959E-14,-0.543111,0.532675,0.649067,-0.543111,0.532675,-0.649067,-0.705211,0.0821756,0.70422,0.0,0.980785,0.19509,-0.705211,0.0821756,-0.70422,0.0,0.980785,-0.19509,0.713933,-0.700215,-4.02455E-14,0.0,-1.0,-5.7476E-14,0.0,-0.77301,0.634393,0.437703,-0.429293,0.790015,0.0,-0.77301,-0.634393,0.437703,-0.429293,-0.790015,-0.993279,0.115743,2.98893E-15,0.742994,0.669298,-5.51104E-14,-0.705211,0.0821756,-0.70422,0.347552,0.388365,-0.853452,0.347552,0.388365,0.853452,-0.705211,0.0821756,0.70422,-0.740168,-0.672422,6.91069E-14,-0.0852934,-0.996356,6.90435E-14,-0.510583,-0.46385,-0.723981,-0.0389803,-0.485219,-0.873524,-0.0389803,-0.485219,0.873524,-0.510583,-0.46385,0.723981,0.742994,0.669298,-5.51104E-14,0.805331,-0.592825,2.37907E-14,0.632093,-0.325514,-0.703206,0.628855,0.702703,-0.332792,0.628855,0.702703,0.332792,0.632093,-0.325514,0.703206,0.0294942,-0.999565,4.49635E-14,0.0349553,-0.65065,-0.758573,0.0349553,-0.65065,0.758573,0.166099,0.986109,3.44565E-15,0.166099,0.911046,0.377368,0.166099,0.697284,0.697284,0.166099,0.377368,0.911046,0.166099,-1.74112E-15,0.986109,0.166099,-0.377368,0.911046,0.166099,-0.697284,0.697284,0.166099,-0.911046,0.377368,0.166099,-0.986109,3.21887E-15,0.166099,-0.911046,-0.377368,0.166099,-0.697284,-0.697284,0.166099,-0.377368,-0.911046,0.166099,1.53628E-15,-0.986109,0.166099,0.377368,-0.911046,0.166099,0.697284,-0.697284,0.166099,0.911046,-0.377368,-1.0,6.77282E-16,1.54135E-15};
			return value;
		}
		private double[] getNormal_6_1015_vector_17()
		{
			double[] value = {0.778027,0.61616,0.122562,0.778027,0.61616,-0.122562,-0.363897,0.931439,3.50602E-16,0.778027,0.522355,0.349027,-0.363897,0.860537,0.356446,0.778027,0.349027,0.522355,-0.363897,0.658627,0.658627,0.778027,0.122562,0.61616,-0.363897,0.356446,0.860537,0.778027,-0.122562,0.61616,-0.363897,4.1371E-16,0.931439,0.778027,-0.349027,0.522355,-0.363897,-0.356446,0.860537,0.778027,-0.522355,0.349027,-0.363897,-0.658627,0.658627,0.778027,-0.61616,0.122562,-0.363897,-0.860537,0.356446,0.778027,-0.61616,-0.122562,-0.363897,-0.931439,1.11491E-15,0.778027,-0.522355,-0.349027,-0.363897,-0.860537,-0.356446,0.778027,-0.349027,-0.522355,-0.363897,-0.658627,-0.658627,0.778027,-0.122562,-0.61616,-0.363897,-0.356446,-0.860537,0.778027,0.122562,-0.61616,-0.363897,1.53564E-15,-0.931439,0.778027,0.349027,-0.522355,-0.363897,0.356446,-0.860537,0.778027,0.522355,-0.349027,-0.363897,0.658627,-0.658627,-0.363897,0.860537,-0.356446,-0.355351,0.916772,0.182357,-0.355351,0.777202,0.51931,-0.355351,0.51931,0.777202,-0.355351,0.182357,0.916772,-0.355351,-0.182357,0.916772,-0.355351,-0.51931,0.777202,-0.355351,-0.777202,0.51931,-0.355351,-0.916772,0.182357,-0.355351,-0.916772,-0.182357,-0.355351,-0.777202,-0.51931,-0.355351,-0.51931,-0.777202,-0.355351,-0.182357,-0.916772,-0.355351,0.182357,-0.916772,-0.355351,0.51931,-0.777202,-0.355351,0.777202,-0.51931,-0.355351,0.916772,-0.182357,-0.1961,0.980584,-2.60798E-15,-0.1961,0.905941,0.375253,-0.1961,0.693377,0.693377,-0.1961,0.375253,0.905941,-0.1961,2.9682E-15,0.980584,-0.1961,-0.375253,0.905941,-0.1961,-0.693377,0.693377,-0.1961,-0.905941,0.375253,-0.1961,-0.980584,-7.70867E-16,-0.1961,-0.905941,-0.375253,-0.1961,-0.693377,-0.693377,-0.1961,-0.375253,-0.905941,-0.1961,2.50712E-15,-0.980584,-0.1961,0.375253,-0.905941,-0.1961,0.693377,-0.693377,-0.1961,0.905941,-0.375253,-0.79636,-0.604822,-6.59789E-15,-0.619673,0.725116,0.300353,-0.619673,0.55498,0.55498,-0.619673,0.300353,0.725116,-0.619673,2.60254E-15,0.78486,-0.619673,-0.300353,0.725116,-0.619673,-0.55498,0.55498,-0.619673,-0.725116,0.300353,-0.619673,-0.78486,-7.46121E-16,-0.619673,-0.725116,-0.300353,-0.619673,-0.55498,-0.55498,-0.619673,-0.300353,-0.725116,-0.619673,2.51372E-15,-0.78486,-0.619673,0.300353,-0.725116,-0.619673,0.55498,-0.55498,-0.619673,0.725116,-0.300353,-1.29914E-15,1.0,-2.50449E-15,0.713933,0.700215,-1.75368E-15,-6.49568E-16,0.92388,0.382683,-4.32096E-16,0.947173,0.320722,-6.49568E-16,0.92388,-0.382683,-4.32096E-16,0.947173,-0.320722,-0.424763,0.107696,-0.898876,-0.424763,0.107696,0.898876,0.384037,0.753317,-0.533881,0.384037,0.753317,0.533881,-0.713933,0.700215,8.52071E-16,0.713933,0.700215,-8.32256E-16,0.0,0.0,1.0,0.543111,0.532675,0.649067,0.543111,0.532675,-0.649067,0.0,0.0,-1.0,-0.993279,0.115743,-4.36715E-18,0.0,1.0,1.41497E-17,-0.543111,0.532675,0.649067,-0.543111,0.532675,-0.649067};
			return value;
		}
		private double[] getNormal_6_1015_vector_18()
		{
			double[] value = {-0.705211,0.0821756,0.70422,0.0,0.980785,0.19509,-0.705211,0.0821756,-0.70422,0.0,0.980785,-0.19509,0.713933,-0.700215,-9.63039E-15,0.0,-1.0,-1.37535E-14,0.0,-0.77301,0.634393,0.437703,-0.429293,0.790015,0.0,-0.77301,-0.634393,0.437703,-0.429293,-0.790015,-0.993279,0.115743,6.49226E-15,0.742994,0.669298,2.04491E-16,-0.705211,0.0821756,-0.70422,0.347552,0.388365,-0.853452,0.347552,0.388365,0.853452,-0.705211,0.0821756,0.70422,-0.740168,-0.672422,1.26114E-14,-0.0852934,-0.996356,1.11933E-14,-0.510583,-0.46385,-0.723981,-0.0389803,-0.485219,-0.873524,-0.0389803,-0.485219,0.873524,-0.510583,-0.46385,0.723981,0.742994,0.669298,2.04491E-16,0.805331,-0.592825,1.05346E-14,0.632093,-0.325514,-0.703206,0.628855,0.702703,-0.332792,0.628855,0.702703,0.332792,0.632093,-0.325514,0.703206,0.0294942,-0.999565,1.78767E-14,0.0349553,-0.65065,-0.758573,0.0349553,-0.65065,0.758573,0.890909,-0.454182,3.08849E-15,0.823093,-0.454182,0.340936,0.629968,-0.454182,0.629968,0.340936,-0.454182,0.823093,5.95763E-14,-0.454182,0.890909,-0.340936,-0.454182,0.823093,-0.629968,-0.454182,0.629968,-0.823093,-0.454182,0.340936,-0.890909,-0.454182,3.08849E-15,-0.823093,-0.454182,-0.340936,-0.629968,-0.454182,-0.629968,-0.340936,-0.454182,-0.823093,5.95763E-14,-0.454182,-0.890909,0.340936,-0.454182,-0.823093,0.629968,-0.454182,-0.629968,0.823093,-0.454182,-0.340936,0.98344,0.181232,-7.90347E-17,0.908581,0.181232,0.376346,0.695397,0.181232,0.695397,0.376346,0.181232,0.908581,7.58733E-14,0.181232,0.98344,-0.376346,0.181232,0.908581,-0.695397,0.181232,0.695397,-0.908581,0.181232,0.376346,-0.98344,0.181232,-7.90347E-17,-0.908581,0.181232,-0.376346,-0.695397,0.181232,-0.695397,-0.376346,0.181232,-0.908581,7.57152E-14,0.181232,-0.98344,0.376346,0.181232,-0.908581,0.695397,0.181232,-0.695397,0.908581,0.181232,-0.376346,0.908581,0.181232,0.376346,0.98344,0.181232,-7.90347E-17,0.908581,0.181232,-0.376346,0.695397,0.181232,-0.695397,0.376346,0.181232,-0.908581,8.71537E-14,0.181232,-0.98344,-0.376346,0.181232,-0.908581,-0.695397,0.181232,-0.695397,-0.908581,0.181232,-0.376346,-0.98344,0.181232,-7.90347E-17,-0.908581,0.181232,0.376346,-0.695397,0.181232,0.695397,-0.376346,0.181232,0.908581,8.73118E-14,0.181232,0.98344,0.376346,0.181232,0.908581,0.695397,0.181232,0.695397,0.908581,0.181232,0.376346,0.98344,0.181232,4.60054E-14,0.908581,0.181232,-0.376346,0.695397,0.181232,-0.695397,0.376346,0.181232,-0.908581,6.93781E-14,0.181232,-0.98344,-0.376346,0.181232,-0.908581,-0.695397,0.181232,-0.695397,-0.908581,0.181232,-0.376346,-0.98344,0.181232,4.64868E-14,-0.908581,0.181232,0.376346,-0.695397,0.181232,0.695397,-0.376346,0.181232,0.908581,5.83563E-14,0.181232,0.98344,0.376346,0.181232,0.908581,0.695397,0.181232,0.695397,0.678138,0.679137,0.280894,0.734011,0.679137,7.51733E-14,0.678138,0.679137,-0.280894,0.519024,0.679137,-0.519024,0.280894,0.679137,-0.678138};
			return value;
		}
		private double[] getNormal_6_1015_vector_19()
		{
			double[] value = {3.70101E-14,0.679137,-0.734011,-0.280894,0.679137,-0.678138,-0.519024,0.679137,-0.519024,-0.678138,0.679137,-0.280894,-0.734011,0.679137,7.59162E-14,-0.678138,0.679137,0.280894,-0.519024,0.679137,0.519024,-0.280894,0.679137,0.678138,2.00019E-14,0.679137,0.734011,0.280894,0.679137,0.678138,0.519024,0.679137,0.519024,0.890909,-0.454182,8.99695E-14,0.823093,-0.454182,0.340936,0.629968,-0.454182,0.629968,0.340936,-0.454182,0.823093,5.95763E-14,-0.454182,0.890909,-0.340936,-0.454182,0.823093,-0.629968,-0.454182,0.629968,-0.823093,-0.454182,0.340936,-0.890909,-0.454182,8.99569E-14,-0.823093,-0.454182,-0.340936,-0.629968,-0.454182,-0.629968,-0.340936,-0.454182,-0.823093,5.95763E-14,-0.454182,-0.890909,0.340936,-0.454182,-0.823093,0.629968,-0.454182,-0.629968,0.823093,-0.454182,-0.340936,0.98344,0.181232,7.74612E-14,0.908581,0.181232,0.376346,0.695397,0.181232,0.695397,0.376346,0.181232,0.908581,7.5629E-14,0.181232,0.98344,-0.376346,0.181232,0.908581,-0.695397,0.181232,0.695397,-0.908581,0.181232,0.376346,-0.98344,0.181232,7.74612E-14,-0.908581,0.181232,-0.376346,-0.695397,0.181232,-0.695397,-0.376346,0.181232,-0.908581,8.05004E-14,0.181232,-0.98344,0.376346,0.181232,-0.908581,0.695397,0.181232,-0.695397,0.908581,0.181232,-0.376346,0.908581,0.181232,0.376346,0.98344,0.181232,2.79424E-14,0.908581,0.181232,-0.376346,0.695397,0.181232,-0.695397,0.376346,0.181232,-0.908581,9.19389E-14,0.181232,-0.98344,-0.376346,0.181232,-0.908581,-0.695397,0.181232,-0.695397,-0.908581,0.181232,-0.376346,-0.98344,0.181232,2.79495E-14,-0.908581,0.181232,0.376346,-0.695397,0.181232,0.695397,-0.376346,0.181232,0.908581,8.70675E-14,0.181232,0.98344,0.376346,0.181232,0.908581,0.695397,0.181232,0.695397,0.908581,0.181232,0.376346,0.98344,0.181232,4.60054E-14,0.908581,0.181232,-0.376346,0.695397,0.181232,-0.695397,0.376346,0.181232,-0.908581,6.93709E-14,0.181232,-0.98344,-0.376346,0.181232,-0.908581,-0.695397,0.181232,-0.695397,-0.908581,0.181232,-0.376346,-0.98344,0.181232,4.64868E-14,-0.908581,0.181232,0.376346,-0.695397,0.181232,0.695397,-0.376346,0.181232,0.908581,5.82917E-14,0.181232,0.98344,0.376346,0.181232,0.908581,0.695397,0.181232,0.695397,0.678138,0.679137,0.280894,0.734011,0.679137,7.51733E-14,0.678138,0.679137,-0.280894,0.519024,0.679137,-0.519024,0.280894,0.679137,-0.678138,3.6999E-14,0.679137,-0.734011,-0.280894,0.679137,-0.678138,-0.519024,0.679137,-0.519024,-0.678138,0.679137,-0.280894,-0.734011,0.679137,7.59162E-14,-0.678138,0.679137,0.280894,-0.519024,0.679137,0.519024,-0.280894,0.679137,0.678138,1.99021E-14,0.679137,0.734011,0.280894,0.679137,0.678138,0.519024,0.679137,0.519024,0.890909,-0.454182,3.08849E-15,0.823093,-0.454182,0.340936,0.629968,-0.454182,0.629968,0.340936,-0.454182,0.823093,5.95763E-14,-0.454182,0.890909,-0.340936,-0.454182,0.823093,-0.629968,-0.454182,0.629968,-0.823093,-0.454182,0.340936,-0.890909,-0.454182,3.08849E-15};
			return value;
		}
		private double[] getNormal_6_1015_vector_20()
		{
			double[] value = {-0.823093,-0.454182,-0.340936,-0.629968,-0.454182,-0.629968,-0.340936,-0.454182,-0.823093,5.95763E-14,-0.454182,-0.890909,0.340936,-0.454182,-0.823093,0.629968,-0.454182,-0.629968,0.823093,-0.454182,-0.340936,0.98344,0.181232,0.0,0.908581,0.181232,0.376346,0.695397,0.181232,0.695397,0.376346,0.181232,0.908581,7.57943E-14,0.181232,0.98344,-0.376346,0.181232,0.908581,-0.695397,0.181232,0.695397,-0.908581,0.181232,0.376346,-0.98344,0.181232,0.0,-0.908581,0.181232,-0.376346,-0.695397,0.181232,-0.695397,-0.376346,0.181232,-0.908581,7.57152E-14,0.181232,-0.98344,0.376346,0.181232,-0.908581,0.695397,0.181232,-0.695397,0.908581,0.181232,-0.376346,0.908581,0.181232,0.376346,0.98344,0.181232,0.0,0.908581,0.181232,-0.376346,0.695397,0.181232,-0.695397,0.376346,0.181232,-0.908581,8.71537E-14,0.181232,-0.98344,-0.376346,0.181232,-0.908581,-0.695397,0.181232,-0.695397,-0.908581,0.181232,-0.376346,-0.98344,0.181232,0.0,-0.908581,0.181232,0.376346,-0.695397,0.181232,0.695397,-0.376346,0.181232,0.908581,8.72327E-14,0.181232,0.98344,0.376346,0.181232,0.908581,0.695397,0.181232,0.695397,0.908581,0.181232,0.376346,0.98344,0.181232,4.60054E-14,0.908581,0.181232,-0.376346,0.695397,0.181232,-0.695397,0.376346,0.181232,-0.908581,6.93637E-14,0.181232,-0.98344,-0.376346,0.181232,-0.908581,-0.695397,0.181232,-0.695397,-0.908581,0.181232,-0.376346,-0.98344,0.181232,4.64868E-14,-0.908581,0.181232,0.376346,-0.695397,0.181232,0.695397,-0.376346,0.181232,0.908581,5.81911E-14,0.181232,0.98344,0.376346,0.181232,0.908581,0.695397,0.181232,0.695397,0.678138,0.679137,0.280894,0.734011,0.679137,7.51733E-14,0.678138,0.679137,-0.280894,0.519024,0.679137,-0.519024,0.280894,0.679137,-0.678138,3.69879E-14,0.679137,-0.734011,-0.280894,0.679137,-0.678138,-0.519024,0.679137,-0.519024,-0.678138,0.679137,-0.280894,-0.734011,0.679137,7.59162E-14,-0.678138,0.679137,0.280894,-0.519024,0.679137,0.519024,-0.280894,0.679137,0.678138,1.97468E-14,0.679137,0.734011,0.280894,0.679137,0.678138,0.519024,0.679137,0.519024,0.890909,-0.454182,1.08286E-14,0.823093,-0.454182,0.340936,0.629968,-0.454182,0.629968,0.340936,-0.454182,0.823093,5.34371E-14,-0.454182,0.890909,-0.340936,-0.454182,0.823093,-0.629968,-0.454182,0.629968,-0.823093,-0.454182,0.340936,-0.890909,-0.454182,1.08286E-14,-0.823093,-0.454182,-0.340936,-0.629968,-0.454182,-0.629968,-0.340936,-0.454182,-0.823093,5.34371E-14,-0.454182,-0.890909,0.340936,-0.454182,-0.823093,0.629968,-0.454182,-0.629968,0.823093,-0.454182,-0.340936,0.992126,0.125242,-7.8394E-17,0.916605,0.125242,0.37967,0.701539,0.125242,0.701539,0.37967,0.125242,0.916605,6.21807E-14,0.125242,0.992126,-0.37967,0.125242,0.916605,-0.701539,0.125242,0.701539,-0.916605,0.125242,0.37967,-0.992126,0.125242,-7.8394E-17,-0.916605,0.125242,-0.37967,-0.701539,0.125242,-0.701539,-0.37967,0.125242,-0.916605,6.21807E-14,0.125242,-0.992126};
			return value;
		}
		private double[] getNormal_6_1015_vector_21()
		{
			double[] value = {0.37967,0.125242,-0.916605,0.701539,0.125242,-0.701539,0.916605,0.125242,-0.37967,0.916605,0.125242,0.37967,0.992126,0.125242,-7.8394E-17,0.916605,0.125242,-0.37967,0.701539,0.125242,-0.701539,0.37967,0.125242,-0.916605,6.22733E-14,0.125242,-0.992126,-0.37967,0.125242,-0.916605,-0.701539,0.125242,-0.701539,-0.916605,0.125242,-0.37967,-0.992126,0.125242,-7.8394E-17,-0.916605,0.125242,0.37967,-0.701539,0.125242,0.701539,-0.37967,0.125242,0.916605,6.22733E-14,0.125242,0.992126,0.37967,0.125242,0.916605,0.701539,0.125242,0.701539,0.916605,0.125242,0.37967,0.992126,0.125242,-4.76208E-14,0.916605,0.125242,-0.37967,0.701539,0.125242,-0.701539,0.37967,0.125242,-0.916605,6.59436E-14,0.125242,-0.992126,-0.37967,0.125242,-0.916605,-0.701539,0.125242,-0.701539,-0.916605,0.125242,-0.37967,-0.992126,0.125242,-4.83263E-14,-0.916605,0.125242,0.37967,-0.701539,0.125242,0.701539,-0.37967,0.125242,0.916605,6.60077E-14,0.125242,0.992126,0.37967,0.125242,0.916605,0.701539,0.125242,0.701539,0.72775,0.616045,0.301444,0.787711,0.616045,-8.00479E-14,0.72775,0.616045,-0.301444,0.556996,0.616045,-0.556996,0.301444,0.616045,-0.72775,5.74759E-14,0.616045,-0.787711,-0.301444,0.616045,-0.72775,-0.556996,0.616045,-0.556996,-0.72775,0.616045,-0.301444,-0.787711,0.616045,-8.11857E-14,-0.72775,0.616045,0.301444,-0.556996,0.616045,0.556996,-0.301444,0.616045,0.72775,5.75793E-14,0.616045,0.787711,0.301444,0.616045,0.72775,0.556996,0.616045,0.556996,0.890909,-0.454182,8.99695E-14,0.823093,-0.454182,0.340936,0.629968,-0.454182,0.629968,0.340936,-0.454182,0.823093,5.95763E-14,-0.454182,0.890909,-0.340936,-0.454182,0.823093,-0.629968,-0.454182,0.629968,-0.823093,-0.454182,0.340936,-0.890909,-0.454182,8.99569E-14,-0.823093,-0.454182,-0.340936,-0.629968,-0.454182,-0.629968,-0.340936,-0.454182,-0.823093,5.95763E-14,-0.454182,-0.890909,0.340936,-0.454182,-0.823093,0.629968,-0.454182,-0.629968,0.823093,-0.454182,-0.340936,0.98344,0.181232,7.74252E-14,0.908581,0.181232,0.376346,0.695397,0.181232,0.695397,0.376346,0.181232,0.908581,7.54709E-14,0.181232,0.98344,-0.376346,0.181232,0.908581,-0.695397,0.181232,0.695397,-0.908581,0.181232,0.376346,-0.98344,0.181232,7.74181E-14,-0.908581,0.181232,-0.376346,-0.695397,0.181232,-0.695397,-0.376346,0.181232,-0.908581,8.03783E-14,0.181232,-0.98344,0.376346,0.181232,-0.908581,0.695397,0.181232,-0.695397,0.908581,0.181232,-0.376346,0.908581,0.181232,0.376346,0.98344,0.181232,2.79064E-14,0.908581,0.181232,-0.376346,0.695397,0.181232,-0.695397,0.376346,0.181232,-0.908581,9.18167E-14,0.181232,-0.98344,-0.376346,0.181232,-0.908581,-0.695397,0.181232,-0.695397,-0.908581,0.181232,-0.376346,-0.98344,0.181232,2.79064E-14,-0.908581,0.181232,0.376346,-0.695397,0.181232,0.695397,-0.376346,0.181232,0.908581,8.69094E-14,0.181232,0.98344,0.376346,0.181232,0.908581,0.695397,0.181232,0.695397,0.908581,0.181232,0.376346};
			return value;
		}
		private double[] getNormal_6_1015_vector_22()
		{
			double[] value = {0.98344,0.181232,4.57323E-14,0.908581,0.181232,-0.376346,0.695397,0.181232,-0.695397,0.376346,0.181232,-0.908581,6.94787E-14,0.181232,-0.98344,-0.376346,0.181232,-0.908581,-0.695397,0.181232,-0.695397,-0.908581,0.181232,-0.376346,-0.98344,0.181232,4.62137E-14,-0.908581,0.181232,0.376346,-0.695397,0.181232,0.695397,-0.376346,0.181232,0.908581,6.94427E-14,0.181232,0.98344,0.376346,0.181232,0.908581,0.695397,0.181232,0.695397,0.678138,0.679137,0.280894,0.734011,0.679137,7.4752E-14,0.678138,0.679137,-0.280894,0.519024,0.679137,-0.519024,0.280894,0.679137,-0.678138,3.71653E-14,0.679137,-0.734011,-0.280894,0.679137,-0.678138,-0.519024,0.679137,-0.519024,-0.678138,0.679137,-0.280894,-0.734011,0.679137,7.54948E-14,-0.678138,0.679137,0.280894,-0.519024,0.679137,0.519024,-0.280894,0.679137,0.678138,3.71099E-14,0.679137,0.734011,0.280894,0.679137,0.678138,0.519024,0.679137,0.519024,0.890909,-0.454182,3.08849E-15,0.823093,-0.454182,0.340936,0.629968,-0.454182,0.629968,0.340936,-0.454182,0.823093,5.95763E-14,-0.454182,0.890909,-0.340936,-0.454182,0.823093,-0.629968,-0.454182,0.629968,-0.823093,-0.454182,0.340936,-0.890909,-0.454182,3.08849E-15,-0.823093,-0.454182,-0.340936,-0.629968,-0.454182,-0.629968,-0.340936,-0.454182,-0.823093,5.95763E-14,-0.454182,-0.890909,0.340936,-0.454182,-0.823093,0.629968,-0.454182,-0.629968,0.823093,-0.454182,-0.340936,0.98344,0.181232,0.0,0.908581,0.181232,0.376346,0.695397,0.181232,0.695397,0.376346,0.181232,0.908581,7.5629E-14,0.181232,0.98344,-0.376346,0.181232,0.908581,-0.695397,0.181232,0.695397,-0.908581,0.181232,0.376346,-0.98344,0.181232,0.0,-0.908581,0.181232,-0.376346,-0.695397,0.181232,-0.695397,-0.376346,0.181232,-0.908581,8.02202E-14,0.181232,-0.98344,0.376346,0.181232,-0.908581,0.695397,0.181232,-0.695397,0.908581,0.181232,-0.376346,0.908581,0.181232,0.376346,0.98344,0.181232,0.0,0.908581,0.181232,-0.376346,0.695397,0.181232,-0.695397,0.376346,0.181232,-0.908581,9.16587E-14,0.181232,-0.98344,-0.376346,0.181232,-0.908581,-0.695397,0.181232,-0.695397,-0.908581,0.181232,-0.376346,-0.98344,0.181232,0.0,-0.908581,0.181232,0.376346,-0.695397,0.181232,0.695397,-0.376346,0.181232,0.908581,8.70675E-14,0.181232,0.98344,0.376346,0.181232,0.908581,0.695397,0.181232,0.695397,0.908581,0.181232,0.376346,0.98344,0.181232,4.57323E-14,0.908581,0.181232,-0.376346,0.695397,0.181232,-0.695397,0.376346,0.181232,-0.908581,6.93422E-14,0.181232,-0.98344,-0.376346,0.181232,-0.908581,-0.695397,0.181232,-0.695397,-0.908581,0.181232,-0.376346,-0.98344,0.181232,4.62137E-14,-0.908581,0.181232,0.376346,-0.695397,0.181232,0.695397,-0.376346,0.181232,0.908581,5.82414E-14,0.181232,0.98344,0.376346,0.181232,0.908581,0.695397,0.181232,0.695397,0.678138,0.679137,0.280894,0.734011,0.679137,7.4752E-14,0.678138,0.679137,-0.280894,0.519024,0.679137,-0.519024,0.280894,0.679137,-0.678138};
			return value;
		}
		private double[] getNormal_6_1015_vector_23()
		{
			double[] value = {3.69547E-14,0.679137,-0.734011,-0.280894,0.679137,-0.678138,-0.519024,0.679137,-0.519024,-0.678138,0.679137,-0.280894,-0.734011,0.679137,7.54948E-14,-0.678138,0.679137,0.280894,-0.519024,0.679137,0.519024,-0.280894,0.679137,0.678138,1.98245E-14,0.679137,0.734011,0.280894,0.679137,0.678138,0.519024,0.679137,0.519024,0.0167239,0.999811,0.00990179,0.0167239,0.999811,0.00990179,0.0167239,0.999811,0.00990179,0.0167239,0.999811,0.00990179,0.0167239,0.999811,0.00990179,0.0167239,0.999811,0.00990179,0.0167239,0.999811,0.00990179,0.0167239,0.999811,0.00990179,0.0167239,0.999811,0.00990179,0.0173237,0.999798,-0.0101758,0.0173237,0.999798,-0.0101758,0.0173237,0.999798,-0.0101758,0.0173237,0.999798,-0.0101758,0.0173237,0.999798,-0.0101758,0.0173237,0.999798,-0.0101758,0.0173237,0.999798,-0.0101758,0.0173237,0.999798,-0.0101758,0.0173237,0.999798,-0.0101758,0.172774,0.984962,-5.94512E-17,0.137466,0.990507,-8.92338E-17,0.172774,0.984962,-5.94512E-17,0.137466,0.990507,-8.92338E-17,0.172774,0.984962,-5.94512E-17,0.736986,0.675908,-1.52561E-16,0.736939,0.675959,-1.27021E-16,0.736939,0.675959,-1.27021E-16,0.736939,0.675959,-1.27021E-16,0.737002,0.675891,2.3715E-16,-0.171091,0.983376,-0.0608283,-0.578474,0.766898,-0.277913,-0.604532,0.746481,0.278041,-0.279638,0.957725,0.0675681,-0.282782,0.95686,-0.06674,-0.602838,0.748917,-0.275154,-0.570624,0.769379,0.287131,-0.166971,0.98378,0.0655548,0.614894,0.745503,0.257159,0.688401,0.722576,0.063153,0.596868,0.762994,-0.248171,0.690164,0.720602,-0.066387,0.686427,0.723405,0.0741838,0.581392,0.773415,0.25261,0.61989,0.743338,-0.251366,0.69122,0.720238,-0.0589159,-0.939114,0.244849,-0.241066,-0.93946,0.255624,0.22819,0.938033,0.257663,0.23174,0.939072,0.268771,-0.214258,-0.940235,0.239351,0.242216,0.94057,0.270737,0.205012,0.938244,0.255694,-0.233063,-0.939645,0.253678,-0.229595,0.878319,0.462419,-0.121345,0.883233,0.455258,0.112426,0.959562,-0.177807,0.218234,0.950415,-0.184876,-0.250064,-0.882669,0.45861,0.102822,-0.88395,0.457927,-0.0945306,-0.958366,-0.18972,-0.213405,-0.952717,-0.193523,0.234263,0.88224,0.458083,-0.108689,0.880643,0.45801,0.121221,0.953874,-0.180508,0.239878,0.959825,-0.175998,-0.218541,-0.884672,0.455792,0.0980252,-0.881334,0.462425,-0.0970216,-0.952996,-0.191789,-0.234552,-0.957989,-0.188197,0.216425,0.0033597,0.923872,-0.382687,0.0033597,0.923872,-0.382687,0.0050198,0.809592,0.586972,0.0050198,0.809592,0.586972,0.0050198,0.809592,0.586972,0.0050198,0.809592,0.586972,0.0050198,0.809592,0.586972,0.00325288,0.924831,0.380364,0.00325288,0.924831,0.380364,0.00325288,0.924831,0.380364,0.00325288,0.924831,0.380364,0.00325288,0.924831,0.380364,0.00325288,0.924831,0.380364,0.370935,0.928659,1.22048E-16,0.370935,0.928659,0.0,0.370935,0.928659,0.0,0.370935,0.928659,0.0,0.370935,0.928659,-1.21429E-16,0.492765,0.870163,-2.70659E-16,0.492765,0.870163,0.0,0.492765,0.870163,0.0};
			return value;
		}
		private double[] getNormal_6_1015_vector_24()
		{
			double[] value = {0.492765,0.870163,0.0,0.492765,0.870163,0.0,0.492765,0.870163,0.0,0.492765,0.870163,0.0,0.492765,0.870163,0.0,0.492765,0.870163,2.70659E-16,0.492765,0.870163,-2.02994E-16,0.492765,0.870163,0.0,0.492765,0.870163,0.0,0.492765,0.870163,0.0,0.492765,0.870163,0.0,0.492765,0.870163,0.0,0.492765,0.870163,0.0,0.492765,0.870163,0.0,0.492765,0.870163,2.02994E-16,0.560027,0.828474,1.87188E-4,0.560027,0.828474,1.87188E-4,0.560027,0.828474,1.87188E-4,0.560027,0.828474,1.87188E-4,0.560027,0.828474,1.87188E-4,0.560027,0.828474,1.87188E-4,0.560027,0.828474,1.87188E-4,0.560027,0.828474,1.87188E-4,0.560027,0.828474,1.87188E-4,0.530625,0.728001,-0.43411,0.237642,0.613545,-0.753053,0.340524,0.933992,0.108175,0.0638234,0.854517,0.515487,0.320052,0.850858,0.416662,0.318805,0.869188,-0.37799,0.271211,0.962431,0.0130822,0.772173,0.635408,0.00251768,0.77138,0.63637,0.00238499,0.77918,0.62679,0.00364237,0.401266,0.915915,0.00921465,0.359035,0.93327,0.0100319,0.401893,0.91564,0.00923086,0.358978,0.933209,0.0160177,0.402643,0.915239,0.0146916,0.360602,0.93258,0.0161794,0.847013,0.531557,0.00389634,0.732457,0.680758,0.00868238,0.665296,0.746483,0.0120089,0.665724,0.746133,0.00983316,0.731909,0.681374,0.00614842,0.846343,0.532626,0.00364542,0.845808,0.533477,0.00343521,0.731084,0.682262,0.00593851,0.664405,0.747335,0.00756117,0.730688,0.682688,0.00567665,0.845319,0.534254,0.0029746,0.851943,0.523616,0.00435471,0.730097,0.683321,0.00557084,0.706289,0.681242,0.192523,0.591043,0.758811,0.273632,0.7338,0.67931,0.00865045,0.847802,0.530299,0.00378836,0.690055,0.671171,-0.270839,0.707519,0.685313,-0.172521,0.667453,0.744554,0.0120614,0.641561,0.600787,0.476922,0.247602,0.511805,0.822648,0.288189,0.320549,0.902328,0.710822,0.393097,0.583272,0.65622,0.567273,-0.49757,0.258614,0.439352,-0.860284,0.291438,0.233054,-0.927766,0.723286,0.343002,-0.599339,0.893512,0.449018,0.00434249,0.89351,0.449022,0.00439178,0.89352,0.449002,0.00436141,0.89352,0.449003,0.00436296,0.752019,0.563912,-0.341278,0.823338,0.371025,-0.429482,0.893504,0.449034,0.00436326,0.893502,0.449038,0.00436173,0.811238,0.404236,0.422477,0.740308,0.58603,0.329412};
			return value;
		}

		/** Large attribute array: IndexedFaceSet coordIndex field, scene-graph level=5, element #22, 952 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 getIndexedFaceSet_5_22_coordIndex()
		{
			MFInt32 IndexedFaceSet_5_22_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_22_coordIndex_1()));
			return IndexedFaceSet_5_22_coordIndex;
		}
		/** Large attribute array: IndexedFaceSet normalIndex field, scene-graph level=5, element #22, 952 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 getIndexedFaceSet_5_22_normalIndex()
		{
			MFInt32 IndexedFaceSet_5_22_normalIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_22_normalIndex_1()));
			return IndexedFaceSet_5_22_normalIndex;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=6, element #22, 384 total numbers made up of 128 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 getCoordinate_6_22_point()
		{
			MFVec3f Coordinate_6_22_point = new MFVec3f()/*2.finalize*/
				.append(new MFVec3f(getCoordinate_6_22_point_1()))
				.append(new MFVec3f(getCoordinate_6_22_point_2()));
			return Coordinate_6_22_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #23, 384 total numbers made up of 128 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 getNormal_6_23_vector()
		{
			MFVec3f Normal_6_23_vector = new MFVec3f()/*2.finalize*/
				.append(new MFVec3f(getNormal_6_23_vector_1()))
				.append(new MFVec3f(getNormal_6_23_vector_2()));
			return Normal_6_23_vector;
		}
		/** Large attribute array: IndexedFaceSet coordIndex field, scene-graph level=5, element #28, 824 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 getIndexedFaceSet_5_28_coordIndex()
		{
			MFInt32 IndexedFaceSet_5_28_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_28_coordIndex_1()));
			return IndexedFaceSet_5_28_coordIndex;
		}
		/** Large attribute array: IndexedFaceSet normalIndex field, scene-graph level=5, element #28, 824 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 getIndexedFaceSet_5_28_normalIndex()
		{
			MFInt32 IndexedFaceSet_5_28_normalIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_28_normalIndex_1()));
			return IndexedFaceSet_5_28_normalIndex;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=6, element #28, 336 total numbers made up of 112 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 getCoordinate_6_28_point()
		{
			MFVec3f Coordinate_6_28_point = new MFVec3f()/*2.finalize*/
				.append(new MFVec3f(getCoordinate_6_28_point_1()))
				.append(new MFVec3f(getCoordinate_6_28_point_2()));
			return Coordinate_6_28_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #29, 336 total numbers made up of 112 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 getNormal_6_29_vector()
		{
			MFVec3f Normal_6_29_vector = new MFVec3f()/*2.finalize*/
				.append(new MFVec3f(getNormal_6_29_vector_1()))
				.append(new MFVec3f(getNormal_6_29_vector_2()));
			return Normal_6_29_vector;
		}
		/** Large attribute array: IndexedFaceSet coordIndex field, scene-graph level=5, element #34, 644 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 getIndexedFaceSet_5_34_coordIndex()
		{
			MFInt32 IndexedFaceSet_5_34_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_34_coordIndex_1()));
			return IndexedFaceSet_5_34_coordIndex;
		}
		/** Large attribute array: IndexedFaceSet normalIndex field, scene-graph level=5, element #34, 644 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 getIndexedFaceSet_5_34_normalIndex()
		{
			MFInt32 IndexedFaceSet_5_34_normalIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_34_normalIndex_1()));
			return IndexedFaceSet_5_34_normalIndex;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=6, element #34, 318 total numbers made up of 106 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 getCoordinate_6_34_point()
		{
			MFVec3f Coordinate_6_34_point = new MFVec3f()/*2.finalize*/
				.append(new MFVec3f(getCoordinate_6_34_point_1()))
				.append(new MFVec3f(getCoordinate_6_34_point_2()));
			return Coordinate_6_34_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #35, 318 total numbers made up of 106 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 getNormal_6_35_vector()
		{
			MFVec3f Normal_6_35_vector = new MFVec3f()/*2.finalize*/
				.append(new MFVec3f(getNormal_6_35_vector_1()))
				.append(new MFVec3f(getNormal_6_35_vector_2()));
			return Normal_6_35_vector;
		}
		/** Large attribute array: IndexedFaceSet coordIndex field, scene-graph level=5, element #40, 648 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 getIndexedFaceSet_5_40_coordIndex()
		{
			MFInt32 IndexedFaceSet_5_40_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_40_coordIndex_1()));
			return IndexedFaceSet_5_40_coordIndex;
		}
		/** Large attribute array: IndexedFaceSet normalIndex field, scene-graph level=5, element #40, 648 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 getIndexedFaceSet_5_40_normalIndex()
		{
			MFInt32 IndexedFaceSet_5_40_normalIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_40_normalIndex_1()));
			return IndexedFaceSet_5_40_normalIndex;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=6, element #40, 267 total numbers made up of 89 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 getCoordinate_6_40_point()
		{
			MFVec3f Coordinate_6_40_point = new MFVec3f(new double[] {6.78533,1.13287,1.37006,6.78533,1.15519,1.37006,6.78533,1.15474,1.38067,6.78533,1.14815,1.39129,6.78533,1.14676,1.41251,6.78533,1.14597,1.43374,6.78533,1.14597,1.44277,6.78533,1.13287,1.44277,6.82837,1.13287,1.37006,6.82837,1.15519,1.37006,6.78759,1.13287,1.44277,6.80255,1.13287,1.44277,6.81115,1.13287,1.44277,6.82642,1.13287,1.44277,6.82837,1.13287,1.44277,6.82837,1.15519,1.33311,6.82837,1.15519,1.29616,6.82837,1.15519,1.25921,6.78533,1.15519,1.25921,6.78533,1.15519,1.29616,6.78533,1.15519,1.33311,6.78533,1.16043,1.37028,6.78533,1.15999,1.3809,6.69852,1.15519,1.33311,6.69852,1.15519,1.37006,6.69852,1.16043,1.37028,6.82837,1.14597,1.44277,6.82837,1.14597,1.43374,6.82837,1.14676,1.41251,6.82837,1.14815,1.39129,6.82837,1.15474,1.38067,6.82837,1.15999,1.3809,6.82837,1.16043,1.37028,6.82837,1.16043,1.24014,6.82837,1.15519,1.22226,6.78533,1.14787,1.45364,6.78533,1.13097,1.45364,6.78759,1.13097,1.45364,6.82642,1.14597,1.44277,6.81115,1.14597,1.44277,6.80255,1.14597,1.44277,6.78759,1.14597,1.44277,6.78759,1.14787,1.45364,6.82837,1.13097,1.45364,6.82837,1.14787,1.45364,6.82642,1.14787,1.45364,6.82642,1.13097,1.45364,6.78533,1.16043,1.33304,6.78533,1.16043,1.31822,6.78533,1.16043,1.2922,6.78533,1.16043,1.26617,6.78533,1.16043,1.24014,6.7911,1.16071,1.24014,6.7911,1.16071,1.37028,6.82261,1.16071,1.37028,6.82261,1.16071,1.24014,6.70251,1.16035,1.36857,6.78134,1.16035,1.36857,6.78134,1.16035,1.33476,6.83204,1.15519,1.18531,6.83204,1.16043,1.18553,6.81402,1.16043,1.18553,6.79968,1.16043,1.18553,6.78167,1.16043,1.18553,6.78167,1.15519,1.18531,6.78533,1.15519,1.22226,6.78533,1.19528,1.24014,6.82837,1.19528,1.24014,6.82359,1.19528,1.22194,6.81881,1.19528,1.20374,6.81402,1.19528,1.18553,6.79968,1.19528,1.18553,6.79489,1.19528,1.20374,6.79011,1.19528,1.22194,6.69852,1.16043,1.33304,6.83691,1.19931,1.18553,6.7768,1.19931,1.18553,6.83043,1.19931,1.20374,6.78533,1.19931,1.24014,6.82837,1.19931,1.24014,6.82359,1.19931,1.22194,6.79011,1.19931,1.22194,6.78327,1.19931,1.20374,6.70251,1.16035,1.33476,6.70251,1.19918,1.36857,6.78134,1.19918,1.36857,6.78995,1.19918,1.36857,6.78995,1.16035,1.36857,6.78995,1.16035,1.33476});
			return Coordinate_6_40_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #41, 267 total numbers made up of 89 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 getNormal_6_41_vector()
		{
			MFVec3f Normal_6_41_vector = new MFVec3f(new double[] {-0.688247,-0.688247,-0.229416,-0.437526,-0.887342,0.145583,-0.750817,0.191524,0.632133,-0.458145,0.846373,0.271582,-0.554734,0.831123,0.0387978,-0.707168,0.706922,0.0131979,-0.601441,0.795925,-0.0690788,-0.708284,-0.701226,-0.0813378,0.96225,-0.19245,-0.19245,0.937043,-0.156174,-0.312348,0.380955,-0.568585,0.729099,0.0,-1.0,2.39329E-15,0.0,-1.0,3.12479E-15,-0.542412,-0.809564,0.224489,0.448557,-0.890408,-0.0772668,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,-0.707107,-0.707107,0.0,-1.0,2.86287E-13,0.0,-0.66471,-0.341172,-0.664652,-0.149389,0.950987,0.270751,-0.81652,0.390701,0.425026,-0.66471,-0.669119,-0.332326,-0.569408,-0.593401,0.568902,-0.586689,0.56783,0.577378,0.800959,0.594731,-0.0689959,0.447276,0.89424,0.0166951,0.554734,0.830726,0.0465366,0.839699,0.517084,0.16592,0.603979,0.500369,0.620355,0.577384,0.552551,0.601095,0.500209,0.715586,0.487574,0.968196,0.206706,0.140956,0.642043,-0.766045,0.0309004,-0.841002,0.414213,0.348056,-0.433923,-0.427437,0.7931,0.433923,-0.854874,0.284431,-0.433928,0.427439,0.793097,0.0,0.0,1.0,0.0,0.0,1.0,0.613666,0.60449,0.507942,0.613666,0.60449,0.507942,0.894427,-0.440529,-0.0770355,0.707107,0.696534,-0.121823,-0.707107,0.696534,-0.121823,-0.447214,-0.881057,-0.154071,-0.189113,0.971116,-0.145499,-0.0474351,0.998874,0.0,-0.0474351,0.998874,0.0,-0.0474351,0.998874,0.0,-0.980593,0.195982,0.00537089,-0.0474351,0.998874,0.0,-0.0335417,0.706311,0.707107,0.0335417,0.706311,0.707107,0.0474351,0.998874,0.0,0.00903475,0.809722,0.586744,-0.0223047,0.998403,-0.0519079,-0.0445871,0.997655,0.0519188,0.403668,-0.447913,-0.797764,0.581487,0.605582,-0.543271,0.271521,0.304267,-0.913071,-0.21523,0.241187,-0.946311,-0.696962,0.303644,-0.64965,-0.602605,-0.582695,-0.545284,-0.574391,-0.817966,0.0317266,-0.791868,0.0,0.610692,0.791868,0.0,0.610692,0.967164,-1.22107E-5,-0.254155,0.869859,-0.460144,-0.177801,0.443053,-0.350365,-0.825196,-0.607645,-0.480524,-0.632348,-0.790839,-0.575658,-0.207826,-0.968848,-0.219064,-0.115518,-0.259667,0.80765,-0.529409,0.124033,0.729247,-0.672915,-0.0888777,0.0087347,-0.996004,0.688603,-0.720506,0.0818328,-0.433247,0.447951,0.782072,0.412713,0.853441,0.318286,0.831056,0.53117,-0.16494,-0.690845,0.722021,-0.0376729,-0.835238,0.5378,0.114668,0.00743527,0.999372,0.0346421,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,-0.894427,0.447214,0.0,-1.0,0.0});
			return Normal_6_41_vector;
		}
		/** Large attribute array: IndexedFaceSet coordIndex field, scene-graph level=5, element #46, 532 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 getIndexedFaceSet_5_46_coordIndex()
		{
			MFInt32 IndexedFaceSet_5_46_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_46_coordIndex_1()));
			return IndexedFaceSet_5_46_coordIndex;
		}
		/** Large attribute array: IndexedFaceSet normalIndex field, scene-graph level=5, element #46, 532 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 getIndexedFaceSet_5_46_normalIndex()
		{
			MFInt32 IndexedFaceSet_5_46_normalIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_46_normalIndex_1()));
			return IndexedFaceSet_5_46_normalIndex;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=6, element #46, 222 total numbers made up of 74 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 getCoordinate_6_46_point()
		{
			MFVec3f Coordinate_6_46_point = new MFVec3f(new double[] {6.78596,1.09168,1.35954,6.82774,1.09168,1.35954,6.82774,1.09489,1.35954,6.82252,1.09489,1.35954,6.81729,1.09489,1.35954,6.81207,1.09489,1.35954,6.80685,1.09489,1.35954,6.80163,1.09489,1.35954,6.79641,1.09489,1.35954,6.79118,1.09489,1.35954,6.78596,1.09489,1.35954,6.78074,1.09168,1.36477,6.78074,1.09168,1.36999,6.78074,1.09168,1.37521,6.78074,1.09168,1.38043,6.78074,1.09168,1.38565,6.78074,1.09168,1.39088,6.78074,1.09168,1.3961,6.78074,1.09168,1.40132,6.78074,1.09168,1.40654,6.78596,1.09168,1.41177,6.79118,1.09168,1.41177,6.79641,1.09168,1.41177,6.80163,1.09168,1.41177,6.80685,1.09168,1.41177,6.81207,1.09168,1.41177,6.81729,1.09168,1.41177,6.82252,1.09168,1.41177,6.82774,1.09168,1.41177,6.83296,1.09168,1.40654,6.83296,1.09168,1.40132,6.83296,1.09168,1.3961,6.83296,1.09168,1.39088,6.83296,1.09168,1.38565,6.83296,1.09168,1.38043,6.83296,1.09168,1.37521,6.83296,1.09168,1.36999,6.83296,1.09168,1.36477,6.78074,1.09489,1.36477,6.83296,1.09489,1.36477,6.78074,1.09489,1.36999,6.78074,1.09489,1.37521,6.78074,1.09489,1.38043,6.78074,1.09489,1.38565,6.78074,1.09489,1.39088,6.78074,1.09489,1.3961,6.78074,1.09489,1.40132,6.78074,1.09489,1.40654,6.78596,1.09489,1.41177,6.83296,1.09489,1.36999,6.83296,1.09489,1.37521,6.83296,1.09489,1.38043,6.83296,1.09489,1.38565,6.83296,1.09489,1.39088,6.83296,1.09489,1.3961,6.83296,1.09489,1.40132,6.83296,1.09489,1.40654,6.82774,1.09489,1.41177,6.82252,1.09489,1.41177,6.81729,1.09489,1.41177,6.81207,1.09489,1.41177,6.80685,1.09489,1.41177,6.80163,1.09489,1.41177,6.79641,1.09489,1.41177,6.79118,1.09489,1.41177,6.78596,1.09168,1.35954,6.79118,1.09168,1.35954,6.79641,1.09168,1.35954,6.80163,1.09168,1.35954,6.80685,1.09168,1.35954,6.81207,1.09168,1.35954,6.81729,1.09168,1.35954,6.82252,1.09168,1.35954,6.82774,1.09168,1.35954});
			return Coordinate_6_46_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #47, 222 total numbers made up of 74 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 getNormal_6_47_vector()
		{
			MFVec3f Normal_6_47_vector = new MFVec3f(new double[] {-0.0488108,-0.93189,-0.359441,0.475963,-0.336557,-0.81252,0.237982,0.336557,-0.911095,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,-0.026128,0.997666,-0.0630786,-0.992134,-0.102207,-0.0722713,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,-0.70196,-0.581522,0.411198,-0.0711648,-0.201284,0.976944,0.0,-1.0,0.0,0.0,-1.0,-6.36229E-15,0.0,-1.0,-6.36229E-15,0.0,-1.0,0.0,0.0,-1.0,-1.27246E-14,0.0,-1.0,-1.27246E-14,0.0,-1.0,0.0,0.411198,-0.581522,0.70196,0.787122,-0.581522,0.205599,0.707107,-0.707107,0.0,0.707107,-0.707107,0.0,0.707107,-0.707107,0.0,0.707107,-0.707107,0.0,0.707107,-0.707107,0.0,0.707107,-0.707107,0.0,0.707107,-0.707107,0.0,0.626943,-0.73451,-0.259688,-0.81252,0.336557,-0.475963,0.973436,0.186944,-0.132189,-0.707107,0.707107,0.0,-0.707107,0.707107,0.0,-0.707107,0.707107,0.0,-0.707107,0.707107,0.0,-0.707107,0.707107,0.0,-0.707107,0.707107,0.0,-0.707107,0.707107,0.0,-0.787122,0.581522,0.205599,-0.411198,0.581522,0.70196,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.70196,0.581522,0.411198,0.205599,0.581522,0.787122,0.0,0.707107,0.707107,0.0,0.707107,0.707107,0.0,0.707107,0.707107,0.0,0.707107,0.707107,0.0,0.707107,0.707107,0.0,0.707107,0.707107,0.0,0.707107,0.707107,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0});
			return Normal_6_47_vector;
		}
		/** Large attribute array: IndexedFaceSet coordIndex field, scene-graph level=5, element #52, 532 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 getIndexedFaceSet_5_52_coordIndex()
		{
			MFInt32 IndexedFaceSet_5_52_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_52_coordIndex_1()));
			return IndexedFaceSet_5_52_coordIndex;
		}
		/** Large attribute array: IndexedFaceSet normalIndex field, scene-graph level=5, element #52, 532 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 getIndexedFaceSet_5_52_normalIndex()
		{
			MFInt32 IndexedFaceSet_5_52_normalIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_52_normalIndex_1()));
			return IndexedFaceSet_5_52_normalIndex;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=6, element #52, 222 total numbers made up of 74 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 getCoordinate_6_52_point()
		{
			MFVec3f Coordinate_6_52_point = new MFVec3f(new double[] {6.78805,1.09395,1.36216,6.82565,1.09395,1.36216,6.82565,1.099,1.36216,6.82095,1.099,1.36216,6.81625,1.099,1.36216,6.81155,1.099,1.36216,6.80685,1.099,1.36216,6.80215,1.099,1.36216,6.79745,1.099,1.36216,6.79275,1.099,1.36216,6.78805,1.099,1.36216,6.78335,1.09395,1.36686,6.78335,1.09395,1.37156,6.78335,1.09395,1.37625,6.78335,1.09395,1.38095,6.78335,1.09395,1.38565,6.78335,1.09395,1.39035,6.78335,1.09395,1.39505,6.78335,1.09395,1.39975,6.78335,1.09395,1.40445,6.78805,1.09395,1.40915,6.79275,1.09395,1.40915,6.79745,1.09395,1.40915,6.80215,1.09395,1.40915,6.80685,1.09395,1.40915,6.81155,1.09395,1.40915,6.81625,1.09395,1.40915,6.82095,1.09395,1.40915,6.82565,1.09395,1.40915,6.83035,1.09395,1.40445,6.83035,1.09395,1.39975,6.83035,1.09395,1.39505,6.83035,1.09395,1.39035,6.83035,1.09395,1.38565,6.83035,1.09395,1.38095,6.83035,1.09395,1.37625,6.83035,1.09395,1.37156,6.83035,1.09395,1.36686,6.78335,1.099,1.36686,6.83035,1.099,1.36686,6.78335,1.099,1.37156,6.78335,1.099,1.37625,6.78335,1.099,1.38095,6.78335,1.099,1.38565,6.78335,1.099,1.39035,6.78335,1.099,1.39505,6.78335,1.099,1.39975,6.78335,1.099,1.40445,6.78805,1.099,1.40915,6.83035,1.099,1.37156,6.83035,1.099,1.37625,6.83035,1.099,1.38095,6.83035,1.099,1.38565,6.83035,1.099,1.39035,6.83035,1.099,1.39505,6.83035,1.099,1.39975,6.83035,1.099,1.40445,6.82565,1.099,1.40915,6.82095,1.099,1.40915,6.81625,1.099,1.40915,6.81155,1.099,1.40915,6.80685,1.099,1.40915,6.80215,1.099,1.40915,6.79745,1.099,1.40915,6.79275,1.099,1.40915,6.78805,1.09395,1.36216,6.79275,1.09395,1.36216,6.79745,1.09395,1.36216,6.80215,1.09395,1.36216,6.80685,1.09395,1.36216,6.81155,1.09395,1.36216,6.81625,1.09395,1.36216,6.82095,1.09395,1.36216,6.82565,1.09395,1.36216});
			return Coordinate_6_52_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #53, 222 total numbers made up of 74 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 getNormal_6_53_vector()
		{
			MFVec3f Normal_6_53_vector = new MFVec3f(new double[] {-0.0488108,-0.93189,-0.359441,0.475963,-0.336557,-0.81252,0.237982,0.336557,-0.911095,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,-0.026128,0.997666,-0.0630786,-0.992134,-0.102207,-0.0722713,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,-0.70196,-0.581522,0.411198,-0.0711648,-0.201284,0.976944,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,-1.5707E-14,0.0,-1.0,-1.5707E-14,0.411198,-0.581522,0.70196,0.787122,-0.581522,0.205599,0.707107,-0.707107,0.0,0.707107,-0.707107,0.0,0.707107,-0.707107,0.0,0.707107,-0.707107,0.0,0.707107,-0.707107,0.0,0.707107,-0.707107,0.0,0.707107,-0.707107,0.0,0.626943,-0.73451,-0.259688,-0.81252,0.336557,-0.475963,0.973436,0.186944,-0.132189,-0.707107,0.707107,0.0,-0.707107,0.707107,0.0,-0.707107,0.707107,0.0,-0.707107,0.707107,0.0,-0.707107,0.707107,0.0,-0.707107,0.707107,0.0,-0.707107,0.707107,0.0,-0.787122,0.581522,0.205599,-0.411198,0.581522,0.70196,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.70196,0.581522,0.411198,0.205599,0.581522,0.787122,0.0,0.707107,0.707107,0.0,0.707107,0.707107,0.0,0.707107,0.707107,0.0,0.707107,0.707107,0.0,0.707107,0.707107,0.0,0.707107,0.707107,0.0,0.707107,0.707107,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0});
			return Normal_6_53_vector;
		}
		/** Large attribute array: IndexedFaceSet coordIndex field, scene-graph level=5, element #58, 496 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 getIndexedFaceSet_5_58_coordIndex()
		{
			MFInt32 IndexedFaceSet_5_58_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_58_coordIndex_1()));
			return IndexedFaceSet_5_58_coordIndex;
		}
		/** Large attribute array: IndexedFaceSet normalIndex field, scene-graph level=5, element #58, 496 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 getIndexedFaceSet_5_58_normalIndex()
		{
			MFInt32 IndexedFaceSet_5_58_normalIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_58_normalIndex_1()));
			return IndexedFaceSet_5_58_normalIndex;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=6, element #58, 192 total numbers made up of 64 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 getCoordinate_6_58_point()
		{
			MFVec3f Coordinate_6_58_point = new MFVec3f(new double[] {6.80622,0.847865,1.30948,6.80892,0.848066,1.30898,6.80892,0.834923,1.30373,6.80622,0.834722,1.30423,6.80351,0.848066,1.30898,6.80351,1.02253,1.37858,6.80622,1.02233,1.37908,6.80351,0.834923,1.30373,6.80892,1.02253,1.37858,6.81122,0.848633,1.30755,6.81122,0.83549,1.30231,6.81122,1.0231,1.37716,6.81275,0.849485,1.30542,6.81275,0.836341,1.30018,6.81275,1.02395,1.37502,6.81329,0.850487,1.30291,6.81329,0.837344,1.29766,6.81329,1.02495,1.37251,6.81275,0.851491,1.30039,6.81275,0.838348,1.29515,6.81275,1.02595,1.36999,6.81122,0.852341,1.29826,6.81122,0.839198,1.29301,6.81122,1.0268,1.36786,6.80892,0.85291,1.29683,6.80892,0.839767,1.29159,6.80892,1.02737,1.36644,6.80622,0.853109,1.29633,6.80622,0.839966,1.29109,6.80622,1.02757,1.36594,6.80351,0.85291,1.29683,6.80351,0.839767,1.29159,6.80351,1.02737,1.36644,6.80121,0.852341,1.29826,6.80121,0.839198,1.29301,6.80121,1.0268,1.36786,6.79968,0.851491,1.30039,6.79968,0.838348,1.29515,6.79968,1.02595,1.36999,6.79914,0.850487,1.30291,6.79914,0.837344,1.29766,6.79914,1.02495,1.37251,6.79968,0.849485,1.30542,6.79968,0.836341,1.30018,6.79968,1.02395,1.37502,6.80121,0.848633,1.30755,6.80121,0.83549,1.30231,6.80121,1.0231,1.37716,6.80622,1.09454,1.37984,6.80892,1.09454,1.3793,6.81122,1.09454,1.37777,6.80351,1.09454,1.3793,6.80121,1.09454,1.37777,6.79968,1.09454,1.37547,6.79914,1.09453,1.37276,6.79968,1.09452,1.37005,6.80121,1.09452,1.36776,6.80351,1.09452,1.36623,6.80622,1.09451,1.36569,6.80892,1.09452,1.36623,6.81122,1.09452,1.36776,6.81275,1.09452,1.37005,6.81329,1.09453,1.37276,6.81275,1.09454,1.37547});
			return Coordinate_6_58_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #59, 192 total numbers made up of 64 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 getNormal_6_59_vector()
		{
			MFVec3f Normal_6_59_vector = new MFVec3f(new double[] {5.36659E-5,-0.370574,0.928803,0.442953,-0.332248,0.832709,0.303734,-0.630627,0.714181,7.48299E-6,-0.971269,-0.237986,-0.382595,-0.342401,0.858127,-0.408511,-0.20201,0.890118,-0.0403113,-0.156711,0.986821,-0.370785,-0.561144,0.740024,0.355473,-0.158107,0.921217,0.752277,-0.244141,0.611943,0.545114,-0.752029,0.370544,0.674934,-0.171462,0.71768,0.947142,-0.118878,0.297978,0.741912,-0.657256,0.132592,0.896078,-0.0840693,0.435864,0.997812,0.0244992,-0.0614081,0.825774,-0.541663,-0.157157,0.997879,-0.0124951,0.063889,0.896476,0.164192,-0.411548,0.783874,-0.422981,-0.454564,0.946354,0.0598716,-0.317538,0.658681,0.27882,-0.698856,0.622549,-0.319271,-0.714492,0.750722,0.122898,-0.649086,0.320765,0.350981,-0.879729,0.366583,-0.246385,-0.897169,0.442292,0.167378,-0.881115,-0.066136,0.369751,-0.926774,0.0547957,-0.215341,-0.975,0.0673751,0.186338,-0.980173,-0.44291,0.332233,-0.832738,-0.265382,-0.230857,-0.936097,-0.318384,0.17661,-0.931365,-0.75239,0.244096,-0.611822,-0.545213,-0.290633,-0.786305,-0.656961,0.139947,-0.740822,-0.947213,0.118803,-0.297782,-0.742037,-0.385534,-0.548401,-0.896169,0.0823333,-0.436007,-0.997807,-0.024525,0.0614747,-0.825781,-0.501078,-0.258856,-0.997884,0.0122825,-0.0638439,-0.89659,-0.164104,0.411334,-0.783895,-0.6197,0.0384804,-0.946401,-0.0605637,0.317264,-0.658868,-0.278769,0.698699,-0.62263,-0.723322,0.298559,-0.750988,-0.125746,0.648232,0.058705,0.31242,0.948128,0.0531565,0.990572,0.126257,0.675173,0.241557,0.696988,-0.26329,0.556566,0.78798,-0.540425,0.558403,0.629386,-0.738945,0.560313,0.374179,-0.825557,0.561377,0.0575447,-0.782343,0.561161,-0.270255,-0.616271,0.560116,-0.553607,-0.35809,0.55894,-0.747902,-0.0508999,0.558532,-0.82792,0.261741,0.559237,-0.786604,0.537734,0.560612,-0.629727,0.736924,0.561685,-0.376103,0.82523,0.561615,-0.0598692,0.783643,0.560252,0.268367});
			return Normal_6_59_vector;
		}
		/** Large attribute array: IndexedFaceSet coordIndex field, scene-graph level=5, element #64, 464 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 getIndexedFaceSet_5_64_coordIndex()
		{
			MFInt32 IndexedFaceSet_5_64_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_64_coordIndex_1()));
			return IndexedFaceSet_5_64_coordIndex;
		}
		/** Large attribute array: IndexedFaceSet normalIndex field, scene-graph level=5, element #64, 464 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 getIndexedFaceSet_5_64_normalIndex()
		{
			MFInt32 IndexedFaceSet_5_64_normalIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_64_normalIndex_1()));
			return IndexedFaceSet_5_64_normalIndex;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=6, element #64, 192 total numbers made up of 64 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 getCoordinate_6_64_point()
		{
			MFVec3f Coordinate_6_64_point = new MFVec3f(new double[] {6.88329,0.847865,1.39616,6.88379,0.848066,1.39887,6.88903,0.834923,1.39887,6.88853,0.834722,1.39616,6.88379,0.848066,1.39346,6.81418,1.02253,1.39346,6.81368,1.02233,1.39616,6.88903,0.834923,1.39346,6.81418,1.02253,1.39887,6.81561,1.0231,1.40117,6.88521,0.848633,1.40117,6.81774,1.02395,1.4027,6.88734,0.849485,1.4027,6.82025,1.02495,1.40324,6.88986,0.850487,1.40324,6.82277,1.02595,1.4027,6.89237,0.851491,1.4027,6.89451,0.852341,1.40117,6.89975,0.839198,1.40117,6.89762,0.838348,1.4027,6.8249,1.0268,1.40117,6.89593,0.85291,1.39887,6.90117,0.839767,1.39887,6.82633,1.02737,1.39887,6.89643,0.853109,1.39616,6.90167,0.839966,1.39616,6.82683,1.02757,1.39616,6.89593,0.85291,1.39346,6.90117,0.839767,1.39346,6.82633,1.02737,1.39346,6.89451,0.852341,1.39116,6.89975,0.839198,1.39116,6.8249,1.0268,1.39116,6.89237,0.851491,1.38963,6.89762,0.838348,1.38963,6.82277,1.02595,1.38963,6.88986,0.850487,1.38909,6.8951,0.837344,1.38909,6.82025,1.02495,1.38909,6.88734,0.849485,1.38963,6.89259,0.836341,1.38963,6.81774,1.02395,1.38963,6.88521,0.848633,1.39116,6.89046,0.83549,1.39116,6.81561,1.0231,1.39116,6.89046,0.83549,1.40117,6.89259,0.836341,1.4027,6.8951,0.837344,1.40324,6.81293,1.09454,1.39616,6.81346,1.09454,1.39887,6.815,1.09454,1.40117,6.81346,1.09454,1.39346,6.815,1.09454,1.39116,6.81729,1.09454,1.38963,6.82,1.09453,1.38909,6.82271,1.09452,1.38963,6.825,1.09452,1.39116,6.82654,1.09452,1.39346,6.82708,1.09451,1.39616,6.82654,1.09452,1.39887,6.825,1.09452,1.40117,6.82271,1.09452,1.4027,6.82,1.09453,1.40324,6.81729,1.09454,1.4027});
			return Coordinate_6_64_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #65, 192 total numbers made up of 64 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 getNormal_6_65_vector()
		{
			MFVec3f Normal_6_65_vector = new MFVec3f(new double[] {-0.92881,-0.370555,-3.22464E-5,-0.858115,-0.342354,0.382665,-0.649184,-0.740287,0.174747,0.237977,-0.971271,-4.48764E-6,-0.858115,-0.342356,-0.382663,-0.890094,-0.20201,-0.408565,-0.986818,-0.156712,-0.0403992,-0.74003,-0.561099,-0.370841,-0.921208,-0.158108,0.355498,-0.717723,-0.17148,0.674884,-0.611836,-0.244097,0.752379,-0.43564,-0.0840241,0.896191,-0.297859,-0.118834,0.947184,-0.0638921,-0.0124964,0.997879,0.0614081,0.0244994,0.997812,0.317426,0.0598503,0.946392,0.454527,0.181339,0.872079,0.698782,0.278791,0.658771,0.714349,-0.319341,0.622677,0.56221,-0.738687,0.371834,0.648904,0.122863,0.750885,0.879746,0.350988,0.32071,0.897178,-0.246384,0.366561,0.881126,0.16738,0.442267,0.926769,0.369749,-0.0662217,0.975005,-0.21534,0.0547247,0.980178,0.186339,0.0672897,0.832726,0.332229,-0.442935,0.936083,-0.230859,-0.265428,0.931347,0.176606,-0.318439,0.611994,0.244164,-0.752228,0.786367,-0.290595,-0.545144,0.7409,0.139962,-0.656869,0.297898,0.118852,-0.94717,0.548638,-0.385466,-0.741898,0.436222,0.0823747,-0.89606,-0.0614687,-0.024522,-0.997808,0.258884,-0.501075,-0.825774,0.0638439,0.0122825,-0.997884,-0.41153,-0.164179,-0.896487,-0.0385937,-0.619734,-0.783863,-0.317378,-0.0605868,-0.946362,-0.698871,-0.278825,-0.658663,-0.298701,-0.723364,-0.622513,-0.648494,-0.125796,-0.750753,0.370066,-0.929005,2.07183E-4,0.370504,-0.928831,7.33792E-6,0.370625,-0.928783,-1.16511E-4,-0.948125,0.31242,0.0587637,-0.126258,0.990572,0.0531507,-0.696925,0.241567,0.675234,-0.787937,0.55655,-0.263453,-0.629525,0.558394,-0.540273,-0.37436,0.560325,-0.738844,-0.0575447,0.561377,-0.825557,0.270346,0.561173,-0.782303,0.553766,0.560104,-0.616139,0.747894,0.558937,-0.358112,0.827916,0.558532,-0.0509693,0.786617,0.559239,0.261697,0.629656,0.560625,0.537804,0.375923,0.561672,0.737025,0.0598692,0.561615,0.82523,-0.268276,0.56024,0.783683});
			return Normal_6_65_vector;
		}
		/** Large attribute array: IndexedFaceSet coordIndex field, scene-graph level=5, element #70, 456 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 getIndexedFaceSet_5_70_coordIndex()
		{
			MFInt32 IndexedFaceSet_5_70_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_70_coordIndex_1()));
			return IndexedFaceSet_5_70_coordIndex;
		}
		/** Large attribute array: IndexedFaceSet normalIndex field, scene-graph level=5, element #70, 456 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 getIndexedFaceSet_5_70_normalIndex()
		{
			MFInt32 IndexedFaceSet_5_70_normalIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_70_normalIndex_1()));
			return IndexedFaceSet_5_70_normalIndex;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=6, element #70, 192 total numbers made up of 64 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 getCoordinate_6_70_point()
		{
			MFVec3f Coordinate_6_70_point = new MFVec3f(new double[] {6.7278,0.847865,1.3991,6.7273,0.848066,1.4018,6.7969,1.02253,1.4018,6.7974,1.02233,1.3991,6.7969,1.02253,1.39639,6.7273,0.848066,1.39639,6.72588,0.848633,1.39409,6.72063,0.83549,1.39409,6.72206,0.834923,1.39639,6.79548,1.0231,1.39409,6.72374,0.849485,1.39256,6.7185,0.836341,1.39256,6.79335,1.02395,1.39256,6.72123,0.850487,1.39202,6.71599,0.837344,1.39202,6.79083,1.02495,1.39202,6.71871,0.851491,1.39256,6.71347,0.838348,1.39256,6.78832,1.02595,1.39256,6.71658,0.852341,1.39409,6.71134,0.839198,1.39409,6.78619,1.0268,1.39409,6.71516,0.85291,1.39639,6.70991,0.839767,1.39639,6.78476,1.02737,1.39639,6.71466,0.853109,1.3991,6.70941,0.839966,1.3991,6.78426,1.02757,1.3991,6.71516,0.85291,1.4018,6.70991,0.839767,1.4018,6.78476,1.02737,1.4018,6.71658,0.852341,1.4041,6.71134,0.839198,1.4041,6.78619,1.0268,1.4041,6.71871,0.851491,1.40563,6.71347,0.838348,1.40563,6.78832,1.02595,1.40563,6.72123,0.850487,1.40617,6.71599,0.837344,1.40617,6.79083,1.02495,1.40617,6.79335,1.02395,1.40563,6.72374,0.849485,1.40563,6.79548,1.0231,1.4041,6.72588,0.848633,1.4041,6.72256,0.834722,1.3991,6.7185,0.836341,1.40563,6.72063,0.83549,1.4041,6.72206,0.834923,1.4018,6.79816,1.09454,1.39616,6.79762,1.09454,1.39346,6.79609,1.09454,1.39116,6.79762,1.09454,1.39887,6.79609,1.09454,1.40117,6.79379,1.09454,1.4027,6.79109,1.09453,1.40324,6.78838,1.09452,1.4027,6.78608,1.09452,1.40117,6.78455,1.09452,1.39887,6.78401,1.09451,1.39616,6.78455,1.09452,1.39346,6.78608,1.09452,1.39116,6.78838,1.09452,1.38963,6.79109,1.09453,1.38909,6.79379,1.09454,1.38963});
			return Coordinate_6_70_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #71, 192 total numbers made up of 64 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 getNormal_6_71_vector()
		{
			MFVec3f Normal_6_71_vector = new MFVec3f(new double[] {0.928809,-0.370559,3.22128E-5,0.858096,-0.342352,0.38271,0.89175,-0.194688,0.408509,0.987079,-0.155116,0.0401624,0.919633,-0.166736,-0.355632,0.80998,-0.323148,-0.489396,0.611808,-0.244083,-0.752406,0.370562,-0.752011,-0.545126,0.284697,-0.874448,-0.392797,0.714033,-0.18255,-0.675893,0.297849,-0.118826,-0.947189,0.132393,-0.65715,-0.742042,0.43091,-0.102402,-0.896566,-0.061411,0.024501,-0.997812,-0.15715,-0.541663,-0.825775,0.0585852,-0.0333652,-0.997725,-0.411312,0.1641,-0.896601,-0.454463,-0.423004,-0.783921,-0.32199,0.0399633,-0.945899,-0.698789,0.278793,-0.658763,-0.714345,-0.319346,-0.62268,-0.652162,0.10718,-0.750465,-0.879738,0.350981,-0.320739,-0.897193,-0.246374,-0.366532,-0.882888,0.158211,-0.44213,-0.92677,0.369742,0.0662394,-0.975001,-0.215349,-0.0547519,-0.980453,0.184934,-0.0671583,-0.832713,0.332223,0.442964,-0.936075,-0.230863,0.265455,-0.929884,0.183248,0.318962,-0.612007,0.244171,0.752215,-0.786384,-0.290585,0.545124,-0.737564,0.153865,0.657514,-0.29789,0.118848,0.947173,-0.548578,-0.385475,0.741938,-0.431273,0.10148,0.896496,4.23712E-5,-1.75558E-5,1.0,-0.390149,-0.605671,0.693503,-0.0585063,0.0333716,0.997729,0.321917,-0.0410702,0.945877,0.411523,-0.164181,0.89649,0.651476,-0.11078,0.750538,0.698803,-0.278795,0.658748,-0.370429,-0.928861,1.7815E-8,-0.370574,-0.928803,-4.31877E-5,-0.369984,-0.929038,2.66474E-4,-0.369561,-0.929206,4.5469E-4,0.948822,0.310277,-0.0588643,0.126498,0.990537,-0.0532414,0.698738,0.215271,-0.68222,0.783326,0.563897,0.261575,0.622348,0.573477,0.532735,0.370365,0.581122,0.724656,0.0606936,0.584984,0.808771,-0.260935,0.583918,0.768734,-0.542959,0.578335,0.608871,-0.740698,0.569673,0.356146,-0.826855,0.560092,0.0510638,-0.791629,0.551376,-0.263265,-0.638682,0.544604,-0.543591,-0.385267,0.540011,-0.748303,-0.0654888,0.537655,-0.840618,0.268902,0.537764,-0.799063});
			return Normal_6_71_vector;
		}
		/** Large attribute array: IndexedFaceSet coordIndex field, scene-graph level=5, element #76, 384 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 getIndexedFaceSet_5_76_coordIndex()
		{
			MFInt32 IndexedFaceSet_5_76_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_76_coordIndex_1()));
			return IndexedFaceSet_5_76_coordIndex;
		}
		/** Large attribute array: IndexedFaceSet normalIndex field, scene-graph level=5, element #76, 384 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 getIndexedFaceSet_5_76_normalIndex()
		{
			MFInt32 IndexedFaceSet_5_76_normalIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_76_normalIndex_1()));
			return IndexedFaceSet_5_76_normalIndex;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=6, element #76, 150 total numbers made up of 50 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 getCoordinate_6_76_point()
		{
			MFVec3f Coordinate_6_76_point = new MFVec3f(new double[] {6.8283,1.19855,1.19192,6.82803,1.19855,1.19058,6.82803,1.16043,1.19058,6.8283,1.16043,1.19192,6.82803,1.19855,1.19325,6.82728,1.19855,1.19438,6.82615,1.19855,1.19514,6.82481,1.19855,1.1954,6.82348,1.19855,1.19514,6.82235,1.19855,1.19438,6.82159,1.19855,1.19325,6.82132,1.19855,1.19192,6.82159,1.19855,1.19058,6.82235,1.19855,1.18945,6.82348,1.19855,1.18869,6.82481,1.19855,1.18843,6.82615,1.19855,1.18869,6.82728,1.19855,1.18945,6.82803,1.16043,1.19325,6.82728,1.16043,1.18945,6.82615,1.16043,1.18869,6.82481,1.16043,1.18843,6.82348,1.16043,1.18869,6.82235,1.16043,1.18945,6.82159,1.16043,1.19058,6.82132,1.16043,1.19192,6.82159,1.16043,1.19325,6.82235,1.19769,1.19438,6.82235,1.19801,1.19844,6.82235,1.19544,1.19438,6.82235,1.19576,1.19844,6.82235,1.18544,1.19438,6.82235,1.18576,1.19844,6.82235,1.17544,1.19438,6.82235,1.17576,1.19844,6.82235,1.16544,1.19438,6.82235,1.16043,1.19438,6.82615,1.19769,1.19514,6.82728,1.16043,1.19438,6.82615,1.16043,1.19514,6.82615,1.16544,1.19514,6.82615,1.17576,1.1992,6.82615,1.17544,1.19514,6.82615,1.18576,1.1992,6.82615,1.18544,1.19514,6.82615,1.19576,1.1992,6.82615,1.19544,1.19514,6.82615,1.19801,1.1992,6.82348,1.16043,1.19514,6.82481,1.16043,1.1954});
			return Coordinate_6_76_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #77, 150 total numbers made up of 50 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 getNormal_6_77_vector()
		{
			MFVec3f Normal_6_77_vector = new MFVec3f(new double[] {0.26981,0.962914,2.94613E-5,0.848986,0.321149,-0.419627,0.896932,-0.321149,-0.303936,0.138746,-0.990328,1.51501E-5,0.823,0.454165,0.341182,0.614338,0.245855,0.749763,0.171656,0.475987,0.862537,0.0,0.0,0.0,0.0,1.0,6.12192E-13,-0.436593,0.0,0.899659,-0.831148,0.244456,0.499434,-0.825758,0.56134,0.0549593,-0.783809,0.561311,-0.265656,-0.622563,0.561302,-0.545303,-0.366502,0.561333,-0.742012,-0.0545681,0.561281,-0.825824,0.265234,0.561329,-0.783939,0.545223,0.561308,-0.622628,0.895147,-0.24699,0.371091,0.622628,-0.561308,-0.545223,0.366535,-0.561329,-0.741999,0.0546759,-0.561281,-0.825817,-0.265164,-0.561333,-0.78396,-0.545188,-0.561302,-0.622664,-0.74188,-0.561311,-0.366803,-0.82577,-0.56134,-0.0547789,-0.783775,-0.561304,0.265773,-0.713096,0.502938,0.488413,-0.70623,-0.404263,0.581215,-0.893224,0.275568,0.355266,-0.605269,0.124205,0.786271,-0.83796,0.358947,0.411073,-0.60522,0.124209,0.786308,-0.838009,0.358971,0.410951,-0.60528,0.124214,0.786262,-0.708394,-0.0839,0.700813,-0.555489,0.0,0.831524,0.42648,0.244773,0.870748,0.545303,-0.561302,0.622563,0.171656,-0.475987,0.862537,0.289419,-0.108944,0.950983,0.426401,0.820397,0.380961,0.627805,0.0628825,0.775826,0.426269,0.820316,0.381282,0.627755,0.0628818,0.775867,0.426376,0.82038,0.381025,0.729492,-0.171259,0.662202,0.606744,0.755946,0.245779,0.0,-1.0,0.0,0.0,0.0,0.0});
			return Normal_6_77_vector;
		}
		/** Large attribute array: IndexedFaceSet coordIndex field, scene-graph level=5, element #82, 384 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 getIndexedFaceSet_5_82_coordIndex()
		{
			MFInt32 IndexedFaceSet_5_82_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_82_coordIndex_1()));
			return IndexedFaceSet_5_82_coordIndex;
		}
		/** Large attribute array: IndexedFaceSet normalIndex field, scene-graph level=5, element #82, 384 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 getIndexedFaceSet_5_82_normalIndex()
		{
			MFInt32 IndexedFaceSet_5_82_normalIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_82_normalIndex_1()));
			return IndexedFaceSet_5_82_normalIndex;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=6, element #82, 150 total numbers made up of 50 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 getCoordinate_6_82_point()
		{
			MFVec3f Coordinate_6_82_point = new MFVec3f(new double[] {6.79367,1.19855,1.19192,6.7934,1.19855,1.19058,6.7934,1.16043,1.19058,6.79367,1.16043,1.19192,6.7934,1.19855,1.19325,6.79265,1.19855,1.19438,6.79151,1.19855,1.19514,6.79018,1.19855,1.1954,6.78885,1.19855,1.19514,6.78771,1.19855,1.19438,6.78696,1.19855,1.19325,6.78669,1.19855,1.19192,6.78696,1.19855,1.19058,6.78771,1.19855,1.18945,6.78885,1.19855,1.18869,6.79018,1.19855,1.18843,6.79151,1.19855,1.18869,6.79265,1.19855,1.18945,6.7934,1.16043,1.19325,6.79265,1.16043,1.18945,6.79151,1.16043,1.18869,6.79018,1.16043,1.18843,6.78885,1.16043,1.18869,6.78771,1.16043,1.18945,6.78696,1.16043,1.19058,6.78669,1.16043,1.19192,6.78696,1.16043,1.19325,6.78771,1.19769,1.19438,6.78771,1.19801,1.19844,6.78771,1.19544,1.19438,6.78771,1.19576,1.19844,6.78771,1.18544,1.19438,6.78771,1.18576,1.19844,6.78771,1.17544,1.19438,6.78771,1.17576,1.19844,6.78771,1.16544,1.19438,6.78771,1.16043,1.19438,6.79151,1.19769,1.19514,6.79265,1.16043,1.19438,6.79151,1.16043,1.19514,6.79151,1.16544,1.19514,6.79151,1.17576,1.1992,6.79151,1.17544,1.19514,6.79151,1.18576,1.1992,6.79151,1.18544,1.19514,6.79151,1.19576,1.1992,6.79151,1.19544,1.19514,6.79151,1.19801,1.1992,6.78885,1.16043,1.19514,6.79018,1.16043,1.1954});
			return Coordinate_6_82_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #83, 150 total numbers made up of 50 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 getNormal_6_83_vector()
		{
			MFVec3f Normal_6_83_vector = new MFVec3f(new double[] {0.26981,0.962914,2.94613E-5,0.849147,0.321135,-0.419311,0.896992,-0.321135,-0.303773,0.138746,-0.990328,1.51501E-5,0.823104,0.454145,0.340956,0.614155,0.245873,0.749907,0.171446,0.475949,0.8626,0.0,0.0,0.0,0.0,1.0,-3.02094E-13,-0.436645,0.0,0.899634,-0.83128,0.244463,0.49921,-0.825815,0.561281,0.0547118,-0.783967,0.561334,-0.265141,-0.622531,0.561325,-0.545317,-0.366292,0.561312,-0.742132,-0.0546286,0.561287,-0.825816,0.265134,0.56131,-0.783987,0.545113,0.561344,-0.622692,0.895253,-0.246977,0.370843,0.622726,-0.561344,-0.545075,0.366303,-0.56131,-0.742127,0.0546645,-0.561287,-0.825814,-0.26511,-0.561312,-0.783993,-0.545007,-0.561325,-0.622801,-0.742016,-0.561334,-0.366491,-0.825827,-0.561281,-0.0545322,-0.783933,-0.561327,0.265257,-0.713149,0.502938,0.488335,-0.70623,-0.404263,0.581215,-0.893257,0.275563,0.355185,-0.605269,0.124205,0.786271,-0.837996,0.358944,0.411001,-0.60522,0.124209,0.786308,-0.838046,0.358967,0.410879,-0.60528,0.124214,0.786262,-0.708453,-0.0839014,0.700753,-0.555567,0.0,0.831472,0.426264,0.244765,0.870856,0.545193,-0.561337,0.622627,0.171446,-0.475949,0.8626,0.289213,-0.108937,0.951046,0.426401,0.820397,0.380961,0.62763,0.0628838,0.775968,0.426269,0.820316,0.381282,0.62758,0.0628831,0.776008,0.426376,0.82038,0.381025,0.729328,-0.17127,0.66238,0.606744,0.755946,0.245779,0.0,-1.0,0.0,0.0,0.0,0.0});
			return Normal_6_83_vector;
		}
		/** Large attribute array: IndexedFaceSet coordIndex field, scene-graph level=5, element #88, 368 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 getIndexedFaceSet_5_88_coordIndex()
		{
			MFInt32 IndexedFaceSet_5_88_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_88_coordIndex_1()));
			return IndexedFaceSet_5_88_coordIndex;
		}
		/** Large attribute array: IndexedFaceSet normalIndex field, scene-graph level=5, element #88, 368 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 getIndexedFaceSet_5_88_normalIndex()
		{
			MFInt32 IndexedFaceSet_5_88_normalIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_88_normalIndex_1()));
			return IndexedFaceSet_5_88_normalIndex;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=6, element #88, 144 total numbers made up of 48 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 getCoordinate_6_88_point()
		{
			MFVec3f Coordinate_6_88_point = new MFVec3f(new double[] {6.81602,1.1343,1.38786,6.81616,1.1343,1.38418,6.81616,1.11677,1.38418,6.81602,1.11677,1.38786,6.81448,1.1343,1.3912,6.81178,1.1343,1.39369,6.80833,1.1343,1.39497,6.80465,1.1343,1.39482,6.80131,1.1343,1.39328,6.79881,1.1343,1.39058,6.79754,1.1343,1.38713,6.79768,1.1343,1.38345,6.79922,1.1343,1.38011,6.80192,1.1343,1.37761,6.80538,1.1343,1.37634,6.80905,1.1343,1.37649,6.81239,1.1343,1.37803,6.81489,1.1343,1.38073,6.81448,1.11677,1.3912,6.81489,1.11677,1.38073,6.81239,1.11677,1.37803,6.80905,1.11677,1.37649,6.80538,1.11677,1.37634,6.80192,1.11677,1.37761,6.79922,1.11677,1.38011,6.79768,1.11677,1.38345,6.79754,1.11677,1.38713,6.79881,1.11677,1.39058,6.80131,1.11677,1.39328,6.80465,1.11677,1.39482,6.80833,1.11677,1.39497,6.81178,1.11677,1.39369,6.82778,1.09623,1.38832,6.82792,1.09623,1.38464,6.81489,1.09925,1.38073,6.81239,1.09925,1.37803,6.80951,1.09623,1.36473,6.80584,1.09623,1.36458,6.80192,1.09925,1.37761,6.79922,1.09925,1.38011,6.78593,1.09623,1.38299,6.78578,1.09623,1.38667,6.79881,1.09925,1.39058,6.80131,1.09925,1.39328,6.80419,1.09623,1.40658,6.80786,1.09623,1.40673,6.81178,1.09925,1.39369,6.81448,1.09925,1.3912});
			return Coordinate_6_88_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #89, 144 total numbers made up of 48 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 getNormal_6_89_vector()
		{
			MFVec3f Normal_6_89_vector = new MFVec3f(new double[] {0.262369,0.962909,0.0629918,0.923503,0.321154,-0.209767,0.962668,0.255812,-0.0884868,0.940394,0.253571,0.226629,0.720731,0.454178,0.523707,0.47817,0.561311,0.675488,0.183315,0.561311,0.807047,-0.139513,0.56132,0.815755,-0.441148,0.561309,0.700229,-0.675488,0.561311,0.47817,-0.807047,0.561311,0.183315,-0.815755,0.56132,-0.139513,-0.700229,0.561309,-0.441148,-0.47817,0.561311,-0.675488,-0.183315,0.561311,-0.807047,0.139513,0.56132,-0.815755,0.441148,0.561309,-0.700229,0.675488,0.561311,-0.47817,0.733181,0.0618238,0.677218,0.799994,0.0838492,-0.59412,0.640052,0.0,-0.768332,0.424268,0.122102,-0.897267,-0.0884868,0.255812,-0.962668,-0.59412,0.0838492,-0.799994,-0.768332,0.0,-0.640052,-0.897267,0.122102,-0.424268,-0.962668,0.255812,0.0884868,-0.799994,0.0838492,0.59412,-0.640052,0.0,0.768332,-0.424268,0.122102,0.897267,0.0884868,0.255812,0.962668,0.59412,0.0838492,0.799994,0.676891,-0.259249,0.688918,0.61155,-0.542305,-0.576118,0.379008,-0.522712,-0.763626,0.543994,-0.728628,-0.416138,0.50424,-0.397805,-0.766481,-0.57531,-0.0046617,-0.817922,-0.585895,-0.740688,-0.328799,-0.429654,-0.615788,-0.660456,-0.579578,-0.403119,-0.708226,-0.61155,-0.542305,0.576118,-0.379008,-0.522712,0.763626,-0.543994,-0.728628,0.416138,-0.50424,-0.397805,0.766481,0.57531,-0.0046617,0.817922,0.585895,-0.740688,0.328799,0.231497,-0.735808,0.636393});
			return Normal_6_89_vector;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=6, element #94, 135 total numbers made up of 45 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 getCoordinate_6_94_point()
		{
			MFVec3f Coordinate_6_94_point = new MFVec3f(new double[] {6.82785,1.20221,1.35096,6.82785,1.20208,1.35164,6.82612,1.2021,1.35164,6.82612,1.20224,1.35096,6.82612,1.2021,1.35029,6.82785,1.20208,1.35029,6.82784,1.2017,1.35221,6.82612,1.20172,1.35221,6.82784,1.20113,1.35259,6.82611,1.20115,1.35259,6.82783,1.20045,1.35273,6.8261,1.20047,1.35273,6.82782,1.19978,1.35259,6.82609,1.1998,1.35259,6.82781,1.19921,1.35221,6.82763,1.1846,1.35375,6.82764,1.18517,1.3546,6.82591,1.1852,1.3546,6.82781,1.19883,1.35164,6.82763,1.18422,1.35247,6.82781,1.19869,1.35096,6.82763,1.18409,1.35096,6.82781,1.19883,1.35029,6.82763,1.18422,1.34946,6.82781,1.19921,1.34972,6.82763,1.1846,1.34818,6.82782,1.19978,1.34934,6.82764,1.18517,1.34733,6.82783,1.20045,1.3492,6.8261,1.20047,1.3492,6.82609,1.1998,1.34934,6.82591,1.1852,1.34733,6.82784,1.20113,1.34934,6.82611,1.20115,1.34934,6.82784,1.2017,1.34972,6.82612,1.20172,1.34972,6.82248,1.17323,1.35726,6.82248,1.1738,1.3592,6.82076,1.17382,1.3592,6.82247,1.17285,1.35437,6.82247,1.17271,1.35096,6.82247,1.17285,1.34756,6.82248,1.17323,1.34467,6.82248,1.1738,1.34273,6.82076,1.17382,1.34273});
			return Coordinate_6_94_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #95, 135 total numbers made up of 45 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 getNormal_6_95_vector()
		{
			MFVec3f Normal_6_95_vector = new MFVec3f(new double[] {0.0125024,0.999922,-2.16151E-4,0.0113236,0.896246,0.443412,-0.309654,0.900892,0.304151,-0.974333,0.225112,-4.56012E-5,-0.235661,0.89816,-0.371178,0.0118767,0.923616,-0.383135,0.0079992,0.658435,0.752595,-0.553591,0.629375,0.545366,0.00389328,0.320265,0.94732,-0.557075,0.3725,0.742234,-8.47516E-4,-0.0659436,0.997823,-0.560431,0.0616642,0.825902,0.559821,0.0150436,0.828477,-0.803975,-0.0406819,0.59327,0.999923,-0.0123675,-3.62745E-4,0.97754,-0.200174,0.0659253,0.666345,0.0353553,0.744805,-0.523095,0.294419,0.799806,0.999924,-0.0123166,7.24581E-5,0.976485,-0.213706,0.0283948,0.999924,-0.0123434,-3.87041E-5,0.976315,-0.216334,-0.00281746,0.999924,-0.0123227,9.94178E-5,0.977205,-0.209647,-0.0334325,0.999924,-0.0123316,-2.9997E-5,0.97852,-0.192365,-0.0741179,0.24548,-0.0325389,-0.968855,0.68635,0.123361,-0.716732,8.11716E-4,0.0667725,-0.997768,-0.561914,-0.0480441,-0.825799,-0.835597,-0.00615361,-0.549308,-0.75898,0.297787,-0.579026,0.00538161,0.442861,-0.896574,-0.558208,0.27233,-0.783735,0.00933481,0.752004,-0.659092,-0.554636,0.551601,-0.622989,0.918707,-0.373697,0.12778,0.666425,-0.00113962,0.745571,-0.597599,0.518074,0.611943,0.913739,-0.401796,0.0603436,0.911011,-0.412208,0.0119796,0.91204,-0.408651,-0.0344631,0.916368,-0.389909,-0.0907825,0.817489,-0.150861,-0.555836,-0.381061,0.489513,-0.784328});
			return Normal_6_95_vector;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #101, 123 total numbers made up of 41 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 getNormal_6_101_vector()
		{
			MFVec3f Normal_6_101_vector = new MFVec3f(new double[] {0.26978,-0.962922,-9.55108E-6,0.848786,-0.321142,0.420036,0.896758,0.321142,0.304456,0.138729,0.99033,-4.91147E-6,0.822884,-0.454153,-0.341477,0.622541,-0.561305,-0.545325,0.366486,-0.561324,-0.742027,0.0546488,-0.561288,-0.825815,-0.265222,-0.561324,-0.783947,-0.545195,-0.561316,-0.622645,-0.786153,-0.452418,-0.421049,-0.825815,-0.561285,-0.0546679,-0.783936,-0.561333,0.265234,-0.622634,-0.561299,0.545225,-0.366992,-0.561286,0.741805,-0.0550482,-0.561384,0.825723,0.266054,-0.561286,0.783692,0.545231,-0.561288,0.622639,0.895016,0.246982,-0.371411,0.622529,0.561288,0.545356,0.366992,0.561286,0.741805,0.0550482,0.561384,0.825723,-0.266054,0.561286,0.783692,-0.545287,0.561299,0.62258,-0.74198,0.561333,0.366567,-0.825819,0.561285,0.0546098,-0.783947,0.561324,-0.265222,-0.831494,0.0,-0.555533,-0.622645,0.561316,-0.545195,-0.366486,0.561324,-0.742027,-0.0546488,0.561288,-0.825815,0.265222,0.561324,-0.783947,0.545138,0.561305,-0.622704,-0.57735,0.57735,0.57735,-0.408248,-0.816497,0.408248,-0.816497,-0.408248,-0.408248,-0.408248,0.408248,-0.816497,0.57735,0.57735,0.57735,0.666667,-0.333333,0.666667,0.666667,0.666667,-0.333333,0.333333,-0.666667,-0.666667});
			return Normal_6_101_vector;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #107, 120 total numbers made up of 40 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 getNormal_6_107_vector()
		{
			MFVec3f Normal_6_107_vector = new MFVec3f(new double[] {0.26985,0.962902,9.48856E-6,0.849347,0.321145,-0.418898,0.897176,-0.321145,-0.303219,0.138768,-0.990325,4.87939E-6,0.82312,0.4542,0.340844,0.622477,0.561326,0.545377,0.366223,0.561309,0.742168,0.0546098,0.561285,0.825819,-0.265347,0.561341,0.783893,-0.545318,0.561282,0.622568,-0.741893,0.561341,0.366731,-0.825815,0.561285,0.0546679,-0.784013,0.561309,-0.265059,-0.622624,0.561367,-0.545166,-0.366355,0.561242,-0.742153,-0.0550674,0.561381,-0.825723,0.265441,0.561211,-0.783954,0.544477,0.561411,-0.623188,0.89529,-0.247012,0.370729,0.622533,-0.561411,-0.545225,0.365848,-0.561211,-0.742427,0.055009,-0.561381,-0.825727,-0.265729,-0.561242,-0.783834,-0.544855,-0.561367,-0.622897,-0.742168,-0.561309,-0.366223,-0.825819,-0.561285,-0.0546098,-0.783893,-0.561341,0.265347,-0.622568,-0.561282,0.545318,-0.366731,-0.561341,0.741893,-0.0546679,-0.561285,0.825815,0.265059,-0.561309,0.784013,0.544939,-0.561326,0.62286,-0.57735,-0.57735,-0.57735,-0.408248,0.816497,-0.408248,-0.816497,0.408248,0.408248,-0.408248,-0.408248,0.816497,0.57735,-0.57735,-0.57735,0.666667,0.333333,-0.666667,0.666667,-0.666667,0.333333,0.333333,0.666667,0.666667});
			return Normal_6_107_vector;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #113, 120 total numbers made up of 40 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 getNormal_6_113_vector()
		{
			MFVec3f Normal_6_113_vector = new MFVec3f(new double[] {0.269857,0.9629,-4.73769E-5,0.849048,0.321168,-0.419487,0.897054,-0.321168,-0.303553,0.138772,-0.990324,-2.43631E-5,0.823212,0.454206,0.340616,0.622488,0.561343,0.545346,0.366077,0.561299,0.742248,0.0546098,0.561285,0.825819,-0.265272,0.56133,0.783925,-0.545225,0.561299,0.622634,-0.741981,0.561346,0.366544,-0.825836,0.561276,0.0544543,-0.783893,0.561341,-0.265347,-0.622568,0.561282,-0.545318,-0.366731,0.561341,-0.741893,-0.0546679,0.561285,-0.825815,0.265059,0.561309,-0.784013,0.544939,0.561326,-0.62286,0.895392,-0.247016,0.370482,0.622477,-0.561326,-0.545377,0.366223,-0.561309,-0.742168,0.0546098,-0.561285,-0.825819,-0.265347,-0.561341,-0.783893,-0.545318,-0.561282,-0.622568,-0.741893,-0.561341,-0.366731,-0.825816,-0.561276,-0.0547443,-0.78397,-0.561346,0.265109,-0.62258,-0.561299,0.545287,-0.366584,-0.56133,0.741973,-0.0546679,-0.561285,0.825815,0.264984,-0.561299,0.784045,0.544847,-0.561343,0.622925,-0.57735,-0.57735,-0.57735,-0.408248,0.816497,-0.408248,-0.816497,0.408248,0.408248,-0.408248,-0.408248,0.816497,0.57735,-0.57735,-0.57735,0.666667,0.333333,-0.666667,0.666667,-0.666667,0.333333,0.333333,0.666667,0.666667});
			return Normal_6_113_vector;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #119, 120 total numbers made up of 40 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 getNormal_6_119_vector()
		{
			MFVec3f Normal_6_119_vector = new MFVec3f(new double[] {0.26985,-0.962902,-9.48856E-6,0.849057,-0.32117,0.419467,0.897068,0.32117,0.303511,0.138768,0.990325,-4.87939E-6,0.823308,-0.454165,-0.340439,0.622768,-0.56137,-0.544998,0.366077,-0.561299,-0.742248,0.0546098,-0.561285,-0.825819,-0.265272,-0.56133,-0.783925,-0.545377,-0.561326,-0.622477,-0.742161,-0.561307,-0.366241,-0.825815,-0.561285,-0.0546679,-0.783904,-0.561343,0.265309,-0.622568,-0.561282,0.545318,-0.366731,-0.561341,0.741893,-0.0546679,-0.561285,0.825815,0.265059,-0.561309,0.784013,0.544939,-0.561326,0.62286,0.895482,0.246989,-0.370282,0.622477,0.561326,0.545377,0.366223,0.561309,0.742168,0.0546098,0.561285,0.825819,-0.265347,0.561341,0.783893,-0.545318,0.561282,0.622568,-0.7419,0.561343,0.366713,-0.825819,0.561285,0.0546098,-0.784002,0.561307,-0.265096,-0.62286,0.561326,-0.544939,-0.366584,0.56133,-0.741973,-0.0546679,0.561285,-0.825815,0.264984,0.561299,-0.784045,0.544998,0.56137,-0.622768,-0.57735,0.57735,0.57735,-0.408248,-0.816497,0.408248,-0.816497,-0.408248,-0.408248,-0.408248,0.408248,-0.816497,0.57735,0.57735,0.57735,0.666667,-0.333333,0.666667,0.666667,0.666667,-0.333333,0.333333,-0.666667,-0.666667});
			return Normal_6_119_vector;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #125, 120 total numbers made up of 40 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 getNormal_6_125_vector()
		{
			MFVec3f Normal_6_125_vector = new MFVec3f(new double[] {0.26985,-0.962902,-9.48856E-6,0.849057,-0.32117,0.419467,0.897068,0.32117,0.303511,0.138768,0.990325,-4.87939E-6,0.823158,-0.454193,-0.340763,0.622488,-0.561343,-0.545346,0.366077,-0.561299,-0.742248,0.0546098,-0.561285,-0.825819,-0.265272,-0.56133,-0.783925,-0.545225,-0.561299,-0.622634,-0.741946,-0.561334,-0.366633,-0.825815,-0.561285,-0.0546679,-0.783904,-0.561343,0.265309,-0.622568,-0.561282,0.545318,-0.36709,-0.561293,0.741752,-0.0550674,-0.561381,0.825723,0.265816,-0.561261,0.783791,0.544939,-0.561326,0.62286,0.895329,0.247007,-0.37064,0.622477,0.561326,0.545377,0.366582,0.561261,0.742027,0.055009,0.561381,0.825727,-0.266104,0.561293,0.78367,-0.545318,0.561282,0.622568,-0.7419,0.561343,0.366713,-0.825819,0.561285,0.0546098,-0.783915,0.561334,-0.265296,-0.62258,0.561299,-0.545287,-0.366584,0.56133,-0.741973,-0.0546679,0.561285,-0.825815,0.264984,0.561299,-0.784045,0.544847,0.561343,-0.622925,-0.57735,0.57735,0.57735,-0.408248,-0.816497,0.408248,-0.816497,-0.408248,-0.408248,-0.408248,0.408248,-0.816497,0.57735,0.57735,0.57735,0.666667,-0.333333,0.666667,0.666667,0.666667,-0.333333,0.333333,-0.666667,-0.666667});
			return Normal_6_125_vector;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #137, 120 total numbers made up of 40 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 getNormal_6_137_vector()
		{
			MFVec3f Normal_6_137_vector = new MFVec3f(new double[] {0.26978,0.962922,9.55108E-6,0.849077,0.321116,-0.419468,0.896866,-0.321116,-0.304165,0.138729,-0.99033,4.91147E-6,0.822846,0.45416,0.341559,0.622529,0.561288,0.545356,0.366633,0.561334,0.741946,0.0546488,0.561288,0.825815,-0.265296,0.561334,0.783915,-0.545287,0.561299,0.62258,-0.741973,0.56133,0.366584,-0.825815,0.561285,0.0546679,-0.784045,0.561299,-0.264984,-0.62269,0.561384,-0.545074,-0.366257,0.561235,-0.742207,-0.0550482,0.561384,-0.825723,0.265679,0.561235,-0.783856,0.544768,0.561373,-0.622967,0.894978,-0.246986,0.3715,0.622585,-0.561373,-0.545204,0.366257,-0.561235,-0.742207,0.0550482,-0.561384,-0.825723,-0.265679,-0.561235,-0.783856,-0.544824,-0.561384,-0.622908,-0.742248,-0.561299,-0.366077,-0.825819,-0.561285,-0.0546098,-0.783925,-0.56133,0.265272,-0.622634,-0.561299,0.545225,-0.366633,-0.561334,0.741946,-0.0546488,-0.561288,0.825815,0.265296,-0.561334,0.783915,0.545231,-0.561288,0.622639,-0.57735,-0.57735,-0.57735,-0.408248,0.816497,-0.408248,-0.816497,0.408248,0.408248,-0.408248,-0.408248,0.816497,0.57735,-0.57735,-0.57735,0.666667,0.333333,-0.666667,0.666667,-0.666667,0.333333,0.333333,0.666667,0.666667});
			return Normal_6_137_vector;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #143, 120 total numbers made up of 40 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 getNormal_6_143_vector()
		{
			MFVec3f Normal_6_143_vector = new MFVec3f(new double[] {0.269787,0.96292,-4.76891E-5,0.848777,0.32114,-0.420056,0.896744,-0.32114,-0.304499,0.138733,-0.99033,-2.45233E-5,0.822938,0.454166,0.34133,0.622541,0.561305,0.545325,0.366486,0.561324,0.742027,0.0546488,0.561288,0.825815,-0.265222,0.561324,0.783947,-0.545195,0.561316,0.622645,-0.742062,0.561336,0.366397,-0.825836,0.561276,0.0544543,-0.783925,0.56133,-0.265272,-0.622634,0.561299,-0.545225,-0.366633,0.561334,-0.741946,-0.0546488,0.561288,-0.825815,0.265296,0.561334,-0.783915,0.545231,0.561288,-0.622639,0.89508,-0.24699,0.371252,0.622529,-0.561288,-0.545356,0.366633,-0.561334,-0.741946,0.0546488,-0.561288,-0.825815,-0.265296,-0.561334,-0.783915,-0.545287,-0.561299,-0.62258,-0.741973,-0.56133,-0.366584,-0.825816,-0.561276,-0.0547443,-0.784002,-0.561336,0.265034,-0.622645,-0.561316,0.545195,-0.366486,-0.561324,0.742027,-0.0546488,-0.561288,0.825815,0.265222,-0.561324,0.783947,0.545138,-0.561305,0.622704,-0.57735,-0.57735,-0.57735,-0.408248,0.816497,-0.408248,-0.816497,0.408248,0.408248,-0.408248,-0.408248,0.816497,0.57735,-0.57735,-0.57735,0.666667,0.333333,-0.666667,0.666667,-0.666667,0.333333,0.333333,0.666667,0.666667});
			return Normal_6_143_vector;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #149, 120 total numbers made up of 40 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 getNormal_6_149_vector()
		{
			MFVec3f Normal_6_149_vector = new MFVec3f(new double[] {0.26978,-0.962922,-9.55108E-6,0.848786,-0.321142,0.420036,0.896758,0.321142,0.304456,0.138729,0.99033,-4.91147E-6,0.823034,-0.454125,-0.341153,0.622821,-0.561333,-0.544977,0.366486,-0.561324,-0.742027,0.0546488,-0.561288,-0.825815,-0.265222,-0.561324,-0.783947,-0.545346,-0.561343,-0.622488,-0.742241,-0.561297,-0.366094,-0.825815,-0.561285,-0.0546679,-0.783936,-0.561333,0.265234,-0.622634,-0.561299,0.545225,-0.366633,-0.561334,0.741946,-0.0546488,-0.561288,0.825815,0.265296,-0.561334,0.783915,0.545231,-0.561288,0.622639,0.895169,0.246963,-0.371054,0.622529,0.561288,0.545356,0.366633,0.561334,0.741946,0.0546488,0.561288,0.825815,-0.265296,0.561334,0.783915,-0.545287,0.561299,0.62258,-0.74198,0.561333,0.366567,-0.825819,0.561285,0.0546098,-0.784034,0.561297,-0.265022,-0.622925,0.561343,-0.544847,-0.366486,0.561324,-0.742027,-0.0546488,0.561288,-0.825815,0.265222,0.561324,-0.783947,0.54529,0.561333,-0.622547,-0.57735,0.57735,0.57735,-0.408248,-0.816497,0.408248,-0.816497,-0.408248,-0.408248,-0.408248,0.408248,-0.816497,0.57735,0.57735,0.57735,0.666667,-0.333333,0.666667,0.666667,0.666667,-0.333333,0.333333,-0.666667,-0.666667});
			return Normal_6_149_vector;
		}
		/** Large attribute array: IndexedFaceSet coordIndex field, scene-graph level=5, element #215, 952 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 getIndexedFaceSet_5_215_coordIndex()
		{
			MFInt32 IndexedFaceSet_5_215_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_215_coordIndex_1()));
			return IndexedFaceSet_5_215_coordIndex;
		}
		/** Large attribute array: IndexedFaceSet normalIndex field, scene-graph level=5, element #215, 952 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 getIndexedFaceSet_5_215_normalIndex()
		{
			MFInt32 IndexedFaceSet_5_215_normalIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_215_normalIndex_1()));
			return IndexedFaceSet_5_215_normalIndex;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=6, element #215, 384 total numbers made up of 128 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 getCoordinate_6_215_point()
		{
			MFVec3f Coordinate_6_215_point = new MFVec3f()/*2.finalize*/
				.append(new MFVec3f(getCoordinate_6_215_point_1()))
				.append(new MFVec3f(getCoordinate_6_215_point_2()));
			return Coordinate_6_215_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #216, 384 total numbers made up of 128 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 getNormal_6_216_vector()
		{
			MFVec3f Normal_6_216_vector = new MFVec3f()/*2.finalize*/
				.append(new MFVec3f(getNormal_6_216_vector_1()))
				.append(new MFVec3f(getNormal_6_216_vector_2()));
			return Normal_6_216_vector;
		}
		/** Large attribute array: IndexedFaceSet coordIndex field, scene-graph level=5, element #221, 824 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 getIndexedFaceSet_5_221_coordIndex()
		{
			MFInt32 IndexedFaceSet_5_221_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_221_coordIndex_1()));
			return IndexedFaceSet_5_221_coordIndex;
		}
		/** Large attribute array: IndexedFaceSet normalIndex field, scene-graph level=5, element #221, 824 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 getIndexedFaceSet_5_221_normalIndex()
		{
			MFInt32 IndexedFaceSet_5_221_normalIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_221_normalIndex_1()));
			return IndexedFaceSet_5_221_normalIndex;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=6, element #221, 336 total numbers made up of 112 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 getCoordinate_6_221_point()
		{
			MFVec3f Coordinate_6_221_point = new MFVec3f()/*2.finalize*/
				.append(new MFVec3f(getCoordinate_6_221_point_1()))
				.append(new MFVec3f(getCoordinate_6_221_point_2()));
			return Coordinate_6_221_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #222, 336 total numbers made up of 112 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 getNormal_6_222_vector()
		{
			MFVec3f Normal_6_222_vector = new MFVec3f()/*2.finalize*/
				.append(new MFVec3f(getNormal_6_222_vector_1()))
				.append(new MFVec3f(getNormal_6_222_vector_2()));
			return Normal_6_222_vector;
		}
		/** Large attribute array: IndexedFaceSet coordIndex field, scene-graph level=5, element #227, 644 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 getIndexedFaceSet_5_227_coordIndex()
		{
			MFInt32 IndexedFaceSet_5_227_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_227_coordIndex_1()));
			return IndexedFaceSet_5_227_coordIndex;
		}
		/** Large attribute array: IndexedFaceSet normalIndex field, scene-graph level=5, element #227, 644 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 getIndexedFaceSet_5_227_normalIndex()
		{
			MFInt32 IndexedFaceSet_5_227_normalIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_227_normalIndex_1()));
			return IndexedFaceSet_5_227_normalIndex;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=6, element #227, 318 total numbers made up of 106 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 getCoordinate_6_227_point()
		{
			MFVec3f Coordinate_6_227_point = new MFVec3f()/*2.finalize*/
				.append(new MFVec3f(getCoordinate_6_227_point_1()))
				.append(new MFVec3f(getCoordinate_6_227_point_2()));
			return Coordinate_6_227_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #228, 318 total numbers made up of 106 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 getNormal_6_228_vector()
		{
			MFVec3f Normal_6_228_vector = new MFVec3f()/*2.finalize*/
				.append(new MFVec3f(getNormal_6_228_vector_1()))
				.append(new MFVec3f(getNormal_6_228_vector_2()));
			return Normal_6_228_vector;
		}
		/** Large attribute array: IndexedFaceSet coordIndex field, scene-graph level=5, element #233, 648 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 getIndexedFaceSet_5_233_coordIndex()
		{
			MFInt32 IndexedFaceSet_5_233_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_233_coordIndex_1()));
			return IndexedFaceSet_5_233_coordIndex;
		}
		/** Large attribute array: IndexedFaceSet normalIndex field, scene-graph level=5, element #233, 648 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 getIndexedFaceSet_5_233_normalIndex()
		{
			MFInt32 IndexedFaceSet_5_233_normalIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_233_normalIndex_1()));
			return IndexedFaceSet_5_233_normalIndex;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=6, element #233, 267 total numbers made up of 89 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 getCoordinate_6_233_point()
		{
			MFVec3f Coordinate_6_233_point = new MFVec3f(new double[] {7.42625,1.13287,0.283489,7.42625,1.15519,0.283489,7.43686,1.15474,0.283488,7.44747,1.14815,0.283487,7.4687,1.14676,0.283485,7.48993,1.14597,0.283483,7.49896,1.14597,0.283482,7.49896,1.13287,0.283482,7.42624,1.13287,0.240445,7.42624,1.15519,0.240445,7.49896,1.13287,0.281216,7.49896,1.13287,0.266264,7.49896,1.13287,0.257656,7.49896,1.13287,0.242386,7.49896,1.13287,0.240438,7.38929,1.15519,0.240449,7.35234,1.15519,0.240453,7.31539,1.15519,0.240457,7.3154,1.15519,0.283501,7.35235,1.15519,0.283497,7.3893,1.15519,0.283493,7.42647,1.16043,0.283489,7.43708,1.15999,0.283488,7.38931,1.15519,0.370306,7.42626,1.15519,0.370302,7.42648,1.16043,0.370302,7.49896,1.14597,0.240438,7.48992,1.14597,0.240439,7.4687,1.14676,0.240441,7.44747,1.14815,0.240443,7.43686,1.15474,0.240444,7.43708,1.15999,0.240444,7.42646,1.16043,0.240445,7.29632,1.16043,0.240459,7.27844,1.15519,0.240461,7.50982,1.14787,0.283481,7.50982,1.13097,0.283481,7.50982,1.13097,0.281215,7.49896,1.14597,0.242386,7.49896,1.14597,0.257656,7.49896,1.14597,0.266264,7.49896,1.14597,0.281216,7.50982,1.14787,0.281215,7.50982,1.13097,0.240437,7.50982,1.14787,0.240437,7.50982,1.14787,0.242385,7.50982,1.13097,0.242385,7.38923,1.16043,0.283493,7.37441,1.16043,0.283495,7.34838,1.16043,0.283498,7.32235,1.16043,0.2835,7.29632,1.16043,0.283503,7.29632,1.16071,0.277735,7.42647,1.16071,0.277722,7.42647,1.16071,0.246213,7.29632,1.16071,0.246227,7.42476,1.16035,0.366309,7.42476,1.16035,0.287482,7.39094,1.16035,0.287486,7.2415,1.15519,0.236801,7.24172,1.16043,0.236801,7.24172,1.16043,0.254813,7.24172,1.16043,0.26916,7.24172,1.16043,0.287172,7.2415,1.15519,0.287172,7.27845,1.15519,0.283505,7.29632,1.19528,0.283503,7.29632,1.19528,0.240459,7.27812,1.19528,0.245243,7.25992,1.19528,0.250029,7.24172,1.19528,0.254813,7.24172,1.19528,0.26916,7.25992,1.19528,0.273941,7.27812,1.19528,0.278723,7.38924,1.16043,0.370306,7.24171,1.19931,0.231931,7.24172,1.19931,0.292042,7.25992,1.19931,0.238407,7.29632,1.19931,0.283503,7.29632,1.19931,0.240459,7.27812,1.19931,0.245243,7.27812,1.19931,0.278723,7.25992,1.19931,0.285563,7.39095,1.16035,0.366312,7.42476,1.19918,0.366309,7.42476,1.19918,0.287482,7.42476,1.19918,0.278872,7.42476,1.16035,0.278872,7.39094,1.16035,0.278876});
			return Coordinate_6_233_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #234, 267 total numbers made up of 89 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 getNormal_6_234_vector()
		{
			MFVec3f Normal_6_234_vector = new MFVec3f(new double[] {-0.229344,-0.688247,0.688271,0.145629,-0.887342,0.437511,0.632212,0.191524,0.750751,0.27163,0.846373,0.458117,0.0388559,0.831123,0.554729,0.013272,0.706922,0.707167,-0.0690158,0.795925,0.601448,-0.0812636,-0.701226,0.708293,-0.192551,-0.19245,-0.96223,-0.312446,-0.156174,-0.93701,0.729059,-0.568585,-0.381031,0.0,-1.0,0.0,0.0,-1.0,0.0,0.224546,-0.809564,0.542388,-0.0773138,-0.890408,-0.448549,0.0,-1.0,-8.59058E-16,0.0,-1.0,0.0,0.0,-1.0,-4.29515E-16,7.4048E-5,-0.707107,0.707107,1.0472E-4,-4.3153E-15,1.0,-0.664582,-0.341172,0.66478,0.270766,0.950987,0.149361,0.425112,0.390701,0.816476,-0.332256,-0.669119,0.664745,0.568962,-0.593401,0.569349,0.577439,0.56783,0.586628,-0.0690798,0.594731,-0.800951,0.0166482,0.89424,-0.447278,0.0464785,0.830726,-0.554738,0.165832,0.517084,-0.839717,0.620292,0.500369,-0.604044,0.601035,0.552551,-0.577447,0.487521,0.715586,-0.50026,0.140854,0.206706,-0.968211,0.0308331,-0.766045,-0.642047,0.348144,0.414213,0.840966,0.793146,-0.427437,0.43384,0.284386,-0.854874,-0.433953,0.793142,0.427439,0.433845,1.0,3.13706E-14,-1.0472E-4,1.0,-2.4609E-13,-1.0472E-4,0.507878,0.60449,-0.61372,0.507878,0.60449,-0.61372,-0.0771292,-0.440529,-0.894419,-0.121897,0.696534,-0.707094,-0.121749,0.696534,0.70712,-0.154024,-0.881057,0.44723,-0.145479,0.971116,0.189128,4.96739E-6,0.998874,0.0474351,4.96739E-6,0.998874,0.0474351,4.96739E-6,0.998874,0.0474351,0.00547358,0.195982,0.980592,4.96739E-6,0.998874,0.0474351,0.70711,0.706311,0.0334676,0.707103,0.706311,-0.0336157,-4.96739E-6,0.998874,-0.0474351,0.586743,0.809722,-0.00909619,-0.0519056,0.998403,0.0223101,0.0519235,0.997655,0.0445817,-0.797806,-0.447913,-0.403584,-0.543332,0.605582,-0.58143,-0.913099,0.304267,-0.271425,-0.946289,0.241187,0.215329,-0.649577,0.303644,0.69703,-0.545221,-0.582695,0.602662,0.0317867,-0.817966,0.574388,0.610775,0.0,0.791804,0.610609,0.0,-0.791932,-0.254256,-1.22107E-5,-0.967137,-0.177892,-0.460144,-0.86984,-0.825242,-0.350365,-0.442967,-0.632285,-0.480524,0.607711,-0.207743,-0.575658,0.79086,-0.115416,-0.219064,0.96886,-0.529382,0.80765,0.259722,-0.672928,0.729247,-0.123963,-0.995995,0.0087347,0.088982,0.0817607,-0.720506,-0.688611,0.782118,0.447951,0.433165,0.318243,0.853441,-0.412747,-0.165027,0.53117,-0.831039,-0.0376005,0.722021,0.690849,0.114756,0.5378,0.835226,0.0346413,0.999372,-0.00743889,1.0,0.0,-1.0472E-4,1.0,3.32068E-13,-1.0472E-4,1.0,3.32068E-13,-1.0472E-4,0.447214,-0.894427,-4.68321E-5,0.0,-1.0,0.0});
			return Normal_6_234_vector;
		}
		/** Large attribute array: IndexedFaceSet coordIndex field, scene-graph level=5, element #239, 532 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 getIndexedFaceSet_5_239_coordIndex()
		{
			MFInt32 IndexedFaceSet_5_239_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_239_coordIndex_1()));
			return IndexedFaceSet_5_239_coordIndex;
		}
		/** Large attribute array: IndexedFaceSet normalIndex field, scene-graph level=5, element #239, 532 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 getIndexedFaceSet_5_239_normalIndex()
		{
			MFInt32 IndexedFaceSet_5_239_normalIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_239_normalIndex_1()));
			return IndexedFaceSet_5_239_normalIndex;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=6, element #239, 222 total numbers made up of 74 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 getCoordinate_6_239_point()
		{
			MFVec3f Coordinate_6_239_point = new MFVec3f(new double[] {7.41573,1.09168,0.282856,7.41573,1.09168,0.241081,7.41573,1.09489,0.241081,7.41573,1.09489,0.246302,7.41573,1.09489,0.251525,7.41573,1.09489,0.256746,7.41573,1.09489,0.261969,7.41573,1.09489,0.267191,7.41573,1.09489,0.272412,7.41573,1.09489,0.277635,7.41573,1.09489,0.282856,7.42095,1.09168,0.288079,7.42617,1.09168,0.288078,7.4314,1.09168,0.288077,7.43662,1.09168,0.288077,7.44184,1.09168,0.288076,7.44706,1.09168,0.288076,7.45229,1.09168,0.288075,7.45751,1.09168,0.288075,7.46273,1.09168,0.288074,7.46795,1.09168,0.282851,7.46795,1.09168,0.27763,7.46795,1.09168,0.272407,7.46795,1.09168,0.267186,7.46795,1.09168,0.261963,7.46795,1.09168,0.25674,7.46795,1.09168,0.251519,7.46795,1.09168,0.246296,7.46795,1.09168,0.241075,7.46272,1.09168,0.235853,7.4575,1.09168,0.235854,7.45228,1.09168,0.235854,7.44706,1.09168,0.235855,7.44184,1.09168,0.235855,7.43661,1.09168,0.235856,7.43139,1.09168,0.235856,7.42617,1.09168,0.235857,7.42095,1.09168,0.235857,7.42095,1.09489,0.288079,7.42095,1.09489,0.235857,7.42617,1.09489,0.288078,7.4314,1.09489,0.288077,7.43662,1.09489,0.288077,7.44184,1.09489,0.288076,7.44706,1.09489,0.288076,7.45229,1.09489,0.288075,7.45751,1.09489,0.288075,7.46273,1.09489,0.288074,7.46795,1.09489,0.282851,7.42617,1.09489,0.235857,7.43139,1.09489,0.235856,7.43661,1.09489,0.235856,7.44184,1.09489,0.235855,7.44706,1.09489,0.235855,7.45228,1.09489,0.235854,7.4575,1.09489,0.235854,7.46272,1.09489,0.235853,7.46795,1.09489,0.241075,7.46795,1.09489,0.246296,7.46795,1.09489,0.251519,7.46795,1.09489,0.25674,7.46795,1.09489,0.261963,7.46795,1.09489,0.267186,7.46795,1.09489,0.272407,7.46795,1.09489,0.27763,7.41573,1.09168,0.282856,7.41573,1.09168,0.277635,7.41573,1.09168,0.272412,7.41573,1.09168,0.267191,7.41573,1.09168,0.261969,7.41573,1.09168,0.256746,7.41573,1.09168,0.251525,7.41573,1.09168,0.246302,7.41573,1.09168,0.241081});
			return Coordinate_6_239_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #240, 222 total numbers made up of 74 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 getNormal_6_240_vector()
		{
			MFVec3f Normal_6_240_vector = new MFVec3f(new double[] {-0.359436,-0.93189,0.0488485,-0.81257,-0.336557,-0.475878,-0.91112,0.336557,-0.237886,-1.0,-9.64328E-16,1.0472E-4,-1.0,3.31247E-12,1.0472E-4,-1.0,0.0,1.0472E-4,-1.0,0.0,1.0472E-4,-1.0,8.28358E-13,1.0472E-4,-1.0,8.28358E-13,1.0472E-4,-1.0,0.0,1.0472E-4,-0.0630759,0.997666,0.0261346,-0.0721674,-0.102207,0.992142,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.411272,-0.581522,0.701917,0.976952,-0.201284,0.0710625,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.701917,-0.581522,-0.411272,0.205517,-0.581522,-0.787143,-7.4048E-5,-0.707107,-0.707107,-7.4048E-5,-0.707107,-0.707107,-7.4048E-5,-0.707107,-0.707107,-7.4048E-5,-0.707107,-0.707107,-7.4048E-5,-0.707107,-0.707107,-7.4048E-5,-0.707107,-0.707107,-7.4048E-5,-0.707107,-0.707107,-0.259754,-0.73451,-0.626916,-0.475878,0.336557,0.81257,-0.132291,0.186944,-0.973422,7.4048E-5,0.707107,0.707107,7.4048E-5,0.707107,0.707107,7.4048E-5,0.707107,0.707107,7.4048E-5,0.707107,0.707107,7.4048E-5,0.707107,0.707107,7.4048E-5,0.707107,0.707107,7.4048E-5,0.707107,0.707107,0.205682,0.581522,0.7871,0.702003,0.581522,0.411125,0.0,1.0,-3.5326E-15,0.0,1.0,-7.06725E-15,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,2.8269E-14,0.0,1.0,2.8269E-14,0.411125,0.581522,-0.702003,0.7871,0.581522,-0.205682,0.707107,0.707107,-7.4048E-5,0.707107,0.707107,-7.4048E-5,0.707107,0.707107,-7.4048E-5,0.707107,0.707107,-7.4048E-5,0.707107,0.707107,-7.4048E-5,0.707107,0.707107,-7.4048E-5,0.707107,0.707107,-7.4048E-5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0});
			return Normal_6_240_vector;
		}
		/** Large attribute array: IndexedFaceSet coordIndex field, scene-graph level=5, element #245, 532 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 getIndexedFaceSet_5_245_coordIndex()
		{
			MFInt32 IndexedFaceSet_5_245_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_245_coordIndex_1()));
			return IndexedFaceSet_5_245_coordIndex;
		}
		/** Large attribute array: IndexedFaceSet normalIndex field, scene-graph level=5, element #245, 532 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 getIndexedFaceSet_5_245_normalIndex()
		{
			MFInt32 IndexedFaceSet_5_245_normalIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_245_normalIndex_1()));
			return IndexedFaceSet_5_245_normalIndex;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=6, element #245, 222 total numbers made up of 74 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 getCoordinate_6_245_point()
		{
			MFVec3f Coordinate_6_245_point = new MFVec3f(new double[] {7.41834,1.09395,0.280768,7.41834,1.09395,0.243169,7.41834,1.099,0.243169,7.41834,1.099,0.247869,7.41834,1.099,0.252569,7.41834,1.099,0.257268,7.41834,1.099,0.261968,7.41834,1.099,0.266668,7.41834,1.099,0.271368,7.41834,1.099,0.276068,7.41834,1.099,0.280768,7.42304,1.09395,0.285467,7.42774,1.09395,0.285467,7.43244,1.09395,0.285466,7.43714,1.09395,0.285466,7.44184,1.09395,0.285465,7.44654,1.09395,0.285465,7.45124,1.09395,0.285464,7.45594,1.09395,0.285464,7.46064,1.09395,0.285463,7.46534,1.09395,0.280763,7.46534,1.09395,0.276063,7.46534,1.09395,0.271363,7.46534,1.09395,0.266663,7.46534,1.09395,0.261963,7.46534,1.09395,0.257264,7.46534,1.09395,0.252564,7.46534,1.09395,0.247864,7.46534,1.09395,0.243164,7.46064,1.09395,0.238465,7.45594,1.09395,0.238465,7.45124,1.09395,0.238466,7.44654,1.09395,0.238466,7.44184,1.09395,0.238467,7.43714,1.09395,0.238467,7.43244,1.09395,0.238468,7.42774,1.09395,0.238468,7.42304,1.09395,0.238469,7.42304,1.099,0.285467,7.42304,1.099,0.238469,7.42774,1.099,0.285467,7.43244,1.099,0.285466,7.43714,1.099,0.285466,7.44184,1.099,0.285465,7.44654,1.099,0.285465,7.45124,1.099,0.285464,7.45594,1.099,0.285464,7.46064,1.099,0.285463,7.46534,1.099,0.280763,7.42774,1.099,0.238468,7.43244,1.099,0.238468,7.43714,1.099,0.238467,7.44184,1.099,0.238467,7.44654,1.099,0.238466,7.45124,1.099,0.238466,7.45594,1.099,0.238465,7.46064,1.099,0.238465,7.46534,1.099,0.243164,7.46534,1.099,0.247864,7.46534,1.099,0.252564,7.46534,1.099,0.257264,7.46534,1.099,0.261963,7.46534,1.099,0.266663,7.46534,1.099,0.271363,7.46534,1.099,0.276063,7.41834,1.09395,0.280768,7.41834,1.09395,0.276068,7.41834,1.09395,0.271368,7.41834,1.09395,0.266668,7.41834,1.09395,0.261968,7.41834,1.09395,0.257268,7.41834,1.09395,0.252569,7.41834,1.09395,0.247869,7.41834,1.09395,0.243169});
			return Coordinate_6_245_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #246, 222 total numbers made up of 74 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 getNormal_6_246_vector()
		{
			MFVec3f Normal_6_246_vector = new MFVec3f(new double[] {-0.359436,-0.93189,0.0488485,-0.81257,-0.336557,-0.475878,-0.91112,0.336557,-0.237886,-1.0,1.17006E-12,1.0472E-4,-1.0,4.06522E-25,1.0472E-4,-1.0,1.17006E-12,1.0472E-4,-1.0,0.0,1.0472E-4,-1.0,0.0,1.0472E-4,-1.0,0.0,1.0472E-4,-1.0,0.0,1.0472E-4,-0.0630759,0.997666,0.0261346,-0.0721674,-0.102207,0.992142,0.0,-1.0,0.0,0.0,-1.0,7.85352E-14,0.0,-1.0,7.85352E-14,0.0,-1.0,0.0,0.0,-1.0,1.5707E-13,0.0,-1.0,-1.5707E-13,0.0,-1.0,-3.14141E-13,0.411272,-0.581522,0.701917,0.976952,-0.201284,0.0710625,0.0,-1.0,0.0,0.0,-1.0,-3.14141E-14,0.0,-1.0,-3.14141E-14,0.0,-1.0,0.0,0.0,-1.0,-3.14141E-14,0.0,-1.0,-3.14141E-14,0.0,-1.0,0.0,0.701917,-0.581522,-0.411272,0.205517,-0.581522,-0.787143,-7.4048E-5,-0.707107,-0.707107,-7.4048E-5,-0.707107,-0.707107,-7.4048E-5,-0.707107,-0.707107,-7.4048E-5,-0.707107,-0.707107,-7.4048E-5,-0.707107,-0.707107,-7.4048E-5,-0.707107,-0.707107,-7.4048E-5,-0.707107,-0.707107,-0.259754,-0.73451,-0.626916,-0.475878,0.336557,0.81257,-0.132291,0.186944,-0.973422,7.4048E-5,0.707107,0.707107,7.4048E-5,0.707107,0.707107,7.4048E-5,0.707107,0.707107,7.4048E-5,0.707107,0.707107,7.4048E-5,0.707107,0.707107,7.4048E-5,0.707107,0.707107,7.4048E-5,0.707107,0.707107,0.205682,0.581522,0.7871,0.702003,0.581522,0.411125,0.0,1.0,4.36306E-15,0.0,1.0,-8.72613E-15,0.0,1.0,8.72613E-15,0.0,1.0,1.74523E-14,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.411125,0.581522,-0.702003,0.7871,0.581522,-0.205682,0.707107,0.707107,-7.4048E-5,0.707107,0.707107,-7.4048E-5,0.707107,0.707107,-7.4048E-5,0.707107,0.707107,-7.4048E-5,0.707107,0.707107,-7.4048E-5,0.707107,0.707107,-7.4048E-5,0.707107,0.707107,-7.4048E-5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0});
			return Normal_6_246_vector;
		}
		/** Large attribute array: IndexedFaceSet coordIndex field, scene-graph level=5, element #251, 496 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 getIndexedFaceSet_5_251_coordIndex()
		{
			MFInt32 IndexedFaceSet_5_251_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_251_coordIndex_1()));
			return IndexedFaceSet_5_251_coordIndex;
		}
		/** Large attribute array: IndexedFaceSet normalIndex field, scene-graph level=5, element #251, 496 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 getIndexedFaceSet_5_251_normalIndex()
		{
			MFInt32 IndexedFaceSet_5_251_normalIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_251_normalIndex_1()));
			return IndexedFaceSet_5_251_normalIndex;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=6, element #251, 192 total numbers made up of 64 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 getCoordinate_6_251_point()
		{
			MFVec3f Coordinate_6_251_point = new MFVec3f(new double[] {7.36566,0.847865,0.262609,7.36516,0.848066,0.259902,7.35992,0.834923,0.259903,7.36042,0.834722,0.26261,7.36516,0.848066,0.265318,7.43477,1.02253,0.26531,7.43526,1.02233,0.262602,7.35992,0.834923,0.265318,7.43476,1.02253,0.259895,7.36374,0.848633,0.257607,7.35849,0.83549,0.257608,7.43334,1.0231,0.2576,7.3616,0.849485,0.256073,7.35636,0.836341,0.256074,7.43121,1.02395,0.256066,7.35909,0.850487,0.255535,7.35385,0.837344,0.255535,7.42869,1.02495,0.255527,7.35657,0.851491,0.256074,7.35133,0.838348,0.256074,7.42618,1.02595,0.256066,7.35444,0.852341,0.257608,7.3492,0.839198,0.257609,7.42405,1.0268,0.257601,7.35302,0.85291,0.259904,7.34777,0.839767,0.259904,7.42262,1.02737,0.259896,7.35252,0.853109,0.262611,7.34727,0.839966,0.262611,7.42212,1.02757,0.262603,7.35302,0.85291,0.265319,7.34777,0.839767,0.265319,7.42262,1.02737,0.265312,7.35444,0.852341,0.267614,7.3492,0.839198,0.267615,7.42405,1.0268,0.267607,7.35657,0.851491,0.269147,7.35133,0.838348,0.269148,7.42618,1.02595,0.26914,7.35909,0.850487,0.269685,7.35385,0.837344,0.269686,7.42869,1.02495,0.269678,7.3616,0.849485,0.269146,7.35636,0.836341,0.269147,7.43121,1.02395,0.269139,7.36374,0.848633,0.267613,7.35849,0.83549,0.267614,7.43334,1.0231,0.267606,7.43602,1.09454,0.262602,7.43548,1.09454,0.259895,7.43395,1.09454,0.2576,7.43548,1.09454,0.26531,7.43395,1.09454,0.267606,7.43165,1.09454,0.269139,7.42895,1.09453,0.269678,7.42624,1.09452,0.26914,7.42394,1.09452,0.267607,7.42241,1.09452,0.265312,7.42187,1.09451,0.262603,7.42241,1.09452,0.259896,7.42394,1.09452,0.257601,7.42624,1.09452,0.256066,7.42895,1.09453,0.255527,7.43165,1.09454,0.256066});
			return Coordinate_6_251_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #252, 192 total numbers made up of 64 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 getNormal_6_252_vector()
		{
			MFVec3f Normal_6_252_vector = new MFVec3f(new double[] {0.928803,-0.370574,-1.5093E-4,0.832663,-0.332248,-0.44304,0.71415,-0.630627,-0.303809,-0.237986,-0.971269,1.74388E-5,0.858167,-0.342401,0.382506,0.890161,-0.20201,0.408418,0.986826,-0.156711,0.040208,0.740063,-0.561144,0.370707,0.92118,-0.158107,-0.355569,0.611864,-0.244141,-0.752341,0.370487,-0.752029,-0.545152,0.71761,-0.171462,-0.675009,0.297879,-0.118878,-0.947173,0.132514,-0.657256,-0.741926,0.43577,-0.0840693,-0.896123,-0.0615126,0.0244992,-0.997806,-0.157243,-0.541663,-0.825758,0.0637845,-0.0124951,-0.997885,-0.411642,0.164192,-0.896433,-0.454646,-0.422981,-0.783826,-0.317637,0.0598716,-0.94632,-0.698925,0.27882,-0.658608,-0.714557,-0.319271,-0.622474,-0.649165,0.122898,-0.750654,-0.879762,0.350981,-0.320673,-0.897207,-0.246385,-0.366489,-0.881161,0.167378,-0.442199,-0.926767,0.369751,0.066233,-0.975006,-0.215341,-0.0546936,-0.98018,0.186338,-0.0672725,-0.832691,0.332233,0.442997,-0.936069,-0.230857,0.26548,-0.931331,0.17661,0.318482,-0.611744,0.244096,0.752454,-0.786248,-0.290633,0.545296,-0.740753,0.139947,0.657039,-0.297683,0.118803,0.947244,-0.548324,-0.385534,0.742095,-0.435913,0.0823333,0.896215,0.0615791,-0.024525,0.997801,-0.25877,-0.501078,0.825808,-0.0637395,0.0122825,0.997891,0.411428,-0.164104,0.896547,0.0385625,-0.6197,0.783891,0.317363,-0.0605637,0.946368,0.698768,-0.278769,0.658795,0.298624,-0.723322,0.622599,0.648311,-0.125746,0.75092,0.948122,0.31242,-0.0588043,0.126251,0.990572,-0.0531698,0.696917,0.241557,-0.675246,0.788007,0.556566,0.263208,0.629443,0.558403,0.540359,0.374257,0.560313,0.738906,0.0576311,0.561377,0.825551,-0.270173,0.561161,0.782371,-0.553542,0.560116,0.616329,-0.747865,0.55894,0.358169,-0.827915,0.558532,0.0509866,-0.786631,0.559237,-0.261659,-0.629783,0.560612,-0.537668,-0.37618,0.561685,-0.736884,-0.0599556,0.561615,-0.825224,0.268285,0.560252,-0.783671});
			return Normal_6_252_vector;
		}
		/** Large attribute array: IndexedFaceSet coordIndex field, scene-graph level=5, element #257, 464 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 getIndexedFaceSet_5_257_coordIndex()
		{
			MFInt32 IndexedFaceSet_5_257_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_257_coordIndex_1()));
			return IndexedFaceSet_5_257_coordIndex;
		}
		/** Large attribute array: IndexedFaceSet normalIndex field, scene-graph level=5, element #257, 464 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 getIndexedFaceSet_5_257_normalIndex()
		{
			MFInt32 IndexedFaceSet_5_257_normalIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_257_normalIndex_1()));
			return IndexedFaceSet_5_257_normalIndex;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=6, element #257, 192 total numbers made up of 64 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 getCoordinate_6_257_point()
		{
			MFVec3f Coordinate_6_257_point = new MFVec3f(new double[] {7.45234,0.847865,0.185528,7.45505,0.848066,0.185027,7.45505,0.834923,0.179784,7.45234,0.834722,0.180284,7.44963,0.848066,0.185028,7.44964,1.02253,0.254632,7.45235,1.02233,0.255132,7.44963,0.834923,0.179784,7.45506,1.02253,0.254631,7.45735,1.0231,0.253207,7.45734,0.848633,0.183603,7.45888,1.02395,0.251075,7.45888,0.849485,0.181471,7.45942,1.02495,0.24856,7.45942,0.850487,0.178956,7.45888,1.02595,0.246045,7.45888,0.851491,0.176441,7.45734,0.852341,0.174309,7.45734,0.839198,0.169065,7.45888,0.838348,0.171197,7.45735,1.0268,0.243913,7.45505,0.85291,0.172885,7.45505,0.839767,0.167641,7.45505,1.02737,0.242489,7.45234,0.853109,0.172385,7.45234,0.839966,0.167141,7.45235,1.02757,0.241989,7.44963,0.85291,0.172886,7.44963,0.839767,0.167642,7.44964,1.02737,0.24249,7.44734,0.852341,0.17431,7.44734,0.839198,0.169066,7.44734,1.0268,0.243914,7.4458,0.851491,0.176442,7.4458,0.838348,0.171199,7.44581,1.02595,0.246046,7.44526,0.850487,0.178958,7.44526,0.837344,0.173713,7.44527,1.02495,0.248562,7.4458,0.849485,0.181472,7.4458,0.836341,0.176229,7.44581,1.02395,0.251076,7.44734,0.848633,0.183604,7.44734,0.83549,0.17836,7.44734,1.0231,0.253208,7.45734,0.83549,0.178359,7.45888,0.836341,0.176227,7.45941,0.837344,0.173712,7.45235,1.09454,0.255891,7.45506,1.09454,0.255352,7.45735,1.09454,0.253817,7.44964,1.09454,0.255352,7.44734,1.09454,0.253818,7.44581,1.09454,0.251523,7.44527,1.09453,0.248816,7.44581,1.09452,0.246108,7.44734,1.09452,0.243812,7.44964,1.09452,0.242279,7.45235,1.09451,0.24174,7.45505,1.09452,0.242278,7.45735,1.09452,0.243811,7.45888,1.09452,0.246106,7.45942,1.09453,0.248814,7.45888,1.09454,0.251521});
			return Coordinate_6_257_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #258, 192 total numbers made up of 64 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 getNormal_6_258_vector()
		{
			MFVec3f Normal_6_258_vector = new MFVec3f(new double[] {6.50184E-5,-0.370555,0.92881,0.382755,-0.342354,0.858075,0.174815,-0.740287,0.649165,-2.94086E-5,-0.971271,-0.237977,-0.382573,-0.342356,0.858155,-0.408472,-0.20201,0.890136,-0.0402958,-0.156712,0.986822,-0.370764,-0.561099,0.740069,0.355594,-0.158108,0.92117,0.674959,-0.17148,0.717652,0.752443,-0.244097,0.611757,0.896236,-0.0840241,0.435546,0.947216,-0.118834,0.29776,0.997885,-0.0124964,0.0637876,0.997806,0.0244994,-0.0615126,0.946359,0.0598503,-0.317525,0.872031,0.181339,-0.454618,0.658698,0.278791,-0.698851,0.622602,-0.319341,-0.714414,0.371775,-0.738687,-0.562249,0.750817,0.122863,-0.648982,0.320618,0.350988,-0.879779,0.366467,-0.246384,-0.897216,0.442175,0.16738,-0.881173,-0.0663188,0.369749,-0.926762,0.0546226,-0.21534,-0.97501,0.0671871,0.186339,-0.980185,-0.443022,0.332229,-0.83268,-0.265526,-0.230859,-0.936056,-0.318537,0.176606,-0.931313,-0.752292,0.244164,-0.611916,-0.545226,-0.290595,-0.78631,-0.656947,0.139962,-0.740832,-0.947201,0.118852,-0.297799,-0.741955,-0.385466,-0.54856,-0.896106,0.0823747,-0.436129,-0.997801,-0.024522,0.0615732,-0.825801,-0.501075,-0.258797,-0.997891,0.0122825,-0.0637395,-0.896444,-0.164179,0.411624,-0.783859,-0.619734,0.0386758,-0.946328,-0.0605868,0.317477,-0.658589,-0.278825,0.69894,-0.622482,-0.723364,0.298766,-0.750685,-0.125796,0.648573,1.68429E-4,-0.929005,-0.370066,-3.14612E-5,-0.928831,-0.370504,-1.55322E-4,-0.928783,-0.370625,0.058863,0.31242,0.948119,0.053164,0.990572,0.126253,0.675307,0.241567,0.696854,-0.263371,0.55655,0.787965,-0.540207,0.558394,0.629581,-0.738805,0.560325,0.374437,-0.825551,0.561377,0.0576311,-0.782331,0.561173,-0.270265,-0.616197,0.560104,-0.553701,-0.35819,0.558937,-0.747856,-0.051056,0.558532,-0.82791,0.261614,0.559239,-0.786644,0.537738,0.560625,-0.629712,0.736986,0.561672,-0.376,0.825224,0.561615,-0.0599556,0.783711,0.56024,0.268194});
			return Normal_6_258_vector;
		}
		/** Large attribute array: IndexedFaceSet coordIndex field, scene-graph level=5, element #263, 456 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 getIndexedFaceSet_5_263_coordIndex()
		{
			MFInt32 IndexedFaceSet_5_263_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_263_coordIndex_1()));
			return IndexedFaceSet_5_263_coordIndex;
		}
		/** Large attribute array: IndexedFaceSet normalIndex field, scene-graph level=5, element #263, 456 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 getIndexedFaceSet_5_263_normalIndex()
		{
			MFInt32 IndexedFaceSet_5_263_normalIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_263_normalIndex_1()));
			return IndexedFaceSet_5_263_normalIndex;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=6, element #263, 192 total numbers made up of 64 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 getCoordinate_6_263_point()
		{
			MFVec3f Coordinate_6_263_point = new MFVec3f(new double[] {7.45529,0.847865,0.341015,7.458,0.848066,0.341515,7.45799,1.02253,0.27191,7.45528,1.02233,0.271411,7.45257,1.02253,0.271911,7.45258,0.848066,0.341516,7.45029,0.848633,0.342941,7.45029,0.83549,0.348184,7.45258,0.834923,0.346759,7.45028,1.0231,0.273336,7.44875,0.849485,0.345072,7.44875,0.836341,0.350316,7.44875,1.02395,0.275468,7.44821,0.850487,0.347587,7.44821,0.837344,0.35283,7.44821,1.02495,0.277983,7.44875,0.851491,0.350102,7.44875,0.838348,0.355346,7.44875,1.02595,0.280498,7.45029,0.852341,0.352234,7.45029,0.839198,0.357477,7.45028,1.0268,0.28263,7.45258,0.85291,0.353658,7.45258,0.839767,0.358901,7.45257,1.02737,0.284054,7.45529,0.853109,0.354158,7.45529,0.839966,0.359402,7.45528,1.02757,0.284554,7.458,0.85291,0.353657,7.458,0.839767,0.358901,7.45799,1.02737,0.284053,7.46029,0.852341,0.352233,7.46029,0.839198,0.357476,7.46029,1.0268,0.282629,7.46183,0.851491,0.350101,7.46183,0.838348,0.355345,7.46182,1.02595,0.280497,7.46236,0.850487,0.347585,7.46237,0.837344,0.352829,7.46236,1.02495,0.277981,7.46182,1.02395,0.275467,7.46183,0.849485,0.345071,7.46028,1.0231,0.273335,7.46029,0.848633,0.342939,7.45529,0.834722,0.346259,7.46183,0.836341,0.350315,7.46029,0.83549,0.348183,7.458,0.834923,0.346759,7.45235,1.09454,0.270653,7.44964,1.09454,0.271192,7.44735,1.09454,0.272726,7.45506,1.09454,0.271191,7.45735,1.09454,0.272725,7.45889,1.09454,0.275021,7.45943,1.09453,0.277728,7.45889,1.09452,0.280436,7.45735,1.09452,0.282731,7.45506,1.09452,0.284265,7.45235,1.09451,0.284804,7.44964,1.09452,0.284265,7.44735,1.09452,0.282732,7.44581,1.09452,0.280437,7.44527,1.09453,0.277729,7.44581,1.09454,0.275022});
			return Coordinate_6_263_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #264, 192 total numbers made up of 64 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 getNormal_6_264_vector()
		{
			MFVec3f Normal_6_264_vector = new MFVec3f(new double[] {-6.50518E-5,-0.370559,-0.928809,0.38262,-0.342352,-0.858136,0.408415,-0.194688,-0.891792,0.0400591,-0.155116,-0.987084,-0.355729,-0.166736,-0.919596,-0.489481,-0.323148,-0.809928,-0.75247,-0.244083,-0.611729,-0.545165,-0.752011,-0.370505,-0.392826,-0.874448,-0.284656,-0.675968,-0.18255,-0.713963,-0.94722,-0.118826,-0.29775,-0.742055,-0.65715,-0.132315,-0.896611,-0.102402,-0.430816,-0.997805,0.024501,0.0615154,-0.825759,-0.541663,0.157237,-0.997731,-0.0333652,-0.0584807,-0.896558,0.1641,0.411406,-0.783873,-0.423004,0.454545,-0.945866,0.0399633,0.322089,-0.658689,0.278793,0.698858,-0.622605,-0.319346,0.71441,-0.750397,0.10718,0.65224,-0.320647,0.350981,0.879772,-0.366438,-0.246374,0.897231,-0.442037,0.158211,0.882934,0.0663365,0.369742,0.926763,-0.0546498,-0.215349,0.975007,-0.0670556,0.184934,0.980461,0.443052,0.332223,0.832666,0.265553,-0.230863,0.936047,0.31906,0.183248,0.92985,0.752279,0.244171,0.611928,0.545206,-0.290585,0.786327,0.657591,0.153865,0.737495,0.947204,0.118848,0.297791,0.741995,-0.385475,0.5485,0.896541,0.10148,0.431179,1.0,-1.75558E-5,-1.47091E-4,0.693544,-0.605671,0.390076,0.997735,0.0333716,0.0584018,0.945843,-0.0410702,-0.322016,0.896446,-0.164181,-0.411617,0.75047,-0.11078,-0.651554,0.658674,-0.278795,-0.698871,3.88091E-5,-0.928861,0.370429,-4.38122E-6,-0.928803,0.370574,3.05219E-4,-0.929038,0.369983,4.9339E-4,-0.929206,0.369561,-0.0589637,0.310277,-0.948816,-0.0532547,0.990537,-0.126492,-0.682293,0.215271,-0.698666,0.261493,0.563897,-0.783353,0.53267,0.573477,-0.622404,0.724618,0.581122,-0.370441,0.808764,0.584984,-0.0607783,0.768762,0.583918,0.260855,0.608928,0.578335,0.542895,0.356223,0.569673,0.74066,0.0511504,0.560092,0.82685,-0.263183,0.551376,0.791656,-0.543524,0.544604,0.638739,-0.748263,0.540011,0.385346,-0.840611,0.537655,0.0655769,-0.799091,0.537764,-0.268818});
			return Normal_6_264_vector;
		}
		/** Large attribute array: IndexedFaceSet coordIndex field, scene-graph level=5, element #269, 384 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 getIndexedFaceSet_5_269_coordIndex()
		{
			MFInt32 IndexedFaceSet_5_269_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_269_coordIndex_1()));
			return IndexedFaceSet_5_269_coordIndex;
		}
		/** Large attribute array: IndexedFaceSet normalIndex field, scene-graph level=5, element #269, 384 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 getIndexedFaceSet_5_269_normalIndex()
		{
			MFInt32 IndexedFaceSet_5_269_normalIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_269_normalIndex_1()));
			return IndexedFaceSet_5_269_normalIndex;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=6, element #269, 150 total numbers made up of 50 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 getCoordinate_6_269_point()
		{
			MFVec3f Coordinate_6_269_point = new MFVec3f(new double[] {7.2481,1.19855,0.240539,7.24676,1.19855,0.240805,7.24676,1.16043,0.240805,7.2481,1.16043,0.240539,7.24943,1.19855,0.240805,7.25056,1.19855,0.24156,7.25132,1.19855,0.242691,7.25158,1.19855,0.244025,7.25132,1.19855,0.24536,7.25056,1.19855,0.246491,7.24943,1.19855,0.247247,7.2481,1.19855,0.247513,7.24676,1.19855,0.247247,7.24563,1.19855,0.246491,7.24488,1.19855,0.245361,7.24461,1.19855,0.244026,7.24488,1.19855,0.242692,7.24563,1.19855,0.241561,7.24943,1.16043,0.240805,7.24563,1.16043,0.241561,7.24488,1.16043,0.242692,7.24461,1.16043,0.244026,7.24488,1.16043,0.245361,7.24563,1.16043,0.246491,7.24676,1.16043,0.247247,7.2481,1.16043,0.247513,7.24943,1.16043,0.247247,7.25056,1.19769,0.246491,7.25462,1.19801,0.246491,7.25056,1.19544,0.246491,7.25462,1.19576,0.246491,7.25056,1.18544,0.246491,7.25462,1.18576,0.246491,7.25056,1.17544,0.246491,7.25462,1.17576,0.246491,7.25056,1.16544,0.246491,7.25056,1.16043,0.246491,7.25132,1.19769,0.242691,7.25056,1.16043,0.24156,7.25132,1.16043,0.242691,7.25132,1.16544,0.242691,7.25538,1.17576,0.242691,7.25132,1.17544,0.242691,7.25538,1.18576,0.242691,7.25132,1.18544,0.242691,7.25538,1.19576,0.242691,7.25132,1.19544,0.242691,7.25538,1.19801,0.242691,7.25132,1.16043,0.24536,7.25158,1.16043,0.244025});
			return Coordinate_6_269_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #270, 150 total numbers made up of 50 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 getNormal_6_270_vector()
		{
			MFVec3f Normal_6_270_vector = new MFVec3f(new double[] {1.20693E-6,0.962914,-0.26981,-0.419716,0.321149,-0.848942,-0.304029,-0.321149,-0.8969,6.20648E-7,-0.990328,-0.138746,0.341096,0.454165,-0.823035,0.749698,0.245855,-0.614416,0.862519,0.475987,-0.171747,0.0,0.0,0.0,0.0,1.0,-2.72071E-13,0.899705,0.0,0.436499,0.499521,0.244456,0.831096,0.0550457,0.56134,0.825752,-0.265574,0.561311,0.783837,-0.545238,0.561302,0.62262,-0.741974,0.561333,0.366579,-0.825819,0.561281,0.0546546,-0.783967,0.561329,-0.265152,-0.622685,0.561308,-0.545158,0.370997,-0.24699,-0.895186,-0.545288,-0.561308,-0.622571,-0.742038,-0.561329,-0.366457,-0.825823,-0.561281,-0.0545894,-0.783932,-0.561333,0.265247,-0.622607,-0.561302,0.545253,-0.366725,-0.561311,0.741918,-0.0546925,-0.56134,0.825776,0.265855,-0.561304,0.783747,0.488487,0.502938,0.713045,0.581289,-0.404263,0.706169,0.355359,0.275568,0.893187,0.786334,0.124205,0.605187,0.41116,0.358947,0.837916,0.786372,0.124209,0.605138,0.411038,0.358971,0.837966,0.786325,0.124214,0.605197,0.700888,-0.0839,0.70832,0.831582,0.0,0.555402,0.870703,0.244773,-0.426571,0.622506,-0.561302,-0.545369,0.862519,-0.475987,-0.171747,0.950952,-0.108944,-0.289519,0.380916,0.820397,-0.42644,0.775761,0.0628825,-0.627886,0.381237,0.820316,-0.426309,0.775801,0.0628818,-0.627836,0.380981,0.82038,-0.426416,0.662126,-0.171259,-0.729561,0.245716,0.755946,-0.60677,0.0,-1.0,0.0,0.0,0.0,0.0});
			return Normal_6_270_vector;
		}
		/** Large attribute array: IndexedFaceSet coordIndex field, scene-graph level=5, element #275, 384 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 getIndexedFaceSet_5_275_coordIndex()
		{
			MFInt32 IndexedFaceSet_5_275_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_275_coordIndex_1()));
			return IndexedFaceSet_5_275_coordIndex;
		}
		/** Large attribute array: IndexedFaceSet normalIndex field, scene-graph level=5, element #275, 384 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 getIndexedFaceSet_5_275_normalIndex()
		{
			MFInt32 IndexedFaceSet_5_275_normalIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_275_normalIndex_1()));
			return IndexedFaceSet_5_275_normalIndex;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=6, element #275, 150 total numbers made up of 50 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 getCoordinate_6_275_point()
		{
			MFVec3f Coordinate_6_275_point = new MFVec3f(new double[] {7.2481,1.19855,0.27517,7.24677,1.19855,0.275436,7.24677,1.16043,0.275436,7.2481,1.16043,0.27517,7.24944,1.19855,0.275436,7.25057,1.19855,0.27619,7.25132,1.19855,0.277322,7.25159,1.19855,0.278656,7.25132,1.19855,0.27999,7.25057,1.19855,0.281122,7.24944,1.19855,0.281878,7.2481,1.19855,0.282143,7.24677,1.19855,0.281878,7.24564,1.19855,0.281123,7.24488,1.19855,0.279991,7.24462,1.19855,0.278657,7.24488,1.19855,0.277323,7.24564,1.19855,0.276191,7.24944,1.16043,0.275436,7.24564,1.16043,0.276191,7.24488,1.16043,0.277323,7.24462,1.16043,0.278657,7.24488,1.16043,0.279991,7.24564,1.16043,0.281123,7.24677,1.16043,0.281878,7.2481,1.16043,0.282143,7.24944,1.16043,0.281878,7.25057,1.19769,0.281122,7.25463,1.19801,0.281122,7.25057,1.19544,0.281122,7.25463,1.19576,0.281122,7.25057,1.18544,0.281122,7.25463,1.18576,0.281122,7.25057,1.17544,0.281122,7.25463,1.17576,0.281122,7.25057,1.16544,0.281122,7.25057,1.16043,0.281122,7.25132,1.19769,0.277322,7.25057,1.16043,0.27619,7.25132,1.16043,0.277322,7.25132,1.16544,0.277322,7.25538,1.17576,0.277322,7.25132,1.17544,0.277322,7.25538,1.18576,0.277322,7.25132,1.18544,0.277322,7.25538,1.19576,0.277322,7.25132,1.19544,0.277322,7.25538,1.19801,0.277322,7.25132,1.16043,0.27999,7.25159,1.16043,0.278656});
			return Coordinate_6_275_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #276, 150 total numbers made up of 50 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 getNormal_6_276_vector()
		{
			MFVec3f Normal_6_276_vector = new MFVec3f(new double[] {1.20693E-6,0.962914,-0.26981,-0.4194,0.321135,-0.849103,-0.303867,-0.321135,-0.89696,6.20648E-7,-0.990328,-0.138746,0.34087,0.454145,-0.82314,0.749843,0.245873,-0.614233,0.862582,0.475949,-0.171537,0.0,0.0,0.0,0.0,1.0,0.0,0.89968,0.0,0.436551,0.499297,0.244463,0.831228,0.0547983,0.561281,0.825809,-0.265059,0.561334,0.783994,-0.545251,0.561325,0.622588,-0.742093,0.561312,0.36637,-0.825811,0.561287,0.054715,-0.784014,0.56131,-0.265052,-0.622749,0.561344,-0.545048,0.370749,-0.246977,-0.895292,-0.54514,-0.561344,-0.622668,-0.742166,-0.56131,-0.366225,-0.82582,-0.561287,-0.054578,-0.783966,-0.561312,0.265192,-0.622744,-0.561325,0.545073,-0.366413,-0.561334,0.742055,-0.0544458,-0.561281,0.825832,0.26534,-0.561327,0.783905,0.48841,0.502938,0.713098,0.581289,-0.404263,0.706169,0.355279,0.275563,0.89322,0.786334,0.124205,0.605187,0.411088,0.358944,0.837953,0.786372,0.124209,0.605138,0.410966,0.358967,0.838003,0.786325,0.124214,0.605197,0.700827,-0.0839014,0.70838,0.83153,0.0,0.55548,0.870811,0.244765,-0.426355,0.62257,-0.561337,-0.545259,0.862582,-0.475949,-0.171537,0.951016,-0.108937,-0.289313,0.380916,0.820397,-0.42644,0.775902,0.0628838,-0.627712,0.381237,0.820316,-0.426309,0.775943,0.0628831,-0.627661,0.380981,0.82038,-0.426416,0.662303,-0.17127,-0.729398,0.245716,0.755946,-0.60677,0.0,-1.0,0.0,0.0,0.0,0.0});
			return Normal_6_276_vector;
		}
		/** Large attribute array: IndexedFaceSet coordIndex field, scene-graph level=5, element #281, 368 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 getIndexedFaceSet_5_281_coordIndex()
		{
			MFInt32 IndexedFaceSet_5_281_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_281_coordIndex_1()));
			return IndexedFaceSet_5_281_coordIndex;
		}
		/** Large attribute array: IndexedFaceSet normalIndex field, scene-graph level=5, element #281, 368 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 getIndexedFaceSet_5_281_normalIndex()
		{
			MFInt32 IndexedFaceSet_5_281_normalIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_281_normalIndex_1()));
			return IndexedFaceSet_5_281_normalIndex;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=6, element #281, 144 total numbers made up of 48 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 getCoordinate_6_281_point()
		{
			MFVec3f Coordinate_6_281_point = new MFVec3f(new double[] {7.44404,1.1343,0.252797,7.44036,1.1343,0.252653,7.44036,1.11677,0.252653,7.44404,1.11677,0.252797,7.44738,1.1343,0.254337,7.44988,1.1343,0.257038,7.45115,1.1343,0.26049,7.45101,1.1343,0.264166,7.44947,1.1343,0.267507,7.44677,1.1343,0.270005,7.44332,1.1343,0.271279,7.43964,1.1343,0.271135,7.4363,1.1343,0.269595,7.4338,1.1343,0.266893,7.43253,1.1343,0.263442,7.43267,1.1343,0.259766,7.43421,1.1343,0.256424,7.43691,1.1343,0.253927,7.44738,1.11677,0.254337,7.43691,1.11677,0.253927,7.43421,1.11677,0.256424,7.43267,1.11677,0.259766,7.43253,1.11677,0.263442,7.4338,1.11677,0.266893,7.4363,1.11677,0.269595,7.43964,1.11677,0.271135,7.44332,1.11677,0.271279,7.44677,1.11677,0.270005,7.44947,1.11677,0.267507,7.45101,1.11677,0.264166,7.45115,1.11677,0.26049,7.44988,1.11677,0.257038,7.4445,1.09623,0.24104,7.44082,1.09623,0.240895,7.43691,1.09925,0.253927,7.43421,1.09925,0.256424,7.42091,1.09623,0.259304,7.42077,1.09623,0.262981,7.4338,1.09925,0.266893,7.4363,1.09925,0.269595,7.43918,1.09623,0.282892,7.44285,1.09623,0.283037,7.44677,1.09925,0.270005,7.44947,1.09925,0.267507,7.46276,1.09623,0.264627,7.46291,1.09623,0.260951,7.44988,1.09925,0.257038,7.44738,1.09925,0.254337});
			return Coordinate_6_281_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #282, 144 total numbers made up of 48 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 getNormal_6_282_vector()
		{
			MFVec3f Normal_6_282_vector = new MFVec3f(new double[] {0.0629644,0.962909,-0.262376,-0.209864,0.321154,-0.923481,-0.0885876,0.255812,-0.962659,0.226531,0.253571,-0.940418,0.523632,0.454178,-0.720786,0.675438,0.561311,-0.47824,0.807028,0.561311,-0.183399,0.81577,0.56132,0.139428,0.700275,0.561309,0.441075,0.47824,0.561311,0.675438,0.183399,0.561311,0.807028,-0.139428,0.56132,0.81577,-0.441075,0.561309,0.700275,-0.675438,0.561311,0.47824,-0.807028,0.561311,0.183399,-0.81577,0.56132,-0.139428,-0.700275,0.561309,-0.441075,-0.47824,0.561311,-0.675438,0.677141,0.0618238,-0.733252,-0.594204,0.0838492,-0.799932,-0.768399,0.0,-0.639972,-0.897311,0.122102,-0.424174,-0.962659,0.255812,0.0885876,-0.799932,0.0838492,0.594204,-0.639972,0.0,0.768399,-0.424174,0.122102,0.897311,0.0885876,0.255812,0.962659,0.594204,0.0838492,0.799932,0.768399,0.0,0.639972,0.897311,0.122102,0.424174,0.962659,0.255812,-0.0885876,0.799932,0.0838492,-0.594204,0.688847,-0.259249,-0.676964,-0.576182,-0.542305,-0.61149,-0.763666,-0.522712,-0.378928,-0.416195,-0.728628,-0.543951,-0.766534,-0.397805,-0.50416,-0.817862,-0.0046617,0.575396,-0.328738,-0.740688,0.585929,-0.660411,-0.615788,0.429723,-0.708166,-0.403119,0.579652,0.576182,-0.542305,0.61149,0.763666,-0.522712,0.378928,0.416195,-0.728628,0.543951,0.766534,-0.397805,0.50416,0.817862,-0.0046617,-0.575396,0.328738,-0.740688,-0.585929,0.636368,-0.735808,-0.231564});
			return Normal_6_282_vector;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=6, element #287, 135 total numbers made up of 45 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 getCoordinate_6_287_point()
		{
			MFVec3f Coordinate_6_287_point = new MFVec3f(new double[] {7.40715,1.20221,0.24097,7.40782,1.20208,0.240973,7.40782,1.2021,0.242699,7.40715,1.20224,0.242697,7.40647,1.2021,0.242699,7.40647,1.20208,0.240973,7.40839,1.2017,0.240977,7.40839,1.20172,0.242704,7.40877,1.20113,0.240984,7.40877,1.20115,0.24271,7.40891,1.20045,0.240992,7.40891,1.20047,0.242718,7.40877,1.19978,0.241,7.40877,1.1998,0.242727,7.40839,1.19921,0.241008,7.40993,1.1846,0.241187,7.41079,1.18517,0.241181,7.41079,1.1852,0.242906,7.40782,1.19883,0.241012,7.40865,1.18422,0.241193,7.40715,1.19869,0.241015,7.40715,1.18409,0.241194,7.40647,1.19883,0.241012,7.40564,1.18422,0.241193,7.4059,1.19921,0.241008,7.40436,1.1846,0.241188,7.40552,1.19978,0.241001,7.40351,1.18517,0.241182,7.40539,1.20045,0.240993,7.40539,1.20047,0.242718,7.40552,1.1998,0.242727,7.40351,1.1852,0.242907,7.40552,1.20113,0.240985,7.40552,1.20115,0.24271,7.4059,1.2017,0.240977,7.4059,1.20172,0.242704,7.41345,1.17323,0.246344,7.41538,1.1738,0.246338,7.41538,1.17382,0.248063,7.41056,1.17285,0.24635,7.40715,1.17271,0.246351,7.40374,1.17285,0.24635,7.40085,1.17323,0.246345,7.39892,1.1738,0.246339,7.39892,1.17382,0.248065});
			return Coordinate_6_287_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #288, 135 total numbers made up of 45 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 getNormal_6_288_vector()
		{
			MFVec3f Normal_6_288_vector = new MFVec3f(new double[] {-2.1746E-4,0.999922,-0.0125023,0.443411,0.896246,-0.0113701,0.304183,0.900892,0.309622,5.64307E-5,0.225112,0.974333,-0.371153,0.89816,0.2357,-0.383136,0.923616,-0.0118366,0.752594,0.658435,-0.00807801,0.545423,0.629375,0.553534,0.94732,0.320265,-0.00399249,0.742292,0.3725,0.556997,0.997823,-0.0659436,7.43024E-4,0.825961,0.0616642,0.560344,0.828419,0.0150436,-0.559908,0.593354,-0.0406819,0.803913,-4.67456E-4,-0.0123675,-0.999923,0.0658229,-0.200174,-0.977547,0.744735,0.0353553,-0.666423,0.79986,0.294419,0.523011,-3.22537E-5,-0.0123166,-0.999924,0.0282925,-0.213706,-0.976488,-1.43416E-4,-0.0123434,-0.999924,-0.0029197,-0.216334,-0.976315,-5.29403E-6,-0.0123227,-0.999924,-0.0335348,-0.209647,-0.977202,-1.34709E-4,-0.0123316,-0.999924,-0.0742204,-0.192365,-0.978513,-0.968881,-0.0325389,-0.245378,-0.716804,0.123361,-0.686275,-0.997768,0.0667725,-7.0723E-4,-0.82574,-0.0480441,0.562001,-0.549221,-0.00615361,0.835655,-0.578947,0.297787,0.759041,-0.896574,0.442861,-0.00528772,-0.783676,0.27233,0.55829,-0.659093,0.752004,-0.00926579,-0.622931,0.551601,0.554702,0.127683,-0.373697,-0.91872,0.745501,-0.00113962,-0.666503,0.612006,0.518074,0.597535,0.0602479,-0.401796,-0.913745,0.0118842,-0.412208,-0.911012,-0.0345586,-0.408651,-0.912036,-0.0908785,-0.389909,-0.916358,-0.555921,-0.150861,-0.817431,-0.784288,0.489513,0.381143});
			return Normal_6_288_vector;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=6, element #293, 123 total numbers made up of 41 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 getCoordinate_6_293_point()
		{
			MFVec3f Coordinate_6_293_point = new MFVec3f(new double[] {7.45936,1.08827,0.277608,7.46019,1.08827,0.277773,7.46019,1.09527,0.277773,7.45936,1.09527,0.277608,7.45854,1.08827,0.277773,7.45784,1.08827,0.278241,7.45737,1.08827,0.278941,7.4572,1.08827,0.279766,7.45737,1.08827,0.280592,7.45784,1.08827,0.281292,7.45854,1.08827,0.281759,7.45936,1.08827,0.281923,7.46019,1.08827,0.281759,7.46089,1.08827,0.281291,7.46135,1.08827,0.280591,7.46152,1.08827,0.279766,7.46135,1.08827,0.278941,7.46089,1.08827,0.278241,7.45854,1.09527,0.277773,7.46089,1.09527,0.278241,7.46135,1.09527,0.278941,7.46152,1.09527,0.279766,7.46135,1.09527,0.280591,7.46089,1.09527,0.281291,7.46019,1.09527,0.281759,7.45936,1.09527,0.281923,7.45854,1.09527,0.281759,7.45784,1.09177,0.281292,7.45784,1.09527,0.281292,7.45737,1.09527,0.280592,7.4572,1.09527,0.279766,7.45737,1.09527,0.278941,7.45784,1.09527,0.278241,7.46183,1.09183,0.282234,7.46183,1.08976,0.282234,7.45675,1.08976,0.282235,7.45675,1.09183,0.282235,7.46183,1.09183,0.277237,7.46183,1.08976,0.277237,7.45675,1.09183,0.277238,7.45675,1.08976,0.277238});
			return Coordinate_6_293_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #294, 123 total numbers made up of 41 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 getNormal_6_294_vector()
		{
			MFVec3f Normal_6_294_vector = new MFVec3f(new double[] {-3.78024E-5,-0.962922,-0.26978,0.419947,-0.321142,-0.84883,0.304362,0.321142,-0.89679,-1.94392E-5,0.99033,-0.138729,-0.341564,-0.454153,-0.822848,-0.54539,-0.561305,-0.622483,-0.742065,-0.561324,-0.366409,-0.82582,-0.561288,-0.0545623,-0.783919,-0.561324,0.265304,-0.622588,-0.561316,0.54526,-0.420966,-0.452418,0.786197,-0.0545814,-0.561285,0.825821,0.265316,-0.561333,0.783909,0.54529,-0.561299,0.622577,0.741844,-0.561286,0.366914,0.825729,-0.561384,0.0549617,0.783664,-0.561286,-0.266136,0.622582,-0.561288,-0.545296,-0.371504,0.246982,-0.894977,0.54529,0.561288,-0.622586,0.741767,0.561286,-0.36707,0.825717,0.561384,-0.0551347,0.78372,0.561286,0.265972,0.622637,0.561299,0.545222,0.366644,0.561333,0.741942,0.0546963,0.561285,0.825813,-0.265139,0.561324,0.783975,-0.555446,0.0,0.831552,-0.54513,0.561316,0.622703,-0.741988,0.561324,0.366564,-0.825809,0.561288,0.0547352,-0.783975,0.561324,-0.265139,-0.622761,0.561305,-0.545073,0.577411,0.57735,0.57729,0.408291,-0.816497,0.408206,-0.408163,-0.408248,0.816539,-0.816454,0.408248,0.408334,0.57729,0.57735,-0.577411,0.666597,-0.333333,-0.666736,-0.333403,0.666667,-0.666632,-0.666702,-0.666667,-0.333264});
			return Normal_6_294_vector;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #300, 120 total numbers made up of 40 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 getNormal_6_300_vector()
		{
			MFVec3f Normal_6_300_vector = new MFVec3f(new double[] {-1.87701E-5,0.962902,-0.26985,-0.418987,0.321145,-0.849303,-0.303313,-0.321145,-0.897144,-9.65234E-6,-0.990325,-0.138768,0.340758,0.4542,-0.823156,0.545311,0.561326,-0.622534,0.742129,0.561309,-0.366301,0.825813,0.561285,-0.0546963,0.783921,0.561341,0.265264,0.622626,0.561282,0.545252,0.366809,0.561341,0.741854,0.0547544,0.561285,0.825809,-0.264977,0.561309,0.78404,-0.545101,0.561367,0.622682,-0.742115,0.561242,0.366433,-0.825717,0.561381,0.0551539,-0.783981,0.561211,-0.265359,-0.623245,0.561411,-0.544411,0.370635,-0.247012,-0.895329,-0.54529,-0.561411,-0.622476,-0.742465,-0.561211,-0.36577,-0.825733,-0.561381,-0.0549225,-0.783806,-0.561242,0.265811,-0.62284,-0.561367,0.54492,-0.366146,-0.561309,0.742206,-0.0545233,-0.561285,0.825825,0.265429,-0.561341,0.783865,0.545383,-0.561282,0.622511,0.741931,-0.561341,0.366654,0.825821,-0.561285,0.0545814,0.783985,-0.561309,-0.265141,0.622803,-0.561326,-0.545005,-0.57729,-0.57735,0.577411,-0.408206,0.816497,0.408291,0.408334,0.408248,0.816454,0.816539,-0.408248,0.408163,-0.577411,-0.57735,-0.57729,-0.666736,0.333333,-0.666597,0.333264,-0.666667,-0.666702,0.666632,0.666667,-0.333403});
			return Normal_6_300_vector;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #306, 120 total numbers made up of 40 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 getNormal_6_306_vector()
		{
			MFVec3f Normal_6_306_vector = new MFVec3f(new double[] {-7.56363E-5,0.9629,-0.269857,-0.419575,0.321168,-0.849004,-0.303647,-0.321168,-0.897023,-3.88952E-5,-0.990324,-0.138772,0.34053,0.454206,-0.823248,0.545281,0.561343,-0.622546,0.742209,0.561299,-0.366154,0.825813,0.561285,-0.0546963,0.783953,0.56133,0.26519,0.622691,0.561299,0.54516,0.366622,0.561346,0.741943,0.0545408,0.561276,0.82583,-0.265264,0.561341,0.783921,-0.545252,0.561282,0.622626,-0.741854,0.561341,0.366809,-0.825809,0.561285,0.0547544,-0.78404,0.561309,-0.264977,-0.622917,0.561326,-0.544874,0.370388,-0.247016,-0.895431,-0.545442,-0.561326,-0.62242,-0.742206,-0.561309,-0.366146,-0.825825,-0.561285,-0.0545233,-0.783865,-0.561341,0.265429,-0.622511,-0.561282,0.545383,-0.366654,-0.561341,0.741931,-0.0546578,-0.561276,0.825822,0.265191,-0.561346,0.783942,0.545352,-0.561299,0.622523,0.742011,-0.56133,0.366507,0.825821,-0.561285,0.0545814,0.784018,-0.561299,-0.265066,0.622868,-0.561343,-0.544912,-0.57729,-0.57735,0.577411,-0.408206,0.816497,0.408291,0.408334,0.408248,0.816454,0.816539,-0.408248,0.408163,-0.577411,-0.57735,-0.57729,-0.666736,0.333333,-0.666597,0.333264,-0.666667,-0.666702,0.666632,0.666667,-0.333403});
			return Normal_6_306_vector;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #312, 120 total numbers made up of 40 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 getNormal_6_312_vector()
		{
			MFVec3f Normal_6_312_vector = new MFVec3f(new double[] {-3.77472E-5,-0.962902,-0.26985,0.419378,-0.32117,-0.849101,0.303417,0.32117,-0.8971,-1.94111E-5,0.990325,-0.138768,-0.340525,-0.454165,-0.823272,-0.545064,-0.56137,-0.622711,-0.742286,-0.561299,-0.365999,-0.825825,-0.561285,-0.0545233,-0.783898,-0.56133,0.265354,-0.62242,-0.561326,0.545442,-0.366163,-0.561307,0.742199,-0.0545814,-0.561285,0.825821,0.265391,-0.561343,0.783876,0.545383,-0.561282,0.622511,0.741931,-0.561341,0.366654,0.825821,-0.561285,0.0545814,0.783985,-0.561309,-0.265141,0.622803,-0.561326,-0.545005,-0.370376,0.246989,-0.895443,0.545311,0.561326,-0.622534,0.742129,0.561309,-0.366301,0.825813,0.561285,-0.0546963,0.783921,0.561341,0.265264,0.622626,0.561282,0.545252,0.366791,0.561343,0.741861,0.0546963,0.561285,0.825813,-0.265014,0.561307,0.784029,-0.544874,0.561326,0.622917,-0.741935,0.56133,0.366662,-0.825809,0.561285,0.0547544,-0.784073,0.561299,-0.264902,-0.622826,0.56137,-0.544933,0.577411,0.57735,0.57729,0.408291,-0.816497,0.408206,-0.408163,-0.408248,0.816539,-0.816454,0.408248,0.408334,0.57729,0.57735,-0.577411,0.666597,-0.333333,-0.666736,-0.333403,0.666667,-0.666632,-0.666702,-0.666667,-0.333264});
			return Normal_6_312_vector;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #318, 120 total numbers made up of 40 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 getNormal_6_318_vector()
		{
			MFVec3f Normal_6_318_vector = new MFVec3f(new double[] {-3.77472E-5,-0.962902,-0.26985,0.419378,-0.32117,-0.849101,0.303417,0.32117,-0.8971,-1.94111E-5,0.990325,-0.138768,-0.340849,-0.454193,-0.823122,-0.545411,-0.561343,-0.622431,-0.742286,-0.561299,-0.365999,-0.825825,-0.561285,-0.0545233,-0.783898,-0.56133,0.265354,-0.622577,-0.561299,0.54529,-0.366555,-0.561334,0.741985,-0.0545814,-0.561285,0.825821,0.265391,-0.561343,0.783876,0.545383,-0.561282,0.622511,0.74179,-0.561293,0.367012,0.825729,-0.561381,0.054981,0.783763,-0.561261,-0.265898,0.622803,-0.561326,-0.545005,-0.370733,0.247007,-0.89529,0.545311,0.561326,-0.622534,0.741988,0.561261,-0.36666,0.825721,0.561381,-0.0550954,0.783698,0.561293,0.266022,0.622626,0.561282,0.545252,0.366791,0.561343,0.741861,0.0546963,0.561285,0.825813,-0.265214,0.561334,0.783942,-0.545222,0.561299,0.622637,-0.741935,0.56133,0.366662,-0.825809,0.561285,0.0547544,-0.784073,0.561299,-0.264902,-0.622982,0.561343,-0.544782,0.577411,0.57735,0.57729,0.408291,-0.816497,0.408206,-0.408163,-0.408248,0.816539,-0.816454,0.408248,0.408334,0.57729,0.57735,-0.577411,0.666597,-0.333333,-0.666736,-0.333403,0.666667,-0.666632,-0.666702,-0.666667,-0.333264});
			return Normal_6_318_vector;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #330, 120 total numbers made up of 40 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 getNormal_6_330_vector()
		{
			MFVec3f Normal_6_330_vector = new MFVec3f(new double[] {-1.87002E-5,0.962922,-0.26978,-0.419557,0.321116,-0.849033,-0.304258,-0.321116,-0.896834,-9.61624E-6,-0.99033,-0.138729,0.341473,0.45416,-0.822882,0.54529,0.561288,-0.622586,0.741908,0.561334,-0.366711,0.825809,0.561288,-0.0547352,0.783942,0.561334,0.265214,0.622637,0.561299,0.545222,0.366662,0.56133,0.741935,0.0547544,0.561285,0.825809,-0.264902,0.561299,0.784073,-0.545009,0.561384,0.622747,-0.742168,0.561235,0.366335,-0.825717,0.561384,0.0551347,-0.783883,0.561235,-0.265597,-0.623024,0.561373,-0.544703,0.371406,-0.246986,-0.895017,-0.545269,-0.561373,-0.622528,-0.742245,-0.561235,-0.36618,-0.825729,-0.561384,-0.0549617,-0.783828,-0.561235,0.265761,-0.622851,-0.561384,0.54489,-0.365999,-0.561299,0.742286,-0.0545233,-0.561285,0.825825,0.265354,-0.56133,0.783898,0.54529,-0.561299,0.622577,0.741985,-0.561334,0.366555,0.82582,-0.561288,0.0545623,0.783887,-0.561334,-0.265379,0.622582,-0.561288,-0.545296,-0.57729,-0.57735,0.577411,-0.408206,0.816497,0.408291,0.408334,0.408248,0.816454,0.816539,-0.408248,0.408163,-0.577411,-0.57735,-0.57729,-0.666736,0.333333,-0.666597,0.333264,-0.666667,-0.666702,0.666632,0.666667,-0.333403});
			return Normal_6_330_vector;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #336, 120 total numbers made up of 40 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 getNormal_6_336_vector()
		{
			MFVec3f Normal_6_336_vector = new MFVec3f(new double[] {-7.59411E-5,0.96292,-0.269787,-0.420145,0.32114,-0.848733,-0.304593,-0.32114,-0.896712,-3.90514E-5,-0.99033,-0.138733,0.341243,0.454166,-0.822974,0.54526,0.561305,-0.622598,0.741988,0.561324,-0.366564,0.825809,0.561288,-0.0547352,0.783975,0.561324,0.265139,0.622703,0.561316,0.54513,0.366475,0.561336,0.742023,0.0545408,0.561276,0.82583,-0.26519,0.56133,0.783953,-0.54516,0.561299,0.622691,-0.741908,0.561334,0.366711,-0.825809,0.561288,0.0547352,-0.783942,0.561334,-0.265214,-0.622696,0.561288,-0.545165,0.371158,-0.24699,-0.895119,-0.545421,-0.561288,-0.622472,-0.741985,-0.561334,-0.366555,-0.82582,-0.561288,-0.0545623,-0.783887,-0.561334,0.265379,-0.622523,-0.561299,0.545352,-0.366507,-0.56133,0.742011,-0.0546578,-0.561276,0.825822,0.265116,-0.561336,0.783974,0.54526,-0.561316,0.622588,0.742065,-0.561324,0.366409,0.82582,-0.561288,0.0545623,0.783919,-0.561324,-0.265304,0.622647,-0.561305,-0.545203,-0.57729,-0.57735,0.577411,-0.408206,0.816497,0.408291,0.408334,0.408248,0.816454,0.816539,-0.408248,0.408163,-0.577411,-0.57735,-0.57729,-0.666736,0.333333,-0.666597,0.333264,-0.666667,-0.666702,0.666632,0.666667,-0.333403});
			return Normal_6_336_vector;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #342, 120 total numbers made up of 40 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 getNormal_6_342_vector()
		{
			MFVec3f Normal_6_342_vector = new MFVec3f(new double[] {-3.78024E-5,-0.962922,-0.26978,0.419947,-0.321142,-0.84883,0.304362,0.321142,-0.89679,-1.94392E-5,0.99033,-0.138729,-0.341239,-0.454125,-0.822999,-0.545042,-0.561333,-0.622764,-0.742065,-0.561324,-0.366409,-0.82582,-0.561288,-0.0545623,-0.783919,-0.561324,0.265304,-0.622431,-0.561343,0.545411,-0.366017,-0.561297,0.742279,-0.0545814,-0.561285,0.825821,0.265316,-0.561333,0.783909,0.54529,-0.561299,0.622577,0.741985,-0.561334,0.366555,0.82582,-0.561288,0.0545623,0.783887,-0.561334,-0.265379,0.622582,-0.561288,-0.545296,-0.371147,0.246963,-0.895131,0.54529,0.561288,-0.622586,0.741908,0.561334,-0.366711,0.825809,0.561288,-0.0547352,0.783942,0.561334,0.265214,0.622637,0.561299,0.545222,0.366644,0.561333,0.741942,0.0546963,0.561285,0.825813,-0.26494,0.561297,0.784062,-0.544782,0.561343,0.622982,-0.741988,0.561324,0.366564,-0.825809,0.561288,0.0547352,-0.783975,0.561324,-0.265139,-0.622604,0.561333,-0.545224,0.577411,0.57735,0.57729,0.408291,-0.816497,0.408206,-0.408163,-0.408248,0.816539,-0.816454,0.408248,0.408334,0.57729,0.57735,-0.577411,0.666597,-0.333333,-0.666736,-0.333403,0.666667,-0.666632,-0.666702,-0.666667,-0.333264});
			return Normal_6_342_vector;
		}
		/** Large attribute array: IndexedFaceSet coordIndex field, scene-graph level=5, element #408, 952 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 getIndexedFaceSet_5_408_coordIndex()
		{
			MFInt32 IndexedFaceSet_5_408_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_408_coordIndex_1()));
			return IndexedFaceSet_5_408_coordIndex;
		}
		/** Large attribute array: IndexedFaceSet normalIndex field, scene-graph level=5, element #408, 952 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 getIndexedFaceSet_5_408_normalIndex()
		{
			MFInt32 IndexedFaceSet_5_408_normalIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_408_normalIndex_1()));
			return IndexedFaceSet_5_408_normalIndex;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=6, element #408, 384 total numbers made up of 128 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 getCoordinate_6_408_point()
		{
			MFVec3f Coordinate_6_408_point = new MFVec3f()/*2.finalize*/
				.append(new MFVec3f(getCoordinate_6_408_point_1()))
				.append(new MFVec3f(getCoordinate_6_408_point_2()));
			return Coordinate_6_408_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #409, 384 total numbers made up of 128 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 getNormal_6_409_vector()
		{
			MFVec3f Normal_6_409_vector = new MFVec3f()/*2.finalize*/
				.append(new MFVec3f(getNormal_6_409_vector_1()))
				.append(new MFVec3f(getNormal_6_409_vector_2()));
			return Normal_6_409_vector;
		}
		/** Large attribute array: IndexedFaceSet coordIndex field, scene-graph level=5, element #414, 824 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 getIndexedFaceSet_5_414_coordIndex()
		{
			MFInt32 IndexedFaceSet_5_414_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_414_coordIndex_1()));
			return IndexedFaceSet_5_414_coordIndex;
		}
		/** Large attribute array: IndexedFaceSet normalIndex field, scene-graph level=5, element #414, 824 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 getIndexedFaceSet_5_414_normalIndex()
		{
			MFInt32 IndexedFaceSet_5_414_normalIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_414_normalIndex_1()));
			return IndexedFaceSet_5_414_normalIndex;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=6, element #414, 336 total numbers made up of 112 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 getCoordinate_6_414_point()
		{
			MFVec3f Coordinate_6_414_point = new MFVec3f()/*2.finalize*/
				.append(new MFVec3f(getCoordinate_6_414_point_1()))
				.append(new MFVec3f(getCoordinate_6_414_point_2()));
			return Coordinate_6_414_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #415, 336 total numbers made up of 112 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 getNormal_6_415_vector()
		{
			MFVec3f Normal_6_415_vector = new MFVec3f()/*2.finalize*/
				.append(new MFVec3f(getNormal_6_415_vector_1()))
				.append(new MFVec3f(getNormal_6_415_vector_2()));
			return Normal_6_415_vector;
		}
		/** Large attribute array: IndexedFaceSet coordIndex field, scene-graph level=5, element #420, 644 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 getIndexedFaceSet_5_420_coordIndex()
		{
			MFInt32 IndexedFaceSet_5_420_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_420_coordIndex_1()));
			return IndexedFaceSet_5_420_coordIndex;
		}
		/** Large attribute array: IndexedFaceSet normalIndex field, scene-graph level=5, element #420, 644 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 getIndexedFaceSet_5_420_normalIndex()
		{
			MFInt32 IndexedFaceSet_5_420_normalIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_420_normalIndex_1()));
			return IndexedFaceSet_5_420_normalIndex;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=6, element #420, 318 total numbers made up of 106 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 getCoordinate_6_420_point()
		{
			MFVec3f Coordinate_6_420_point = new MFVec3f()/*2.finalize*/
				.append(new MFVec3f(getCoordinate_6_420_point_1()))
				.append(new MFVec3f(getCoordinate_6_420_point_2()));
			return Coordinate_6_420_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #421, 318 total numbers made up of 106 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 getNormal_6_421_vector()
		{
			MFVec3f Normal_6_421_vector = new MFVec3f()/*2.finalize*/
				.append(new MFVec3f(getNormal_6_421_vector_1()))
				.append(new MFVec3f(getNormal_6_421_vector_2()));
			return Normal_6_421_vector;
		}
		/** Large attribute array: IndexedFaceSet coordIndex field, scene-graph level=5, element #426, 648 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 getIndexedFaceSet_5_426_coordIndex()
		{
			MFInt32 IndexedFaceSet_5_426_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_426_coordIndex_1()));
			return IndexedFaceSet_5_426_coordIndex;
		}
		/** Large attribute array: IndexedFaceSet normalIndex field, scene-graph level=5, element #426, 648 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 getIndexedFaceSet_5_426_normalIndex()
		{
			MFInt32 IndexedFaceSet_5_426_normalIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_426_normalIndex_1()));
			return IndexedFaceSet_5_426_normalIndex;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=6, element #426, 267 total numbers made up of 89 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 getCoordinate_6_426_point()
		{
			MFVec3f Coordinate_6_426_point = new MFVec3f(new double[] {-7.888,1.13287,1.37006,-7.888,1.15519,1.37006,-7.888,1.15474,1.38067,-7.888,1.14815,1.39129,-7.888,1.14676,1.41251,-7.888,1.14597,1.43374,-7.888,1.14597,1.44277,-7.888,1.13287,1.44277,-7.84496,1.13287,1.37006,-7.84496,1.15519,1.37006,-7.88574,1.13287,1.44277,-7.87078,1.13287,1.44277,-7.86217,1.13287,1.44277,-7.84691,1.13287,1.44277,-7.84496,1.13287,1.44277,-7.84496,1.15519,1.33311,-7.84496,1.15519,1.29616,-7.84496,1.15519,1.25921,-7.888,1.15519,1.25921,-7.888,1.15519,1.29616,-7.888,1.15519,1.33311,-7.888,1.16043,1.37028,-7.888,1.15999,1.3809,-7.97481,1.15519,1.33311,-7.97481,1.15519,1.37006,-7.97481,1.16043,1.37028,-7.84496,1.14597,1.44277,-7.84496,1.14597,1.43374,-7.84496,1.14676,1.41251,-7.84496,1.14815,1.39129,-7.84496,1.15474,1.38067,-7.84496,1.15999,1.3809,-7.84496,1.16043,1.37028,-7.84496,1.16043,1.24014,-7.84496,1.15519,1.22226,-7.888,1.14787,1.45364,-7.888,1.13097,1.45364,-7.88574,1.13097,1.45364,-7.84691,1.14597,1.44277,-7.86217,1.14597,1.44277,-7.87078,1.14597,1.44277,-7.88574,1.14597,1.44277,-7.88574,1.14787,1.45364,-7.84496,1.13097,1.45364,-7.84496,1.14787,1.45364,-7.84691,1.14787,1.45364,-7.84691,1.13097,1.45364,-7.888,1.16043,1.33304,-7.888,1.16043,1.31822,-7.888,1.16043,1.2922,-7.888,1.16043,1.26617,-7.888,1.16043,1.24014,-7.88223,1.16071,1.24014,-7.88223,1.16071,1.37028,-7.85072,1.16071,1.37028,-7.85072,1.16071,1.24014,-7.97082,1.16035,1.36857,-7.89199,1.16035,1.36857,-7.89199,1.16035,1.33476,-7.84129,1.15519,1.18531,-7.84129,1.16043,1.18553,-7.85931,1.16043,1.18553,-7.87365,1.16043,1.18553,-7.89166,1.16043,1.18553,-7.89166,1.15519,1.18531,-7.888,1.15519,1.22226,-7.888,1.19528,1.24014,-7.84496,1.19528,1.24014,-7.84974,1.19528,1.22194,-7.85452,1.19528,1.20374,-7.85931,1.19528,1.18553,-7.87365,1.19528,1.18553,-7.87844,1.19528,1.20374,-7.88322,1.19528,1.22194,-7.97481,1.16043,1.33304,-7.83642,1.19931,1.18553,-7.89653,1.19931,1.18553,-7.8429,1.19931,1.20374,-7.888,1.19931,1.24014,-7.84496,1.19931,1.24014,-7.84974,1.19931,1.22194,-7.88322,1.19931,1.22194,-7.89006,1.19931,1.20374,-7.97082,1.16035,1.33476,-7.97082,1.19918,1.36857,-7.89199,1.19918,1.36857,-7.88338,1.19918,1.36857,-7.88338,1.16035,1.36857,-7.88338,1.16035,1.33476});
			return Coordinate_6_426_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #427, 267 total numbers made up of 89 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 getNormal_6_427_vector()
		{
			MFVec3f Normal_6_427_vector = new MFVec3f(new double[] {-0.688247,-0.688247,-0.229416,-0.437526,-0.887342,0.145583,-0.750817,0.191524,0.632133,-0.458145,0.846373,0.271582,-0.554734,0.831123,0.0387978,-0.707168,0.706922,0.0131979,-0.601441,0.795925,-0.0690788,-0.708284,-0.701226,-0.0813378,0.96225,-0.19245,-0.19245,0.937043,-0.156174,-0.312348,0.380955,-0.568585,0.729099,0.0,-1.0,2.39329E-15,0.0,-1.0,3.12479E-15,-0.542412,-0.809564,0.224489,0.448557,-0.890408,-0.0772668,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,-0.707107,-0.707107,0.0,-1.0,2.86284E-13,0.0,-0.66471,-0.341172,-0.664652,-0.149389,0.950987,0.270751,-0.81652,0.390701,0.425026,-0.66471,-0.669119,-0.332326,-0.569408,-0.593401,0.568902,-0.586689,0.56783,0.577378,0.800959,0.594731,-0.0689959,0.447276,0.89424,0.0166951,0.554734,0.830726,0.0465366,0.839699,0.517084,0.16592,0.603979,0.500369,0.620355,0.577384,0.552551,0.601095,0.500209,0.715586,0.487574,0.968196,0.206706,0.140956,0.642043,-0.766045,0.0309004,-0.841002,0.414213,0.348056,-0.433923,-0.427437,0.7931,0.433923,-0.854874,0.284431,-0.433928,0.427439,0.793097,0.0,0.0,1.0,0.0,0.0,1.0,0.613666,0.60449,0.507942,0.613666,0.60449,0.507942,0.894427,-0.440529,-0.0770355,0.707107,0.696534,-0.121823,-0.707107,0.696534,-0.121823,-0.447214,-0.881057,-0.154071,-0.189113,0.971116,-0.145499,-0.0474351,0.998874,0.0,-0.0474351,0.998874,0.0,-0.0474351,0.998874,0.0,-0.980593,0.195982,0.00537089,-0.0474351,0.998874,0.0,-0.0335417,0.706311,0.707107,0.0335417,0.706311,0.707107,0.0474351,0.998874,0.0,0.00903475,0.809722,0.586744,-0.0223047,0.998403,-0.0519079,-0.0445871,0.997655,0.0519188,0.403668,-0.447913,-0.797764,0.581487,0.605582,-0.543271,0.271521,0.304267,-0.913071,-0.21523,0.241187,-0.946311,-0.696962,0.303644,-0.64965,-0.602605,-0.582695,-0.545284,-0.574391,-0.817966,0.0317266,-0.791868,0.0,0.610692,0.791868,0.0,0.610692,0.967164,-1.22107E-5,-0.254155,0.869859,-0.460144,-0.177801,0.443053,-0.350365,-0.825196,-0.607645,-0.480524,-0.632348,-0.790839,-0.575658,-0.207826,-0.968848,-0.219064,-0.115518,-0.259667,0.80765,-0.529409,0.124033,0.729247,-0.672915,-0.0888777,0.0087347,-0.996004,0.688603,-0.720506,0.0818328,-0.433247,0.447951,0.782072,0.412713,0.853441,0.318286,0.831056,0.53117,-0.16494,-0.690845,0.722021,-0.0376729,-0.835238,0.5378,0.114668,0.00743527,0.999372,0.0346421,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,-0.894427,0.447214,0.0,-1.0,0.0});
			return Normal_6_427_vector;
		}
		/** Large attribute array: IndexedFaceSet coordIndex field, scene-graph level=5, element #432, 532 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 getIndexedFaceSet_5_432_coordIndex()
		{
			MFInt32 IndexedFaceSet_5_432_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_432_coordIndex_1()));
			return IndexedFaceSet_5_432_coordIndex;
		}
		/** Large attribute array: IndexedFaceSet normalIndex field, scene-graph level=5, element #432, 532 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 getIndexedFaceSet_5_432_normalIndex()
		{
			MFInt32 IndexedFaceSet_5_432_normalIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_432_normalIndex_1()));
			return IndexedFaceSet_5_432_normalIndex;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=6, element #432, 222 total numbers made up of 74 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 getCoordinate_6_432_point()
		{
			MFVec3f Coordinate_6_432_point = new MFVec3f(new double[] {-7.88737,1.09168,1.35954,-7.84559,1.09168,1.35954,-7.84559,1.09489,1.35954,-7.85081,1.09489,1.35954,-7.85604,1.09489,1.35954,-7.86126,1.09489,1.35954,-7.86648,1.09489,1.35954,-7.8717,1.09489,1.35954,-7.87692,1.09489,1.35954,-7.88215,1.09489,1.35954,-7.88737,1.09489,1.35954,-7.89259,1.09168,1.36477,-7.89259,1.09168,1.36999,-7.89259,1.09168,1.37521,-7.89259,1.09168,1.38043,-7.89259,1.09168,1.38565,-7.89259,1.09168,1.39088,-7.89259,1.09168,1.3961,-7.89259,1.09168,1.40132,-7.89259,1.09168,1.40654,-7.88737,1.09168,1.41177,-7.88215,1.09168,1.41177,-7.87692,1.09168,1.41177,-7.8717,1.09168,1.41177,-7.86648,1.09168,1.41177,-7.86126,1.09168,1.41177,-7.85604,1.09168,1.41177,-7.85081,1.09168,1.41177,-7.84559,1.09168,1.41177,-7.84037,1.09168,1.40654,-7.84037,1.09168,1.40132,-7.84037,1.09168,1.3961,-7.84037,1.09168,1.39088,-7.84037,1.09168,1.38565,-7.84037,1.09168,1.38043,-7.84037,1.09168,1.37521,-7.84037,1.09168,1.36999,-7.84037,1.09168,1.36477,-7.89259,1.09489,1.36477,-7.84037,1.09489,1.36477,-7.89259,1.09489,1.36999,-7.89259,1.09489,1.37521,-7.89259,1.09489,1.38043,-7.89259,1.09489,1.38565,-7.89259,1.09489,1.39088,-7.89259,1.09489,1.3961,-7.89259,1.09489,1.40132,-7.89259,1.09489,1.40654,-7.88737,1.09489,1.41177,-7.84037,1.09489,1.36999,-7.84037,1.09489,1.37521,-7.84037,1.09489,1.38043,-7.84037,1.09489,1.38565,-7.84037,1.09489,1.39088,-7.84037,1.09489,1.3961,-7.84037,1.09489,1.40132,-7.84037,1.09489,1.40654,-7.84559,1.09489,1.41177,-7.85081,1.09489,1.41177,-7.85604,1.09489,1.41177,-7.86126,1.09489,1.41177,-7.86648,1.09489,1.41177,-7.8717,1.09489,1.41177,-7.87692,1.09489,1.41177,-7.88215,1.09489,1.41177,-7.88737,1.09168,1.35954,-7.88215,1.09168,1.35954,-7.87692,1.09168,1.35954,-7.8717,1.09168,1.35954,-7.86648,1.09168,1.35954,-7.86126,1.09168,1.35954,-7.85604,1.09168,1.35954,-7.85081,1.09168,1.35954,-7.84559,1.09168,1.35954});
			return Coordinate_6_432_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #433, 222 total numbers made up of 74 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 getNormal_6_433_vector()
		{
			MFVec3f Normal_6_433_vector = new MFVec3f(new double[] {-0.0488108,-0.93189,-0.359441,0.475963,-0.336557,-0.81252,0.237982,0.336557,-0.911095,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,-0.026128,0.997666,-0.0630786,-0.992134,-0.102207,-0.0722713,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,-0.70196,-0.581522,0.411198,-0.0711648,-0.201284,0.976944,0.0,-1.0,0.0,0.0,-1.0,-6.36229E-15,0.0,-1.0,-6.36229E-15,0.0,-1.0,0.0,0.0,-1.0,-1.27246E-14,0.0,-1.0,-1.27246E-14,0.0,-1.0,0.0,0.411198,-0.581522,0.70196,0.787122,-0.581522,0.205599,0.707107,-0.707107,0.0,0.707107,-0.707107,0.0,0.707107,-0.707107,0.0,0.707107,-0.707107,0.0,0.707107,-0.707107,0.0,0.707107,-0.707107,0.0,0.707107,-0.707107,0.0,0.626943,-0.73451,-0.259688,-0.81252,0.336557,-0.475963,0.973436,0.186944,-0.132189,-0.707107,0.707107,0.0,-0.707107,0.707107,0.0,-0.707107,0.707107,0.0,-0.707107,0.707107,0.0,-0.707107,0.707107,0.0,-0.707107,0.707107,0.0,-0.707107,0.707107,0.0,-0.787122,0.581522,0.205599,-0.411198,0.581522,0.70196,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.70196,0.581522,0.411198,0.205599,0.581522,0.787122,0.0,0.707107,0.707107,0.0,0.707107,0.707107,0.0,0.707107,0.707107,0.0,0.707107,0.707107,0.0,0.707107,0.707107,0.0,0.707107,0.707107,0.0,0.707107,0.707107,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0});
			return Normal_6_433_vector;
		}
		/** Large attribute array: IndexedFaceSet coordIndex field, scene-graph level=5, element #438, 532 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 getIndexedFaceSet_5_438_coordIndex()
		{
			MFInt32 IndexedFaceSet_5_438_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_438_coordIndex_1()));
			return IndexedFaceSet_5_438_coordIndex;
		}
		/** Large attribute array: IndexedFaceSet normalIndex field, scene-graph level=5, element #438, 532 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 getIndexedFaceSet_5_438_normalIndex()
		{
			MFInt32 IndexedFaceSet_5_438_normalIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_438_normalIndex_1()));
			return IndexedFaceSet_5_438_normalIndex;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=6, element #438, 222 total numbers made up of 74 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 getCoordinate_6_438_point()
		{
			MFVec3f Coordinate_6_438_point = new MFVec3f(new double[] {-7.88528,1.09395,1.36216,-7.84768,1.09395,1.36216,-7.84768,1.099,1.36216,-7.85238,1.099,1.36216,-7.85708,1.099,1.36216,-7.86178,1.099,1.36216,-7.86648,1.099,1.36216,-7.87118,1.099,1.36216,-7.87588,1.099,1.36216,-7.88058,1.099,1.36216,-7.88528,1.099,1.36216,-7.88998,1.09395,1.36686,-7.88998,1.09395,1.37156,-7.88998,1.09395,1.37625,-7.88998,1.09395,1.38095,-7.88998,1.09395,1.38565,-7.88998,1.09395,1.39035,-7.88998,1.09395,1.39505,-7.88998,1.09395,1.39975,-7.88998,1.09395,1.40445,-7.88528,1.09395,1.40915,-7.88058,1.09395,1.40915,-7.87588,1.09395,1.40915,-7.87118,1.09395,1.40915,-7.86648,1.09395,1.40915,-7.86178,1.09395,1.40915,-7.85708,1.09395,1.40915,-7.85238,1.09395,1.40915,-7.84768,1.09395,1.40915,-7.84298,1.09395,1.40445,-7.84298,1.09395,1.39975,-7.84298,1.09395,1.39505,-7.84298,1.09395,1.39035,-7.84298,1.09395,1.38565,-7.84298,1.09395,1.38095,-7.84298,1.09395,1.37625,-7.84298,1.09395,1.37156,-7.84298,1.09395,1.36686,-7.88998,1.099,1.36686,-7.84298,1.099,1.36686,-7.88998,1.099,1.37156,-7.88998,1.099,1.37625,-7.88998,1.099,1.38095,-7.88998,1.099,1.38565,-7.88998,1.099,1.39035,-7.88998,1.099,1.39505,-7.88998,1.099,1.39975,-7.88998,1.099,1.40445,-7.88528,1.099,1.40915,-7.84298,1.099,1.37156,-7.84298,1.099,1.37625,-7.84298,1.099,1.38095,-7.84298,1.099,1.38565,-7.84298,1.099,1.39035,-7.84298,1.099,1.39505,-7.84298,1.099,1.39975,-7.84298,1.099,1.40445,-7.84768,1.099,1.40915,-7.85238,1.099,1.40915,-7.85708,1.099,1.40915,-7.86178,1.099,1.40915,-7.86648,1.099,1.40915,-7.87118,1.099,1.40915,-7.87588,1.099,1.40915,-7.88058,1.099,1.40915,-7.88528,1.09395,1.36216,-7.88058,1.09395,1.36216,-7.87588,1.09395,1.36216,-7.87118,1.09395,1.36216,-7.86648,1.09395,1.36216,-7.86178,1.09395,1.36216,-7.85708,1.09395,1.36216,-7.85238,1.09395,1.36216,-7.84768,1.09395,1.36216});
			return Coordinate_6_438_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #439, 222 total numbers made up of 74 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 getNormal_6_439_vector()
		{
			MFVec3f Normal_6_439_vector = new MFVec3f(new double[] {-0.0488108,-0.93189,-0.359441,0.475963,-0.336557,-0.81252,0.237982,0.336557,-0.911095,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,-0.026128,0.997666,-0.0630786,-0.992134,-0.102207,-0.0722713,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,-0.70196,-0.581522,0.411198,-0.0711648,-0.201284,0.976944,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,-1.5707E-14,0.0,-1.0,-1.5707E-14,0.411198,-0.581522,0.70196,0.787122,-0.581522,0.205599,0.707107,-0.707107,0.0,0.707107,-0.707107,0.0,0.707107,-0.707107,0.0,0.707107,-0.707107,0.0,0.707107,-0.707107,0.0,0.707107,-0.707107,0.0,0.707107,-0.707107,0.0,0.626943,-0.73451,-0.259688,-0.81252,0.336557,-0.475963,0.973436,0.186944,-0.132189,-0.707107,0.707107,0.0,-0.707107,0.707107,0.0,-0.707107,0.707107,0.0,-0.707107,0.707107,0.0,-0.707107,0.707107,0.0,-0.707107,0.707107,0.0,-0.707107,0.707107,0.0,-0.787122,0.581522,0.205599,-0.411198,0.581522,0.70196,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.70196,0.581522,0.411198,0.205599,0.581522,0.787122,0.0,0.707107,0.707107,0.0,0.707107,0.707107,0.0,0.707107,0.707107,0.0,0.707107,0.707107,0.0,0.707107,0.707107,0.0,0.707107,0.707107,0.0,0.707107,0.707107,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0});
			return Normal_6_439_vector;
		}
		/** Large attribute array: IndexedFaceSet coordIndex field, scene-graph level=5, element #444, 496 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 getIndexedFaceSet_5_444_coordIndex()
		{
			MFInt32 IndexedFaceSet_5_444_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_444_coordIndex_1()));
			return IndexedFaceSet_5_444_coordIndex;
		}
		/** Large attribute array: IndexedFaceSet normalIndex field, scene-graph level=5, element #444, 496 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 getIndexedFaceSet_5_444_normalIndex()
		{
			MFInt32 IndexedFaceSet_5_444_normalIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_444_normalIndex_1()));
			return IndexedFaceSet_5_444_normalIndex;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=6, element #444, 192 total numbers made up of 64 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 getCoordinate_6_444_point()
		{
			MFVec3f Coordinate_6_444_point = new MFVec3f(new double[] {-7.86711,0.847865,1.30948,-7.86441,0.848066,1.30898,-7.86441,0.834923,1.30373,-7.86711,0.834722,1.30423,-7.86982,0.848066,1.30898,-7.86982,1.02253,1.37858,-7.86711,1.02233,1.37908,-7.86982,0.834923,1.30373,-7.86441,1.02253,1.37858,-7.86211,0.848633,1.30755,-7.86211,0.83549,1.30231,-7.86211,1.0231,1.37716,-7.86058,0.849485,1.30542,-7.86058,0.836341,1.30018,-7.86058,1.02395,1.37502,-7.86004,0.850487,1.30291,-7.86004,0.837344,1.29766,-7.86004,1.02495,1.37251,-7.86058,0.851491,1.30039,-7.86058,0.838348,1.29515,-7.86058,1.02595,1.36999,-7.86211,0.852341,1.29826,-7.86211,0.839198,1.29301,-7.86211,1.0268,1.36786,-7.86441,0.85291,1.29683,-7.86441,0.839767,1.29159,-7.86441,1.02737,1.36644,-7.86711,0.853109,1.29633,-7.86711,0.839966,1.29109,-7.86711,1.02757,1.36594,-7.86982,0.85291,1.29683,-7.86982,0.839767,1.29159,-7.86982,1.02737,1.36644,-7.87212,0.852341,1.29826,-7.87212,0.839198,1.29301,-7.87212,1.0268,1.36786,-7.87365,0.851491,1.30039,-7.87365,0.838348,1.29515,-7.87365,1.02595,1.36999,-7.87419,0.850487,1.30291,-7.87419,0.837344,1.29766,-7.87419,1.02495,1.37251,-7.87365,0.849485,1.30542,-7.87365,0.836341,1.30018,-7.87365,1.02395,1.37502,-7.87212,0.848633,1.30755,-7.87212,0.83549,1.30231,-7.87212,1.0231,1.37716,-7.86711,1.09454,1.37984,-7.86441,1.09454,1.3793,-7.86211,1.09454,1.37777,-7.86982,1.09454,1.3793,-7.87212,1.09454,1.37777,-7.87365,1.09454,1.37547,-7.87419,1.09453,1.37276,-7.87365,1.09452,1.37005,-7.87212,1.09452,1.36776,-7.86982,1.09452,1.36623,-7.86711,1.09451,1.36569,-7.86441,1.09452,1.36623,-7.86211,1.09452,1.36776,-7.86058,1.09452,1.37005,-7.86004,1.09453,1.37276,-7.86058,1.09454,1.37547});
			return Coordinate_6_444_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #445, 192 total numbers made up of 64 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 getNormal_6_445_vector()
		{
			MFVec3f Normal_6_445_vector = new MFVec3f(new double[] {5.36659E-5,-0.370574,0.928803,0.442953,-0.332248,0.832709,0.303734,-0.630627,0.714181,7.48299E-6,-0.971269,-0.237986,-0.382595,-0.342401,0.858127,-0.408511,-0.20201,0.890118,-0.0403113,-0.156711,0.986821,-0.370785,-0.561144,0.740024,0.355473,-0.158107,0.921217,0.752277,-0.244141,0.611943,0.545114,-0.752029,0.370544,0.674934,-0.171462,0.71768,0.947142,-0.118878,0.297978,0.741912,-0.657256,0.132592,0.896078,-0.0840693,0.435864,0.997812,0.0244992,-0.0614081,0.825774,-0.541663,-0.157157,0.997879,-0.0124951,0.063889,0.896476,0.164192,-0.411548,0.783874,-0.422981,-0.454564,0.946354,0.0598716,-0.317538,0.658681,0.27882,-0.698856,0.622549,-0.319271,-0.714492,0.750722,0.122898,-0.649086,0.320765,0.350981,-0.879729,0.366583,-0.246385,-0.897169,0.442292,0.167378,-0.881115,-0.066136,0.369751,-0.926774,0.0547957,-0.215341,-0.975,0.0673751,0.186338,-0.980173,-0.44291,0.332233,-0.832738,-0.265382,-0.230857,-0.936097,-0.318384,0.17661,-0.931365,-0.75239,0.244096,-0.611822,-0.545213,-0.290633,-0.786305,-0.656961,0.139947,-0.740822,-0.947213,0.118803,-0.297782,-0.742037,-0.385534,-0.548401,-0.896169,0.0823333,-0.436007,-0.997807,-0.024525,0.0614747,-0.825781,-0.501078,-0.258856,-0.997884,0.0122825,-0.0638439,-0.89659,-0.164104,0.411334,-0.783895,-0.6197,0.0384804,-0.946401,-0.0605637,0.317264,-0.658868,-0.278769,0.698699,-0.62263,-0.723322,0.298559,-0.750988,-0.125746,0.648232,0.058705,0.31242,0.948128,0.0531565,0.990572,0.126257,0.675173,0.241557,0.696988,-0.26329,0.556566,0.78798,-0.540425,0.558403,0.629386,-0.738945,0.560313,0.374179,-0.825557,0.561377,0.0575447,-0.782343,0.561161,-0.270255,-0.616271,0.560116,-0.553607,-0.35809,0.55894,-0.747902,-0.0508999,0.558532,-0.82792,0.261741,0.559237,-0.786604,0.537734,0.560612,-0.629727,0.736924,0.561685,-0.376103,0.82523,0.561615,-0.0598692,0.783643,0.560252,0.268367});
			return Normal_6_445_vector;
		}
		/** Large attribute array: IndexedFaceSet coordIndex field, scene-graph level=5, element #450, 464 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 getIndexedFaceSet_5_450_coordIndex()
		{
			MFInt32 IndexedFaceSet_5_450_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_450_coordIndex_1()));
			return IndexedFaceSet_5_450_coordIndex;
		}
		/** Large attribute array: IndexedFaceSet normalIndex field, scene-graph level=5, element #450, 464 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 getIndexedFaceSet_5_450_normalIndex()
		{
			MFInt32 IndexedFaceSet_5_450_normalIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_450_normalIndex_1()));
			return IndexedFaceSet_5_450_normalIndex;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=6, element #450, 192 total numbers made up of 64 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 getCoordinate_6_450_point()
		{
			MFVec3f Coordinate_6_450_point = new MFVec3f(new double[] {-7.79004,0.847865,1.39616,-7.78954,0.848066,1.39887,-7.7843,0.834923,1.39887,-7.7848,0.834722,1.39616,-7.78954,0.848066,1.39346,-7.85915,1.02253,1.39346,-7.85965,1.02233,1.39616,-7.7843,0.834923,1.39346,-7.85915,1.02253,1.39887,-7.85772,1.0231,1.40117,-7.78812,0.848633,1.40117,-7.85559,1.02395,1.4027,-7.78599,0.849485,1.4027,-7.85308,1.02495,1.40324,-7.78347,0.850487,1.40324,-7.85056,1.02595,1.4027,-7.78096,0.851491,1.4027,-7.77882,0.852341,1.40117,-7.77358,0.839198,1.40117,-7.77571,0.838348,1.4027,-7.84843,1.0268,1.40117,-7.7774,0.85291,1.39887,-7.77216,0.839767,1.39887,-7.847,1.02737,1.39887,-7.7769,0.853109,1.39616,-7.77166,0.839966,1.39616,-7.8465,1.02757,1.39616,-7.7774,0.85291,1.39346,-7.77216,0.839767,1.39346,-7.847,1.02737,1.39346,-7.77882,0.852341,1.39116,-7.77358,0.839198,1.39116,-7.84843,1.0268,1.39116,-7.78096,0.851491,1.38963,-7.77571,0.838348,1.38963,-7.85056,1.02595,1.38963,-7.78347,0.850487,1.38909,-7.77823,0.837344,1.38909,-7.85308,1.02495,1.38909,-7.78599,0.849485,1.38963,-7.78074,0.836341,1.38963,-7.85559,1.02395,1.38963,-7.78812,0.848633,1.39116,-7.78287,0.83549,1.39116,-7.85772,1.0231,1.39116,-7.78287,0.83549,1.40117,-7.78074,0.836341,1.4027,-7.77823,0.837344,1.40324,-7.8604,1.09454,1.39616,-7.85987,1.09454,1.39887,-7.85833,1.09454,1.40117,-7.85987,1.09454,1.39346,-7.85833,1.09454,1.39116,-7.85604,1.09454,1.38963,-7.85333,1.09453,1.38909,-7.85062,1.09452,1.38963,-7.84833,1.09452,1.39116,-7.84679,1.09452,1.39346,-7.84625,1.09451,1.39616,-7.84679,1.09452,1.39887,-7.84833,1.09452,1.40117,-7.85062,1.09452,1.4027,-7.85333,1.09453,1.40324,-7.85604,1.09454,1.4027});
			return Coordinate_6_450_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #451, 192 total numbers made up of 64 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 getNormal_6_451_vector()
		{
			MFVec3f Normal_6_451_vector = new MFVec3f(new double[] {-0.92881,-0.370555,-3.22464E-5,-0.858115,-0.342354,0.382665,-0.649184,-0.740287,0.174747,0.237977,-0.971271,-4.48764E-6,-0.858115,-0.342356,-0.382663,-0.890094,-0.20201,-0.408565,-0.986818,-0.156712,-0.0403992,-0.74003,-0.561099,-0.370841,-0.921208,-0.158108,0.355498,-0.717723,-0.17148,0.674884,-0.611836,-0.244097,0.752379,-0.43564,-0.0840241,0.896191,-0.297859,-0.118834,0.947184,-0.0638921,-0.0124964,0.997879,0.0614081,0.0244994,0.997812,0.317426,0.0598503,0.946392,0.454527,0.181339,0.872079,0.698782,0.278791,0.658771,0.714349,-0.319341,0.622677,0.56221,-0.738687,0.371834,0.648904,0.122863,0.750885,0.879746,0.350988,0.32071,0.897178,-0.246384,0.366561,0.881126,0.16738,0.442267,0.926769,0.369749,-0.0662217,0.975005,-0.21534,0.0547247,0.980178,0.186339,0.0672897,0.832726,0.332229,-0.442935,0.936083,-0.230859,-0.265428,0.931347,0.176606,-0.318439,0.611994,0.244164,-0.752228,0.786367,-0.290595,-0.545144,0.7409,0.139962,-0.656869,0.297898,0.118852,-0.94717,0.548638,-0.385466,-0.741898,0.436222,0.0823747,-0.89606,-0.0614687,-0.024522,-0.997808,0.258884,-0.501075,-0.825774,0.0638439,0.0122825,-0.997884,-0.41153,-0.164179,-0.896487,-0.0385937,-0.619734,-0.783863,-0.317378,-0.0605868,-0.946362,-0.698871,-0.278825,-0.658663,-0.298701,-0.723364,-0.622513,-0.648494,-0.125796,-0.750753,0.370066,-0.929005,2.07183E-4,0.370504,-0.928831,7.33792E-6,0.370625,-0.928783,-1.16511E-4,-0.948125,0.31242,0.0587637,-0.126258,0.990572,0.0531507,-0.696925,0.241567,0.675234,-0.787937,0.55655,-0.263453,-0.629525,0.558394,-0.540273,-0.37436,0.560325,-0.738844,-0.0575447,0.561377,-0.825557,0.270346,0.561173,-0.782303,0.553766,0.560104,-0.616139,0.747894,0.558937,-0.358112,0.827916,0.558532,-0.0509693,0.786617,0.559239,0.261697,0.629656,0.560625,0.537804,0.375923,0.561672,0.737025,0.0598692,0.561615,0.82523,-0.268276,0.56024,0.783683});
			return Normal_6_451_vector;
		}
		/** Large attribute array: IndexedFaceSet coordIndex field, scene-graph level=5, element #456, 456 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 getIndexedFaceSet_5_456_coordIndex()
		{
			MFInt32 IndexedFaceSet_5_456_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_456_coordIndex_1()));
			return IndexedFaceSet_5_456_coordIndex;
		}
		/** Large attribute array: IndexedFaceSet normalIndex field, scene-graph level=5, element #456, 456 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 getIndexedFaceSet_5_456_normalIndex()
		{
			MFInt32 IndexedFaceSet_5_456_normalIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_456_normalIndex_1()));
			return IndexedFaceSet_5_456_normalIndex;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=6, element #456, 192 total numbers made up of 64 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 getCoordinate_6_456_point()
		{
			MFVec3f Coordinate_6_456_point = new MFVec3f(new double[] {-7.94553,0.847865,1.3991,-7.94603,0.848066,1.4018,-7.87642,1.02253,1.4018,-7.87593,1.02233,1.3991,-7.87642,1.02253,1.39639,-7.94603,0.848066,1.39639,-7.94745,0.848633,1.39409,-7.9527,0.83549,1.39409,-7.95127,0.834923,1.39639,-7.87785,1.0231,1.39409,-7.94959,0.849485,1.39256,-7.95483,0.836341,1.39256,-7.87998,1.02395,1.39256,-7.9521,0.850487,1.39202,-7.95734,0.837344,1.39202,-7.8825,1.02495,1.39202,-7.95462,0.851491,1.39256,-7.95986,0.838348,1.39256,-7.88501,1.02595,1.39256,-7.95675,0.852341,1.39409,-7.96199,0.839198,1.39409,-7.88714,1.0268,1.39409,-7.95817,0.85291,1.39639,-7.96342,0.839767,1.39639,-7.88857,1.02737,1.39639,-7.95867,0.853109,1.3991,-7.96392,0.839966,1.3991,-7.88907,1.02757,1.3991,-7.95817,0.85291,1.4018,-7.96342,0.839767,1.4018,-7.88857,1.02737,1.4018,-7.95675,0.852341,1.4041,-7.96199,0.839198,1.4041,-7.88714,1.0268,1.4041,-7.95462,0.851491,1.40563,-7.95986,0.838348,1.40563,-7.88501,1.02595,1.40563,-7.9521,0.850487,1.40617,-7.95734,0.837344,1.40617,-7.8825,1.02495,1.40617,-7.87998,1.02395,1.40563,-7.94959,0.849485,1.40563,-7.87785,1.0231,1.4041,-7.94745,0.848633,1.4041,-7.95077,0.834722,1.3991,-7.95483,0.836341,1.40563,-7.9527,0.83549,1.4041,-7.95127,0.834923,1.4018,-7.87517,1.09454,1.39616,-7.87571,1.09454,1.39346,-7.87724,1.09454,1.39116,-7.87571,1.09454,1.39887,-7.87724,1.09454,1.40117,-7.87954,1.09454,1.4027,-7.88224,1.09453,1.40324,-7.88495,1.09452,1.4027,-7.88725,1.09452,1.40117,-7.88878,1.09452,1.39887,-7.88932,1.09451,1.39616,-7.88878,1.09452,1.39346,-7.88725,1.09452,1.39116,-7.88495,1.09452,1.38963,-7.88224,1.09453,1.38909,-7.87954,1.09454,1.38963});
			return Coordinate_6_456_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #457, 192 total numbers made up of 64 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 getNormal_6_457_vector()
		{
			MFVec3f Normal_6_457_vector = new MFVec3f(new double[] {0.928809,-0.370559,3.22128E-5,0.858096,-0.342352,0.38271,0.89175,-0.194688,0.408509,0.987079,-0.155116,0.0401624,0.919633,-0.166736,-0.355632,0.80998,-0.323148,-0.489396,0.611808,-0.244083,-0.752406,0.370562,-0.752011,-0.545126,0.284697,-0.874448,-0.392797,0.714033,-0.18255,-0.675893,0.297849,-0.118826,-0.947189,0.132393,-0.65715,-0.742042,0.43091,-0.102402,-0.896566,-0.061411,0.024501,-0.997812,-0.15715,-0.541663,-0.825775,0.0585852,-0.0333652,-0.997725,-0.411312,0.1641,-0.896601,-0.454463,-0.423004,-0.783921,-0.32199,0.0399633,-0.945899,-0.698789,0.278793,-0.658763,-0.714345,-0.319346,-0.62268,-0.652162,0.10718,-0.750465,-0.879738,0.350981,-0.320739,-0.897193,-0.246374,-0.366532,-0.882888,0.158211,-0.44213,-0.92677,0.369742,0.0662394,-0.975001,-0.215349,-0.0547519,-0.980453,0.184934,-0.0671583,-0.832713,0.332223,0.442964,-0.936075,-0.230863,0.265455,-0.929884,0.183248,0.318962,-0.612007,0.244171,0.752215,-0.786384,-0.290585,0.545124,-0.737564,0.153865,0.657514,-0.29789,0.118848,0.947173,-0.548578,-0.385475,0.741938,-0.431273,0.10148,0.896496,4.23712E-5,-1.75558E-5,1.0,-0.390149,-0.605671,0.693503,-0.0585063,0.0333716,0.997729,0.321917,-0.0410702,0.945877,0.411523,-0.164181,0.89649,0.651476,-0.11078,0.750538,0.698803,-0.278795,0.658748,-0.370429,-0.928861,1.7815E-8,-0.370574,-0.928803,-4.31877E-5,-0.369984,-0.929038,2.66474E-4,-0.369561,-0.929206,4.5469E-4,0.948822,0.310277,-0.0588643,0.126498,0.990537,-0.0532414,0.698738,0.215271,-0.68222,0.783326,0.563897,0.261575,0.622348,0.573477,0.532735,0.370365,0.581122,0.724656,0.0606936,0.584984,0.808771,-0.260935,0.583918,0.768734,-0.542959,0.578335,0.608871,-0.740698,0.569673,0.356146,-0.826855,0.560092,0.0510638,-0.791629,0.551376,-0.263265,-0.638682,0.544604,-0.543591,-0.385267,0.540011,-0.748303,-0.0654888,0.537655,-0.840618,0.268902,0.537764,-0.799063});
			return Normal_6_457_vector;
		}
		/** Large attribute array: IndexedFaceSet coordIndex field, scene-graph level=5, element #462, 384 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 getIndexedFaceSet_5_462_coordIndex()
		{
			MFInt32 IndexedFaceSet_5_462_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_462_coordIndex_1()));
			return IndexedFaceSet_5_462_coordIndex;
		}
		/** Large attribute array: IndexedFaceSet normalIndex field, scene-graph level=5, element #462, 384 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 getIndexedFaceSet_5_462_normalIndex()
		{
			MFInt32 IndexedFaceSet_5_462_normalIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_462_normalIndex_1()));
			return IndexedFaceSet_5_462_normalIndex;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=6, element #462, 150 total numbers made up of 50 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 getCoordinate_6_462_point()
		{
			MFVec3f Coordinate_6_462_point = new MFVec3f(new double[] {-7.84503,1.19855,1.19192,-7.8453,1.19855,1.19058,-7.8453,1.16043,1.19058,-7.84503,1.16043,1.19192,-7.8453,1.19855,1.19325,-7.84605,1.19855,1.19438,-7.84718,1.19855,1.19514,-7.84852,1.19855,1.1954,-7.84985,1.19855,1.19514,-7.85098,1.19855,1.19438,-7.85174,1.19855,1.19325,-7.85201,1.19855,1.19192,-7.85174,1.19855,1.19058,-7.85098,1.19855,1.18945,-7.84985,1.19855,1.18869,-7.84852,1.19855,1.18843,-7.84718,1.19855,1.18869,-7.84605,1.19855,1.18945,-7.8453,1.16043,1.19325,-7.84605,1.16043,1.18945,-7.84718,1.16043,1.18869,-7.84852,1.16043,1.18843,-7.84985,1.16043,1.18869,-7.85098,1.16043,1.18945,-7.85174,1.16043,1.19058,-7.85201,1.16043,1.19192,-7.85174,1.16043,1.19325,-7.85098,1.19769,1.19438,-7.85098,1.19801,1.19844,-7.85098,1.19544,1.19438,-7.85098,1.19576,1.19844,-7.85098,1.18544,1.19438,-7.85098,1.18576,1.19844,-7.85098,1.17544,1.19438,-7.85098,1.17576,1.19844,-7.85098,1.16544,1.19438,-7.85098,1.16043,1.19438,-7.84718,1.19769,1.19514,-7.84605,1.16043,1.19438,-7.84718,1.16043,1.19514,-7.84718,1.16544,1.19514,-7.84718,1.17576,1.1992,-7.84718,1.17544,1.19514,-7.84718,1.18576,1.1992,-7.84718,1.18544,1.19514,-7.84718,1.19576,1.1992,-7.84718,1.19544,1.19514,-7.84718,1.19801,1.1992,-7.84985,1.16043,1.19514,-7.84852,1.16043,1.1954});
			return Coordinate_6_462_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #463, 150 total numbers made up of 50 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 getNormal_6_463_vector()
		{
			MFVec3f Normal_6_463_vector = new MFVec3f(new double[] {0.26981,0.962914,2.94613E-5,0.848986,0.321149,-0.419627,0.896932,-0.321149,-0.303936,0.138746,-0.990328,1.51501E-5,0.823,0.454165,0.341182,0.614338,0.245855,0.749763,0.171656,0.475987,0.862537,0.0,0.0,0.0,0.0,1.0,6.12192E-13,-0.436593,0.0,0.899659,-0.831148,0.244456,0.499434,-0.825758,0.56134,0.0549593,-0.783809,0.561311,-0.265656,-0.622563,0.561302,-0.545303,-0.366502,0.561333,-0.742012,-0.0545681,0.561281,-0.825824,0.265234,0.561329,-0.783939,0.545223,0.561308,-0.622628,0.895147,-0.24699,0.371091,0.622628,-0.561308,-0.545223,0.366535,-0.561329,-0.741999,0.0546759,-0.561281,-0.825817,-0.265164,-0.561333,-0.78396,-0.545188,-0.561302,-0.622664,-0.74188,-0.561311,-0.366803,-0.82577,-0.56134,-0.0547789,-0.783775,-0.561304,0.265773,-0.713096,0.502938,0.488413,-0.70623,-0.404263,0.581215,-0.893224,0.275568,0.355266,-0.605269,0.124205,0.786271,-0.83796,0.358947,0.411073,-0.60522,0.124209,0.786308,-0.838009,0.358971,0.410951,-0.60528,0.124214,0.786262,-0.708394,-0.0839,0.700813,-0.555489,0.0,0.831524,0.42648,0.244773,0.870748,0.545303,-0.561302,0.622563,0.171656,-0.475987,0.862537,0.289419,-0.108944,0.950983,0.426401,0.820397,0.380961,0.627805,0.0628825,0.775826,0.426269,0.820316,0.381282,0.627755,0.0628818,0.775867,0.426376,0.82038,0.381025,0.729492,-0.171259,0.662202,0.606744,0.755946,0.245779,0.0,-1.0,0.0,0.0,0.0,0.0});
			return Normal_6_463_vector;
		}
		/** Large attribute array: IndexedFaceSet coordIndex field, scene-graph level=5, element #468, 384 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 getIndexedFaceSet_5_468_coordIndex()
		{
			MFInt32 IndexedFaceSet_5_468_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_468_coordIndex_1()));
			return IndexedFaceSet_5_468_coordIndex;
		}
		/** Large attribute array: IndexedFaceSet normalIndex field, scene-graph level=5, element #468, 384 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 getIndexedFaceSet_5_468_normalIndex()
		{
			MFInt32 IndexedFaceSet_5_468_normalIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_468_normalIndex_1()));
			return IndexedFaceSet_5_468_normalIndex;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=6, element #468, 150 total numbers made up of 50 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 getCoordinate_6_468_point()
		{
			MFVec3f Coordinate_6_468_point = new MFVec3f(new double[] {-7.87966,1.19855,1.19192,-7.87993,1.19855,1.19058,-7.87993,1.16043,1.19058,-7.87966,1.16043,1.19192,-7.87993,1.19855,1.19325,-7.88068,1.19855,1.19438,-7.88182,1.19855,1.19514,-7.88315,1.19855,1.1954,-7.88448,1.19855,1.19514,-7.88562,1.19855,1.19438,-7.88637,1.19855,1.19325,-7.88664,1.19855,1.19192,-7.88637,1.19855,1.19058,-7.88562,1.19855,1.18945,-7.88448,1.19855,1.18869,-7.88315,1.19855,1.18843,-7.88182,1.19855,1.18869,-7.88068,1.19855,1.18945,-7.87993,1.16043,1.19325,-7.88068,1.16043,1.18945,-7.88182,1.16043,1.18869,-7.88315,1.16043,1.18843,-7.88448,1.16043,1.18869,-7.88562,1.16043,1.18945,-7.88637,1.16043,1.19058,-7.88664,1.16043,1.19192,-7.88637,1.16043,1.19325,-7.88562,1.19769,1.19438,-7.88562,1.19801,1.19844,-7.88562,1.19544,1.19438,-7.88562,1.19576,1.19844,-7.88562,1.18544,1.19438,-7.88562,1.18576,1.19844,-7.88562,1.17544,1.19438,-7.88562,1.17576,1.19844,-7.88562,1.16544,1.19438,-7.88562,1.16043,1.19438,-7.88182,1.19769,1.19514,-7.88068,1.16043,1.19438,-7.88182,1.16043,1.19514,-7.88182,1.16544,1.19514,-7.88182,1.17576,1.1992,-7.88182,1.17544,1.19514,-7.88182,1.18576,1.1992,-7.88182,1.18544,1.19514,-7.88182,1.19576,1.1992,-7.88182,1.19544,1.19514,-7.88182,1.19801,1.1992,-7.88448,1.16043,1.19514,-7.88315,1.16043,1.1954});
			return Coordinate_6_468_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #469, 150 total numbers made up of 50 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 getNormal_6_469_vector()
		{
			MFVec3f Normal_6_469_vector = new MFVec3f(new double[] {0.26981,0.962914,2.94613E-5,0.849147,0.321135,-0.419311,0.896992,-0.321135,-0.303773,0.138746,-0.990328,1.51501E-5,0.823104,0.454145,0.340956,0.614155,0.245873,0.749907,0.171446,0.475949,0.8626,0.0,0.0,0.0,0.0,1.0,-3.02094E-13,-0.436645,0.0,0.899634,-0.83128,0.244463,0.49921,-0.825815,0.561281,0.0547118,-0.783967,0.561334,-0.265141,-0.622531,0.561325,-0.545317,-0.366292,0.561312,-0.742132,-0.0546286,0.561287,-0.825816,0.265134,0.56131,-0.783987,0.545113,0.561344,-0.622692,0.895253,-0.246977,0.370843,0.622726,-0.561344,-0.545075,0.366303,-0.56131,-0.742127,0.0546645,-0.561287,-0.825814,-0.26511,-0.561312,-0.783993,-0.545007,-0.561325,-0.622801,-0.742016,-0.561334,-0.366491,-0.825827,-0.561281,-0.0545322,-0.783933,-0.561327,0.265257,-0.713149,0.502938,0.488335,-0.70623,-0.404263,0.581215,-0.893257,0.275563,0.355185,-0.605269,0.124205,0.786271,-0.837996,0.358944,0.411001,-0.60522,0.124209,0.786308,-0.838046,0.358967,0.410879,-0.60528,0.124214,0.786262,-0.708453,-0.0839014,0.700753,-0.555567,0.0,0.831472,0.426264,0.244765,0.870856,0.545193,-0.561337,0.622627,0.171446,-0.475949,0.8626,0.289213,-0.108937,0.951046,0.426401,0.820397,0.380961,0.62763,0.0628838,0.775968,0.426269,0.820316,0.381282,0.62758,0.0628831,0.776008,0.426376,0.82038,0.381025,0.729328,-0.17127,0.66238,0.606744,0.755946,0.245779,0.0,-1.0,0.0,0.0,0.0,0.0});
			return Normal_6_469_vector;
		}
		/** Large attribute array: IndexedFaceSet coordIndex field, scene-graph level=5, element #474, 368 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 getIndexedFaceSet_5_474_coordIndex()
		{
			MFInt32 IndexedFaceSet_5_474_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_474_coordIndex_1()));
			return IndexedFaceSet_5_474_coordIndex;
		}
		/** Large attribute array: IndexedFaceSet normalIndex field, scene-graph level=5, element #474, 368 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 getIndexedFaceSet_5_474_normalIndex()
		{
			MFInt32 IndexedFaceSet_5_474_normalIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_474_normalIndex_1()));
			return IndexedFaceSet_5_474_normalIndex;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=6, element #474, 144 total numbers made up of 48 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 getCoordinate_6_474_point()
		{
			MFVec3f Coordinate_6_474_point = new MFVec3f(new double[] {-7.85731,1.1343,1.38786,-7.85717,1.1343,1.38418,-7.85717,1.11677,1.38418,-7.85731,1.11677,1.38786,-7.85885,1.1343,1.3912,-7.86155,1.1343,1.39369,-7.865,1.1343,1.39497,-7.86868,1.1343,1.39482,-7.87202,1.1343,1.39328,-7.87452,1.1343,1.39058,-7.87579,1.1343,1.38713,-7.87565,1.1343,1.38345,-7.87411,1.1343,1.38011,-7.87141,1.1343,1.37761,-7.86795,1.1343,1.37634,-7.86428,1.1343,1.37649,-7.86094,1.1343,1.37803,-7.85844,1.1343,1.38073,-7.85885,1.11677,1.3912,-7.85844,1.11677,1.38073,-7.86094,1.11677,1.37803,-7.86428,1.11677,1.37649,-7.86795,1.11677,1.37634,-7.87141,1.11677,1.37761,-7.87411,1.11677,1.38011,-7.87565,1.11677,1.38345,-7.87579,1.11677,1.38713,-7.87452,1.11677,1.39058,-7.87202,1.11677,1.39328,-7.86868,1.11677,1.39482,-7.865,1.11677,1.39497,-7.86155,1.11677,1.39369,-7.84555,1.09623,1.38832,-7.84541,1.09623,1.38464,-7.85844,1.09925,1.38073,-7.86094,1.09925,1.37803,-7.86382,1.09623,1.36473,-7.86749,1.09623,1.36458,-7.87141,1.09925,1.37761,-7.87411,1.09925,1.38011,-7.8874,1.09623,1.38299,-7.88755,1.09623,1.38667,-7.87452,1.09925,1.39058,-7.87202,1.09925,1.39328,-7.86914,1.09623,1.40658,-7.86547,1.09623,1.40673,-7.86155,1.09925,1.39369,-7.85885,1.09925,1.3912});
			return Coordinate_6_474_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #475, 144 total numbers made up of 48 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 getNormal_6_475_vector()
		{
			MFVec3f Normal_6_475_vector = new MFVec3f(new double[] {0.262369,0.962909,0.0629918,0.923503,0.321154,-0.209767,0.962668,0.255812,-0.0884868,0.940394,0.253571,0.226629,0.720731,0.454178,0.523707,0.47817,0.561311,0.675488,0.183315,0.561311,0.807047,-0.139513,0.56132,0.815755,-0.441148,0.561309,0.700229,-0.675488,0.561311,0.47817,-0.807047,0.561311,0.183315,-0.815755,0.56132,-0.139513,-0.700229,0.561309,-0.441148,-0.47817,0.561311,-0.675488,-0.183315,0.561311,-0.807047,0.139513,0.56132,-0.815755,0.441148,0.561309,-0.700229,0.675488,0.561311,-0.47817,0.733181,0.0618238,0.677218,0.799994,0.0838492,-0.59412,0.640052,0.0,-0.768332,0.424268,0.122102,-0.897267,-0.0884868,0.255812,-0.962668,-0.59412,0.0838492,-0.799994,-0.768332,0.0,-0.640052,-0.897267,0.122102,-0.424268,-0.962668,0.255812,0.0884868,-0.799994,0.0838492,0.59412,-0.640052,0.0,0.768332,-0.424268,0.122102,0.897267,0.0884868,0.255812,0.962668,0.59412,0.0838492,0.799994,0.676891,-0.259249,0.688918,0.61155,-0.542305,-0.576118,0.379008,-0.522712,-0.763626,0.543994,-0.728628,-0.416138,0.50424,-0.397805,-0.766481,-0.57531,-0.0046617,-0.817922,-0.585895,-0.740688,-0.328799,-0.429654,-0.615788,-0.660456,-0.579578,-0.403119,-0.708226,-0.61155,-0.542305,0.576118,-0.379008,-0.522712,0.763626,-0.543994,-0.728628,0.416138,-0.50424,-0.397805,0.766481,0.57531,-0.0046617,0.817922,0.585895,-0.740688,0.328799,0.231497,-0.735808,0.636393});
			return Normal_6_475_vector;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=6, element #480, 135 total numbers made up of 45 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 getCoordinate_6_480_point()
		{
			MFVec3f Coordinate_6_480_point = new MFVec3f(new double[] {-7.84548,1.20221,1.35096,-7.84548,1.20208,1.35164,-7.84721,1.2021,1.35164,-7.84721,1.20224,1.35096,-7.84721,1.2021,1.35029,-7.84548,1.20208,1.35029,-7.84549,1.2017,1.35221,-7.84721,1.20172,1.35221,-7.84549,1.20113,1.35259,-7.84722,1.20115,1.35259,-7.8455,1.20045,1.35273,-7.84723,1.20047,1.35273,-7.84551,1.19978,1.35259,-7.84724,1.1998,1.35259,-7.84552,1.19921,1.35221,-7.8457,1.1846,1.35375,-7.84569,1.18517,1.3546,-7.84742,1.1852,1.3546,-7.84552,1.19883,1.35164,-7.8457,1.18422,1.35247,-7.84552,1.19869,1.35096,-7.8457,1.18409,1.35096,-7.84552,1.19883,1.35029,-7.8457,1.18422,1.34946,-7.84552,1.19921,1.34972,-7.8457,1.1846,1.34818,-7.84551,1.19978,1.34934,-7.84569,1.18517,1.34733,-7.8455,1.20045,1.3492,-7.84723,1.20047,1.3492,-7.84724,1.1998,1.34934,-7.84742,1.1852,1.34733,-7.84549,1.20113,1.34934,-7.84722,1.20115,1.34934,-7.84549,1.2017,1.34972,-7.84721,1.20172,1.34972,-7.85085,1.17323,1.35726,-7.85085,1.1738,1.3592,-7.85257,1.17382,1.3592,-7.85086,1.17285,1.35437,-7.85086,1.17271,1.35096,-7.85086,1.17285,1.34756,-7.85085,1.17323,1.34467,-7.85085,1.1738,1.34273,-7.85257,1.17382,1.34273});
			return Coordinate_6_480_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #481, 135 total numbers made up of 45 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 getNormal_6_481_vector()
		{
			MFVec3f Normal_6_481_vector = new MFVec3f(new double[] {0.0125024,0.999922,-2.16151E-4,0.0113236,0.896246,0.443412,-0.309654,0.900892,0.304151,-0.974333,0.225112,-4.56012E-5,-0.235661,0.89816,-0.371178,0.0118767,0.923616,-0.383135,0.0079992,0.658435,0.752595,-0.553591,0.629375,0.545366,0.00389328,0.320265,0.94732,-0.557075,0.3725,0.742234,-8.47516E-4,-0.0659436,0.997823,-0.560431,0.0616642,0.825902,0.559821,0.0150436,0.828477,-0.803975,-0.0406819,0.59327,0.999923,-0.0123675,-3.62745E-4,0.97754,-0.200174,0.0659253,0.666345,0.0353553,0.744805,-0.523095,0.294419,0.799806,0.999924,-0.0123166,7.24581E-5,0.976485,-0.213706,0.0283948,0.999924,-0.0123434,-3.87041E-5,0.976315,-0.216334,-0.00281746,0.999924,-0.0123227,9.94178E-5,0.977205,-0.209647,-0.0334325,0.999924,-0.0123316,-2.9997E-5,0.97852,-0.192365,-0.0741179,0.24548,-0.0325389,-0.968855,0.68635,0.123361,-0.716732,8.11716E-4,0.0667725,-0.997768,-0.561914,-0.0480441,-0.825799,-0.835597,-0.00615361,-0.549308,-0.75898,0.297787,-0.579026,0.00538161,0.442861,-0.896574,-0.558208,0.27233,-0.783735,0.00933481,0.752004,-0.659092,-0.554636,0.551601,-0.622989,0.918707,-0.373697,0.12778,0.666425,-0.00113962,0.745571,-0.597599,0.518074,0.611943,0.913739,-0.401796,0.0603436,0.911011,-0.412208,0.0119796,0.91204,-0.408651,-0.0344631,0.916368,-0.389909,-0.0907825,0.817489,-0.150861,-0.555836,-0.381061,0.489513,-0.784328});
			return Normal_6_481_vector;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=6, element #486, 123 total numbers made up of 41 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 getCoordinate_6_486_point()
		{
			MFVec3f Coordinate_6_486_point = new MFVec3f(new double[] {-7.88212,1.08827,1.40318,-7.88229,1.08827,1.404,-7.88229,1.09527,1.404,-7.88212,1.09527,1.40318,-7.88229,1.08827,1.40235,-7.88276,1.08827,1.40165,-7.88346,1.08827,1.40118,-7.88428,1.08827,1.40102,-7.88511,1.08827,1.40118,-7.88581,1.08827,1.40165,-7.88627,1.08827,1.40235,-7.88644,1.08827,1.40318,-7.88627,1.08827,1.404,-7.88581,1.08827,1.4047,-7.88511,1.08827,1.40517,-7.88428,1.08827,1.40533,-7.88346,1.08827,1.40517,-7.88276,1.08827,1.4047,-7.88229,1.09527,1.40235,-7.88276,1.09527,1.4047,-7.88346,1.09527,1.40517,-7.88428,1.09527,1.40533,-7.88511,1.09527,1.40517,-7.88581,1.09527,1.4047,-7.88627,1.09527,1.404,-7.88644,1.09527,1.40318,-7.88627,1.09527,1.40235,-7.88581,1.09177,1.40165,-7.88581,1.09527,1.40165,-7.88511,1.09527,1.40118,-7.88428,1.09527,1.40102,-7.88346,1.09527,1.40118,-7.88276,1.09527,1.40165,-7.88675,1.09183,1.40565,-7.88675,1.08976,1.40565,-7.88675,1.08976,1.40056,-7.88675,1.09183,1.40056,-7.88175,1.09183,1.40565,-7.88175,1.08976,1.40565,-7.88175,1.09183,1.40056,-7.88175,1.08976,1.40056});
			return Coordinate_6_486_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #487, 123 total numbers made up of 41 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 getNormal_6_487_vector()
		{
			MFVec3f Normal_6_487_vector = new MFVec3f(new double[] {0.26978,-0.962922,-9.55108E-6,0.848786,-0.321142,0.420036,0.896758,0.321142,0.304456,0.138729,0.99033,-4.91147E-6,0.822884,-0.454153,-0.341477,0.622541,-0.561305,-0.545325,0.366486,-0.561324,-0.742027,0.0546488,-0.561288,-0.825815,-0.265222,-0.561324,-0.783947,-0.545195,-0.561316,-0.622645,-0.786153,-0.452418,-0.421049,-0.825815,-0.561285,-0.0546679,-0.783936,-0.561333,0.265234,-0.622634,-0.561299,0.545225,-0.366992,-0.561286,0.741805,-0.0550482,-0.561384,0.825723,0.266054,-0.561286,0.783692,0.545231,-0.561288,0.622639,0.895016,0.246982,-0.371411,0.622529,0.561288,0.545356,0.366992,0.561286,0.741805,0.0550482,0.561384,0.825723,-0.266054,0.561286,0.783692,-0.545287,0.561299,0.62258,-0.74198,0.561333,0.366567,-0.825819,0.561285,0.0546098,-0.783947,0.561324,-0.265222,-0.831494,0.0,-0.555533,-0.622645,0.561316,-0.545195,-0.366486,0.561324,-0.742027,-0.0546488,0.561288,-0.825815,0.265222,0.561324,-0.783947,0.545138,0.561305,-0.622704,-0.57735,0.57735,0.57735,-0.408248,-0.816497,0.408248,-0.816497,-0.408248,-0.408248,-0.408248,0.408248,-0.816497,0.57735,0.57735,0.57735,0.666667,-0.333333,0.666667,0.666667,0.666667,-0.333333,0.333333,-0.666667,-0.666667});
			return Normal_6_487_vector;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #493, 120 total numbers made up of 40 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 getNormal_6_493_vector()
		{
			MFVec3f Normal_6_493_vector = new MFVec3f(new double[] {0.26985,0.962902,9.48856E-6,0.849347,0.321145,-0.418898,0.897176,-0.321145,-0.303219,0.138768,-0.990325,4.87939E-6,0.82312,0.4542,0.340844,0.622477,0.561326,0.545377,0.366223,0.561309,0.742168,0.0546098,0.561285,0.825819,-0.265347,0.561341,0.783893,-0.545318,0.561282,0.622568,-0.741893,0.561341,0.366731,-0.825815,0.561285,0.0546679,-0.784013,0.561309,-0.265059,-0.622624,0.561367,-0.545166,-0.366355,0.561242,-0.742153,-0.0550674,0.561381,-0.825723,0.265441,0.561211,-0.783954,0.544477,0.561411,-0.623188,0.89529,-0.247012,0.370729,0.622533,-0.561411,-0.545225,0.365848,-0.561211,-0.742427,0.055009,-0.561381,-0.825727,-0.265729,-0.561242,-0.783834,-0.544855,-0.561367,-0.622897,-0.742168,-0.561309,-0.366223,-0.825819,-0.561285,-0.0546098,-0.783893,-0.561341,0.265347,-0.622568,-0.561282,0.545318,-0.366731,-0.561341,0.741893,-0.0546679,-0.561285,0.825815,0.265059,-0.561309,0.784013,0.544939,-0.561326,0.62286,-0.57735,-0.57735,-0.57735,-0.408248,0.816497,-0.408248,-0.816497,0.408248,0.408248,-0.408248,-0.408248,0.816497,0.57735,-0.57735,-0.57735,0.666667,0.333333,-0.666667,0.666667,-0.666667,0.333333,0.333333,0.666667,0.666667});
			return Normal_6_493_vector;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #499, 120 total numbers made up of 40 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 getNormal_6_499_vector()
		{
			MFVec3f Normal_6_499_vector = new MFVec3f(new double[] {0.269857,0.9629,-4.73769E-5,0.849048,0.321168,-0.419487,0.897054,-0.321168,-0.303553,0.138772,-0.990324,-2.43631E-5,0.823212,0.454206,0.340616,0.622488,0.561343,0.545346,0.366077,0.561299,0.742248,0.0546098,0.561285,0.825819,-0.265272,0.56133,0.783925,-0.545225,0.561299,0.622634,-0.741981,0.561346,0.366544,-0.825836,0.561276,0.0544543,-0.783893,0.561341,-0.265347,-0.622568,0.561282,-0.545318,-0.366731,0.561341,-0.741893,-0.0546679,0.561285,-0.825815,0.265059,0.561309,-0.784013,0.544939,0.561326,-0.62286,0.895392,-0.247016,0.370482,0.622477,-0.561326,-0.545377,0.366223,-0.561309,-0.742168,0.0546098,-0.561285,-0.825819,-0.265347,-0.561341,-0.783893,-0.545318,-0.561282,-0.622568,-0.741893,-0.561341,-0.366731,-0.825816,-0.561276,-0.0547443,-0.78397,-0.561346,0.265109,-0.62258,-0.561299,0.545287,-0.366584,-0.56133,0.741973,-0.0546679,-0.561285,0.825815,0.264984,-0.561299,0.784045,0.544847,-0.561343,0.622925,-0.57735,-0.57735,-0.57735,-0.408248,0.816497,-0.408248,-0.816497,0.408248,0.408248,-0.408248,-0.408248,0.816497,0.57735,-0.57735,-0.57735,0.666667,0.333333,-0.666667,0.666667,-0.666667,0.333333,0.333333,0.666667,0.666667});
			return Normal_6_499_vector;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #505, 120 total numbers made up of 40 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 getNormal_6_505_vector()
		{
			MFVec3f Normal_6_505_vector = new MFVec3f(new double[] {0.26985,-0.962902,-9.48856E-6,0.849057,-0.32117,0.419467,0.897068,0.32117,0.303511,0.138768,0.990325,-4.87939E-6,0.823308,-0.454165,-0.340439,0.622768,-0.56137,-0.544998,0.366077,-0.561299,-0.742248,0.0546098,-0.561285,-0.825819,-0.265272,-0.56133,-0.783925,-0.545377,-0.561326,-0.622477,-0.742161,-0.561307,-0.366241,-0.825815,-0.561285,-0.0546679,-0.783904,-0.561343,0.265309,-0.622568,-0.561282,0.545318,-0.366731,-0.561341,0.741893,-0.0546679,-0.561285,0.825815,0.265059,-0.561309,0.784013,0.544939,-0.561326,0.62286,0.895482,0.246989,-0.370282,0.622477,0.561326,0.545377,0.366223,0.561309,0.742168,0.0546098,0.561285,0.825819,-0.265347,0.561341,0.783893,-0.545318,0.561282,0.622568,-0.7419,0.561343,0.366713,-0.825819,0.561285,0.0546098,-0.784002,0.561307,-0.265096,-0.62286,0.561326,-0.544939,-0.366584,0.56133,-0.741973,-0.0546679,0.561285,-0.825815,0.264984,0.561299,-0.784045,0.544998,0.56137,-0.622768,-0.57735,0.57735,0.57735,-0.408248,-0.816497,0.408248,-0.816497,-0.408248,-0.408248,-0.408248,0.408248,-0.816497,0.57735,0.57735,0.57735,0.666667,-0.333333,0.666667,0.666667,0.666667,-0.333333,0.333333,-0.666667,-0.666667});
			return Normal_6_505_vector;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #511, 120 total numbers made up of 40 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 getNormal_6_511_vector()
		{
			MFVec3f Normal_6_511_vector = new MFVec3f(new double[] {0.26985,-0.962902,-9.48856E-6,0.849057,-0.32117,0.419467,0.897068,0.32117,0.303511,0.138768,0.990325,-4.87939E-6,0.823158,-0.454193,-0.340763,0.622488,-0.561343,-0.545346,0.366077,-0.561299,-0.742248,0.0546098,-0.561285,-0.825819,-0.265272,-0.56133,-0.783925,-0.545225,-0.561299,-0.622634,-0.741946,-0.561334,-0.366633,-0.825815,-0.561285,-0.0546679,-0.783904,-0.561343,0.265309,-0.622568,-0.561282,0.545318,-0.36709,-0.561293,0.741752,-0.0550674,-0.561381,0.825723,0.265816,-0.561261,0.783791,0.544939,-0.561326,0.62286,0.895329,0.247007,-0.37064,0.622477,0.561326,0.545377,0.366582,0.561261,0.742027,0.055009,0.561381,0.825727,-0.266104,0.561293,0.78367,-0.545318,0.561282,0.622568,-0.7419,0.561343,0.366713,-0.825819,0.561285,0.0546098,-0.783915,0.561334,-0.265296,-0.62258,0.561299,-0.545287,-0.366584,0.56133,-0.741973,-0.0546679,0.561285,-0.825815,0.264984,0.561299,-0.784045,0.544847,0.561343,-0.622925,-0.57735,0.57735,0.57735,-0.408248,-0.816497,0.408248,-0.816497,-0.408248,-0.408248,-0.408248,0.408248,-0.816497,0.57735,0.57735,0.57735,0.666667,-0.333333,0.666667,0.666667,0.666667,-0.333333,0.333333,-0.666667,-0.666667});
			return Normal_6_511_vector;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #523, 120 total numbers made up of 40 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 getNormal_6_523_vector()
		{
			MFVec3f Normal_6_523_vector = new MFVec3f(new double[] {0.26978,0.962922,9.55108E-6,0.849077,0.321116,-0.419468,0.896866,-0.321116,-0.304165,0.138729,-0.99033,4.91147E-6,0.822846,0.45416,0.341559,0.622529,0.561288,0.545356,0.366633,0.561334,0.741946,0.0546488,0.561288,0.825815,-0.265296,0.561334,0.783915,-0.545287,0.561299,0.62258,-0.741973,0.56133,0.366584,-0.825815,0.561285,0.0546679,-0.784045,0.561299,-0.264984,-0.62269,0.561384,-0.545074,-0.366257,0.561235,-0.742207,-0.0550482,0.561384,-0.825723,0.265679,0.561235,-0.783856,0.544768,0.561373,-0.622967,0.894978,-0.246986,0.3715,0.622585,-0.561373,-0.545204,0.366257,-0.561235,-0.742207,0.0550482,-0.561384,-0.825723,-0.265679,-0.561235,-0.783856,-0.544824,-0.561384,-0.622908,-0.742248,-0.561299,-0.366077,-0.825819,-0.561285,-0.0546098,-0.783925,-0.56133,0.265272,-0.622634,-0.561299,0.545225,-0.366633,-0.561334,0.741946,-0.0546488,-0.561288,0.825815,0.265296,-0.561334,0.783915,0.545231,-0.561288,0.622639,-0.57735,-0.57735,-0.57735,-0.408248,0.816497,-0.408248,-0.816497,0.408248,0.408248,-0.408248,-0.408248,0.816497,0.57735,-0.57735,-0.57735,0.666667,0.333333,-0.666667,0.666667,-0.666667,0.333333,0.333333,0.666667,0.666667});
			return Normal_6_523_vector;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #529, 120 total numbers made up of 40 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 getNormal_6_529_vector()
		{
			MFVec3f Normal_6_529_vector = new MFVec3f(new double[] {0.269787,0.96292,-4.76891E-5,0.848777,0.32114,-0.420056,0.896744,-0.32114,-0.304499,0.138733,-0.99033,-2.45233E-5,0.822938,0.454166,0.34133,0.622541,0.561305,0.545325,0.366486,0.561324,0.742027,0.0546488,0.561288,0.825815,-0.265222,0.561324,0.783947,-0.545195,0.561316,0.622645,-0.742062,0.561336,0.366397,-0.825836,0.561276,0.0544543,-0.783925,0.56133,-0.265272,-0.622634,0.561299,-0.545225,-0.366633,0.561334,-0.741946,-0.0546488,0.561288,-0.825815,0.265296,0.561334,-0.783915,0.545231,0.561288,-0.622639,0.89508,-0.24699,0.371252,0.622529,-0.561288,-0.545356,0.366633,-0.561334,-0.741946,0.0546488,-0.561288,-0.825815,-0.265296,-0.561334,-0.783915,-0.545287,-0.561299,-0.62258,-0.741973,-0.56133,-0.366584,-0.825816,-0.561276,-0.0547443,-0.784002,-0.561336,0.265034,-0.622645,-0.561316,0.545195,-0.366486,-0.561324,0.742027,-0.0546488,-0.561288,0.825815,0.265222,-0.561324,0.783947,0.545138,-0.561305,0.622704,-0.57735,-0.57735,-0.57735,-0.408248,0.816497,-0.408248,-0.816497,0.408248,0.408248,-0.408248,-0.408248,0.816497,0.57735,-0.57735,-0.57735,0.666667,0.333333,-0.666667,0.666667,-0.666667,0.333333,0.333333,0.666667,0.666667});
			return Normal_6_529_vector;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #535, 120 total numbers made up of 40 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 getNormal_6_535_vector()
		{
			MFVec3f Normal_6_535_vector = new MFVec3f(new double[] {0.26978,-0.962922,-9.55108E-6,0.848786,-0.321142,0.420036,0.896758,0.321142,0.304456,0.138729,0.99033,-4.91147E-6,0.823034,-0.454125,-0.341153,0.622821,-0.561333,-0.544977,0.366486,-0.561324,-0.742027,0.0546488,-0.561288,-0.825815,-0.265222,-0.561324,-0.783947,-0.545346,-0.561343,-0.622488,-0.742241,-0.561297,-0.366094,-0.825815,-0.561285,-0.0546679,-0.783936,-0.561333,0.265234,-0.622634,-0.561299,0.545225,-0.366633,-0.561334,0.741946,-0.0546488,-0.561288,0.825815,0.265296,-0.561334,0.783915,0.545231,-0.561288,0.622639,0.895169,0.246963,-0.371054,0.622529,0.561288,0.545356,0.366633,0.561334,0.741946,0.0546488,0.561288,0.825815,-0.265296,0.561334,0.783915,-0.545287,0.561299,0.62258,-0.74198,0.561333,0.366567,-0.825819,0.561285,0.0546098,-0.784034,0.561297,-0.265022,-0.622925,0.561343,-0.544847,-0.366486,0.561324,-0.742027,-0.0546488,0.561288,-0.825815,0.265222,0.561324,-0.783947,0.54529,0.561333,-0.622547,-0.57735,0.57735,0.57735,-0.408248,-0.816497,0.408248,-0.816497,-0.408248,-0.408248,-0.408248,0.408248,-0.816497,0.57735,0.57735,0.57735,0.666667,-0.333333,0.666667,0.666667,0.666667,-0.333333,0.333333,-0.666667,-0.666667});
			return Normal_6_535_vector;
		}
		/** Large attribute array: IndexedFaceSet coordIndex field, scene-graph level=5, element #601, 952 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 getIndexedFaceSet_5_601_coordIndex()
		{
			MFInt32 IndexedFaceSet_5_601_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_601_coordIndex_1()));
			return IndexedFaceSet_5_601_coordIndex;
		}
		/** Large attribute array: IndexedFaceSet normalIndex field, scene-graph level=5, element #601, 952 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 getIndexedFaceSet_5_601_normalIndex()
		{
			MFInt32 IndexedFaceSet_5_601_normalIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_601_normalIndex_1()));
			return IndexedFaceSet_5_601_normalIndex;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=6, element #601, 384 total numbers made up of 128 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 getCoordinate_6_601_point()
		{
			MFVec3f Coordinate_6_601_point = new MFVec3f()/*2.finalize*/
				.append(new MFVec3f(getCoordinate_6_601_point_1()))
				.append(new MFVec3f(getCoordinate_6_601_point_2()));
			return Coordinate_6_601_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #602, 384 total numbers made up of 128 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 getNormal_6_602_vector()
		{
			MFVec3f Normal_6_602_vector = new MFVec3f()/*2.finalize*/
				.append(new MFVec3f(getNormal_6_602_vector_1()))
				.append(new MFVec3f(getNormal_6_602_vector_2()));
			return Normal_6_602_vector;
		}
		/** Large attribute array: IndexedFaceSet coordIndex field, scene-graph level=5, element #607, 824 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 getIndexedFaceSet_5_607_coordIndex()
		{
			MFInt32 IndexedFaceSet_5_607_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_607_coordIndex_1()));
			return IndexedFaceSet_5_607_coordIndex;
		}
		/** Large attribute array: IndexedFaceSet normalIndex field, scene-graph level=5, element #607, 824 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 getIndexedFaceSet_5_607_normalIndex()
		{
			MFInt32 IndexedFaceSet_5_607_normalIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_607_normalIndex_1()));
			return IndexedFaceSet_5_607_normalIndex;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=6, element #607, 336 total numbers made up of 112 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 getCoordinate_6_607_point()
		{
			MFVec3f Coordinate_6_607_point = new MFVec3f()/*2.finalize*/
				.append(new MFVec3f(getCoordinate_6_607_point_1()))
				.append(new MFVec3f(getCoordinate_6_607_point_2()));
			return Coordinate_6_607_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #608, 336 total numbers made up of 112 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 getNormal_6_608_vector()
		{
			MFVec3f Normal_6_608_vector = new MFVec3f()/*2.finalize*/
				.append(new MFVec3f(getNormal_6_608_vector_1()))
				.append(new MFVec3f(getNormal_6_608_vector_2()));
			return Normal_6_608_vector;
		}
		/** Large attribute array: IndexedFaceSet coordIndex field, scene-graph level=5, element #613, 644 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 getIndexedFaceSet_5_613_coordIndex()
		{
			MFInt32 IndexedFaceSet_5_613_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_613_coordIndex_1()));
			return IndexedFaceSet_5_613_coordIndex;
		}
		/** Large attribute array: IndexedFaceSet normalIndex field, scene-graph level=5, element #613, 644 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 getIndexedFaceSet_5_613_normalIndex()
		{
			MFInt32 IndexedFaceSet_5_613_normalIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_613_normalIndex_1()));
			return IndexedFaceSet_5_613_normalIndex;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=6, element #613, 318 total numbers made up of 106 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 getCoordinate_6_613_point()
		{
			MFVec3f Coordinate_6_613_point = new MFVec3f()/*2.finalize*/
				.append(new MFVec3f(getCoordinate_6_613_point_1()))
				.append(new MFVec3f(getCoordinate_6_613_point_2()));
			return Coordinate_6_613_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #614, 318 total numbers made up of 106 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 getNormal_6_614_vector()
		{
			MFVec3f Normal_6_614_vector = new MFVec3f()/*2.finalize*/
				.append(new MFVec3f(getNormal_6_614_vector_1()))
				.append(new MFVec3f(getNormal_6_614_vector_2()));
			return Normal_6_614_vector;
		}
		/** Large attribute array: IndexedFaceSet coordIndex field, scene-graph level=5, element #619, 648 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 getIndexedFaceSet_5_619_coordIndex()
		{
			MFInt32 IndexedFaceSet_5_619_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_619_coordIndex_1()));
			return IndexedFaceSet_5_619_coordIndex;
		}
		/** Large attribute array: IndexedFaceSet normalIndex field, scene-graph level=5, element #619, 648 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 getIndexedFaceSet_5_619_normalIndex()
		{
			MFInt32 IndexedFaceSet_5_619_normalIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_619_normalIndex_1()));
			return IndexedFaceSet_5_619_normalIndex;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=6, element #619, 267 total numbers made up of 89 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 getCoordinate_6_619_point()
		{
			MFVec3f Coordinate_6_619_point = new MFVec3f(new double[] {-7.87111,1.13287,-0.014766,-7.87111,1.15519,-0.014766,-7.88172,1.15474,-0.0147652,-7.89233,1.14815,-0.0147645,-7.91356,1.14676,-0.014763,-7.93479,1.14597,-0.0147615,-7.94382,1.14597,-0.0147609,-7.94382,1.13287,-0.0147609,-7.87111,1.13287,0.028278,-7.87111,1.15519,0.028278,-7.94382,1.13287,-0.0124955,-7.94382,1.13287,0.00245707,-7.94382,1.13287,0.0110651,-7.94382,1.13287,0.0263347,-7.94382,1.13287,0.0282831,-7.83416,1.15519,0.0282754,-7.79721,1.15519,0.0282728,-7.76026,1.15519,0.0282703,-7.76026,1.15519,-0.0147737,-7.79721,1.15519,-0.0147711,-7.83416,1.15519,-0.0147685,-7.87133,1.16043,-0.0147659,-7.88194,1.15999,-0.0147652,-7.83417,1.15519,-0.101581,-7.87111,1.15519,-0.101579,-7.87134,1.16043,-0.101579,-7.94382,1.14597,0.0282831,-7.93478,1.14597,0.0282825,-7.91356,1.14676,0.028281,-7.89233,1.14815,0.0282795,-7.88172,1.15474,0.0282787,-7.88194,1.15999,0.0282788,-7.87133,1.16043,0.028278,-7.74118,1.16043,0.0282689,-7.72331,1.15519,0.0282677,-7.95468,1.14787,-0.0147601,-7.95468,1.13097,-0.0147601,-7.95468,1.13097,-0.0124947,-7.94382,1.14597,0.0263347,-7.94382,1.14597,0.0110651,-7.94382,1.14597,0.00245707,-7.94382,1.14597,-0.0124955,-7.95468,1.14787,-0.0124947,-7.95468,1.13097,0.0282838,-7.95468,1.14787,0.0282838,-7.95468,1.14787,0.0263355,-7.95468,1.13097,0.0263355,-7.83409,1.16043,-0.0147685,-7.81927,1.16043,-0.0147696,-7.79324,1.16043,-0.0147714,-7.76721,1.16043,-0.0147732,-7.74118,1.16043,-0.014775,-7.74118,1.16071,-0.00900724,-7.87133,1.16071,-0.00899816,-7.87133,1.16071,0.0225102,-7.74118,1.16071,0.0225011,-7.86962,1.16035,-0.0975851,-7.86962,1.16035,-0.0187585,-7.8358,1.16035,-0.0187609,-7.68636,1.15519,0.0319286,-7.68658,1.16043,0.0319286,-7.68658,1.16043,0.0139166,-7.68658,1.16043,-4.30349E-4,-7.68658,1.16043,-0.0184423,-7.68636,1.15519,-0.0184424,-7.72331,1.15519,-0.0147763,-7.74118,1.19528,-0.014775,-7.74118,1.19528,0.0282689,-7.72298,1.19528,0.0234854,-7.70478,1.19528,0.0187004,-7.68658,1.19528,0.0139166,-7.68658,1.19528,-4.30349E-4,-7.70478,1.19528,-0.00521161,-7.72298,1.19528,-0.00999408,-7.8341,1.16043,-0.101581,-7.68658,1.19931,0.0367987,-7.68658,1.19931,-0.0233124,-7.70478,1.19931,0.030322,-7.74118,1.19931,-0.014775,-7.74118,1.19931,0.0282689,-7.72298,1.19931,0.0234854,-7.72298,1.19931,-0.00999408,-7.70478,1.19931,-0.0168332,-7.83581,1.16035,-0.0975875,-7.86962,1.19918,-0.0975851,-7.86962,1.19918,-0.0187585,-7.86962,1.19918,-0.0101489,-7.86962,1.16035,-0.0101489,-7.8358,1.16035,-0.0101513});
			return Coordinate_6_619_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #620, 267 total numbers made up of 89 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 getNormal_6_620_vector()
		{
			MFVec3f Normal_6_620_vector = new MFVec3f(new double[] {0.229368,-0.688247,-0.688263,-0.145613,-0.887342,-0.437516,-0.632186,0.191524,-0.750773,-0.271614,0.846373,-0.458126,-0.0388366,0.831123,-0.554731,-0.0132473,0.706922,-0.707167,0.0690368,0.795925,-0.601445,0.0812883,-0.701226,-0.70829,0.192517,-0.19245,0.962237,0.312413,-0.156174,0.937021,-0.729072,-0.568585,0.381006,0.0,-1.0,2.21719E-14,0.0,-1.0,2.21719E-14,-0.224527,-0.809564,-0.542396,0.0772982,-0.890408,0.448551,0.0,-1.0,-7.02487E-15,0.0,-1.0,4.36282E-15,0.0,-1.0,2.30461E-15,-4.93654E-5,-0.707107,-0.707107,-6.98132E-5,3.42544E-15,-1.0,0.664605,-0.341172,-0.664757,-0.270761,0.950987,-0.14937,-0.425083,0.390701,-0.816491,0.332279,-0.669119,-0.664733,-0.568942,-0.593401,-0.569368,-0.577419,0.56783,-0.586648,0.0690519,0.594731,0.800954,-0.0166638,0.89424,0.447277,-0.0464979,0.830726,0.554737,-0.165862,0.517084,0.839711,-0.620313,0.500369,0.604022,-0.601055,0.552551,0.577426,-0.487539,0.715586,0.500243,-0.140888,0.206706,0.968206,-0.0308555,-0.766045,0.642045,-0.348114,0.414213,-0.840978,-0.793131,-0.427437,-0.433868,-0.284401,-0.854874,0.433943,-0.793127,0.427439,-0.433872,-1.0,-2.77461E-13,6.98132E-5,-1.0,0.0,6.98132E-5,-0.507899,0.60449,0.613702,-0.507899,0.60449,0.613702,0.0770979,-0.440529,0.894422,0.121872,0.696534,0.707098,0.121773,0.696534,-0.707115,0.15404,-0.881057,-0.447224,0.145486,0.971116,-0.189123,-3.31159E-6,0.998874,-0.0474351,-3.31159E-6,0.998874,-0.0474351,-3.31159E-6,0.998874,-0.0474351,-0.00543935,0.195982,-0.980592,-3.31159E-6,0.998874,-0.0474351,-0.707109,0.706311,-0.0334923,-0.707104,0.706311,0.033591,3.31159E-6,0.998874,0.0474351,-0.586744,0.809722,0.00907571,0.0519064,0.998403,-0.0223083,-0.0519219,0.997655,-0.0445835,0.797792,-0.447913,0.403612,0.543312,0.605582,0.581449,0.91309,0.304267,0.271457,0.946296,0.241187,-0.215296,0.649601,0.303644,-0.697007,0.545242,-0.582695,-0.602643,-0.0317667,-0.817966,-0.574389,-0.610747,0.0,-0.791826,-0.610637,0.0,0.791911,0.254222,-1.22107E-5,0.967146,0.177862,-0.460144,0.869846,0.825227,-0.350365,0.442996,0.632306,-0.480524,-0.607689,0.207771,-0.575658,-0.790853,0.11545,-0.219064,-0.968856,0.529391,0.80765,-0.259704,0.672923,0.729247,0.123986,0.995998,0.0087347,-0.0889472,-0.0817847,-0.720506,0.688609,-0.782103,0.447951,-0.433192,-0.318257,0.853441,0.412736,0.164998,0.53117,0.831044,0.0376247,0.722021,-0.690848,-0.114727,0.5378,-0.83523,-0.0346416,0.999372,0.00743768,-1.0,0.0,6.98132E-5,-1.0,0.0,6.98132E-5,-1.0,0.0,6.98132E-5,-0.447214,-0.894427,3.12214E-5,0.0,-1.0,0.0});
			return Normal_6_620_vector;
		}
		/** Large attribute array: IndexedFaceSet coordIndex field, scene-graph level=5, element #625, 532 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 getIndexedFaceSet_5_625_coordIndex()
		{
			MFInt32 IndexedFaceSet_5_625_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_625_coordIndex_1()));
			return IndexedFaceSet_5_625_coordIndex;
		}
		/** Large attribute array: IndexedFaceSet normalIndex field, scene-graph level=5, element #625, 532 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 getIndexedFaceSet_5_625_normalIndex()
		{
			MFInt32 IndexedFaceSet_5_625_normalIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_625_normalIndex_1()));
			return IndexedFaceSet_5_625_normalIndex;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=6, element #625, 222 total numbers made up of 74 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 getCoordinate_6_625_point()
		{
			MFVec3f Coordinate_6_625_point = new MFVec3f(new double[] {-7.86059,1.09168,-0.0141326,-7.86059,1.09168,0.0276431,-7.86059,1.09489,0.0276431,-7.86059,1.09489,0.0224219,-7.86059,1.09489,0.0171992,-7.86059,1.09489,0.011978,-7.86059,1.09489,0.00675529,-7.86059,1.09489,0.00153257,-7.86059,1.09489,-0.00368863,-7.86059,1.09489,-0.00891135,-7.86059,1.09489,-0.0141326,-7.86581,1.09168,-0.0193549,-7.87103,1.09168,-0.0193545,-7.87626,1.09168,-0.0193542,-7.88148,1.09168,-0.0193538,-7.8867,1.09168,-0.0193535,-7.89192,1.09168,-0.0193531,-7.89715,1.09168,-0.0193527,-7.90237,1.09168,-0.0193524,-7.90759,1.09168,-0.019352,-7.91281,1.09168,-0.0141289,-7.91281,1.09168,-0.00890771,-7.91281,1.09168,-0.00368499,-7.91281,1.09168,0.00153621,-7.91281,1.09168,0.00675893,-7.91281,1.09168,0.0119817,-7.91281,1.09168,0.0172029,-7.91281,1.09168,0.0224256,-7.91281,1.09168,0.0276468,-7.90759,1.09168,0.0328691,-7.90236,1.09168,0.0328688,-7.89714,1.09168,0.0328684,-7.89192,1.09168,0.032868,-7.8867,1.09168,0.0328677,-7.88148,1.09168,0.0328673,-7.87625,1.09168,0.0328669,-7.87103,1.09168,0.0328666,-7.86581,1.09168,0.0328662,-7.86581,1.09489,-0.0193549,-7.86581,1.09489,0.0328662,-7.87103,1.09489,-0.0193545,-7.87626,1.09489,-0.0193542,-7.88148,1.09489,-0.0193538,-7.8867,1.09489,-0.0193535,-7.89192,1.09489,-0.0193531,-7.89715,1.09489,-0.0193527,-7.90237,1.09489,-0.0193524,-7.90759,1.09489,-0.019352,-7.91281,1.09489,-0.0141289,-7.87103,1.09489,0.0328666,-7.87625,1.09489,0.0328669,-7.88148,1.09489,0.0328673,-7.8867,1.09489,0.0328677,-7.89192,1.09489,0.032868,-7.89714,1.09489,0.0328684,-7.90236,1.09489,0.0328688,-7.90759,1.09489,0.0328691,-7.91281,1.09489,0.0276468,-7.91281,1.09489,0.0224256,-7.91281,1.09489,0.0172029,-7.91281,1.09489,0.0119817,-7.91281,1.09489,0.00675893,-7.91281,1.09489,0.00153621,-7.91281,1.09489,-0.00368499,-7.91281,1.09489,-0.00890771,-7.86059,1.09168,-0.0141326,-7.86059,1.09168,-0.00891135,-7.86059,1.09168,-0.00368863,-7.86059,1.09168,0.00153257,-7.86059,1.09168,0.00675529,-7.86059,1.09168,0.011978,-7.86059,1.09168,0.0171992,-7.86059,1.09168,0.0224219,-7.86059,1.09168,0.0276431});
			return Coordinate_6_625_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #626, 222 total numbers made up of 74 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 getNormal_6_626_vector()
		{
			MFVec3f Normal_6_626_vector = new MFVec3f(new double[] {0.359438,-0.93189,-0.0488359,0.812553,-0.336557,0.475906,0.911112,0.336557,0.237918,1.0,-3.31247E-12,-6.98132E-5,1.0,-3.31247E-12,-6.98132E-5,1.0,0.0,-6.98132E-5,1.0,0.0,-6.98132E-5,1.0,0.0,-6.98132E-5,1.0,0.0,-6.98132E-5,1.0,0.0,-6.98132E-5,0.0630768,0.997666,-0.0261324,0.072202,-0.102207,-0.992139,0.0,-1.0,-3.18078E-14,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,-0.411247,-0.581522,-0.701931,-0.976949,-0.201284,-0.0710966,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,2.54418E-14,0.0,-1.0,2.54418E-14,-0.701931,-0.581522,0.411247,-0.205544,-0.581522,0.787136,4.93654E-5,-0.707107,0.707107,4.93654E-5,-0.707107,0.707107,4.93654E-5,-0.707107,0.707107,4.93654E-5,-0.707107,0.707107,4.93654E-5,-0.707107,0.707107,4.93654E-5,-0.707107,0.707107,4.93654E-5,-0.707107,0.707107,0.259732,-0.73451,0.626925,0.475906,0.336557,-0.812553,0.132257,0.186944,0.973427,-4.93654E-5,0.707107,-0.707107,-4.93654E-5,0.707107,-0.707107,-4.93654E-5,0.707107,-0.707107,-4.93654E-5,0.707107,-0.707107,-4.93654E-5,0.707107,-0.707107,-4.93654E-5,0.707107,-0.707107,-4.93654E-5,0.707107,-0.707107,-0.205654,0.581522,-0.787107,-0.701988,0.581522,-0.411149,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,-1.41345E-14,0.0,1.0,-6.39293E-27,0.0,1.0,1.41345E-14,0.0,1.0,2.8269E-14,0.0,1.0,2.8269E-14,-0.411149,0.581522,0.701988,-0.787107,0.581522,0.205654,-0.707107,0.707107,4.93654E-5,-0.707107,0.707107,4.93654E-5,-0.707107,0.707107,4.93654E-5,-0.707107,0.707107,4.93654E-5,-0.707107,0.707107,4.93654E-5,-0.707107,0.707107,4.93654E-5,-0.707107,0.707107,4.93654E-5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0});
			return Normal_6_626_vector;
		}
		/** Large attribute array: IndexedFaceSet coordIndex field, scene-graph level=5, element #631, 532 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 getIndexedFaceSet_5_631_coordIndex()
		{
			MFInt32 IndexedFaceSet_5_631_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_631_coordIndex_1()));
			return IndexedFaceSet_5_631_coordIndex;
		}
		/** Large attribute array: IndexedFaceSet normalIndex field, scene-graph level=5, element #631, 532 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 getIndexedFaceSet_5_631_normalIndex()
		{
			MFInt32 IndexedFaceSet_5_631_normalIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_631_normalIndex_1()));
			return IndexedFaceSet_5_631_normalIndex;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=6, element #631, 222 total numbers made up of 74 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 getCoordinate_6_631_point()
		{
			MFVec3f Coordinate_6_631_point = new MFVec3f(new double[] {-7.8632,1.09395,-0.0120439,-7.8632,1.09395,0.0255548,-7.8632,1.099,0.0255548,-7.8632,1.099,0.020855,-7.8632,1.099,0.0161551,-7.8632,1.099,0.0114553,-7.8632,1.099,0.00675547,-7.8632,1.099,0.00205563,-7.8632,1.099,-0.00264421,-7.8632,1.099,-0.00734405,-7.8632,1.099,-0.0120439,-7.8679,1.09395,-0.0167434,-7.8726,1.09395,-0.0167431,-7.8773,1.09395,-0.0167427,-7.882,1.09395,-0.0167424,-7.8867,1.09395,-0.0167421,-7.8914,1.09395,-0.0167418,-7.8961,1.09395,-0.0167414,-7.9008,1.09395,-0.0167411,-7.9055,1.09395,-0.0167408,-7.9102,1.09395,-0.0120406,-7.9102,1.09395,-0.00734077,-7.9102,1.09395,-0.00264093,-7.9102,1.09395,0.00205891,-7.9102,1.09395,0.00675875,-7.9102,1.09395,0.0114586,-7.9102,1.09395,0.0161584,-7.9102,1.09395,0.0208583,-7.9102,1.09395,0.0255581,-7.9055,1.09395,0.0302576,-7.9008,1.09395,0.0302573,-7.8961,1.09395,0.030257,-7.8914,1.09395,0.0302566,-7.8867,1.09395,0.0302563,-7.882,1.09395,0.030256,-7.8773,1.09395,0.0302557,-7.8726,1.09395,0.0302553,-7.8679,1.09395,0.030255,-7.8679,1.099,-0.0167434,-7.8679,1.099,0.030255,-7.8726,1.099,-0.0167431,-7.8773,1.099,-0.0167427,-7.882,1.099,-0.0167424,-7.8867,1.099,-0.0167421,-7.8914,1.099,-0.0167418,-7.8961,1.099,-0.0167414,-7.9008,1.099,-0.0167411,-7.9055,1.099,-0.0167408,-7.9102,1.099,-0.0120406,-7.8726,1.099,0.0302553,-7.8773,1.099,0.0302557,-7.882,1.099,0.030256,-7.8867,1.099,0.0302563,-7.8914,1.099,0.0302566,-7.8961,1.099,0.030257,-7.9008,1.099,0.0302573,-7.9055,1.099,0.0302576,-7.9102,1.099,0.0255581,-7.9102,1.099,0.0208583,-7.9102,1.099,0.0161584,-7.9102,1.099,0.0114586,-7.9102,1.099,0.00675875,-7.9102,1.099,0.00205891,-7.9102,1.099,-0.00264093,-7.9102,1.099,-0.00734077,-7.8632,1.09395,-0.0120439,-7.8632,1.09395,-0.00734405,-7.8632,1.09395,-0.00264421,-7.8632,1.09395,0.00205563,-7.8632,1.09395,0.00675547,-7.8632,1.09395,0.0114553,-7.8632,1.09395,0.0161551,-7.8632,1.09395,0.020855,-7.8632,1.09395,0.0255548});
			return Coordinate_6_631_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #632, 222 total numbers made up of 74 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 getNormal_6_632_vector()
		{
			MFVec3f Normal_6_632_vector = new MFVec3f(new double[] {0.359438,-0.93189,-0.0488359,0.812553,-0.336557,0.475906,0.911112,0.336557,0.237918,1.0,0.0,-6.98132E-5,1.0,1.17006E-12,-6.98132E-5,1.0,2.34011E-12,-6.98132E-5,1.0,2.21133E-25,-6.98132E-5,1.0,-5.85028E-13,-6.98132E-5,1.0,5.85028E-13,-6.98132E-5,1.0,0.0,-6.98132E-5,0.0630768,0.997666,-0.0261324,0.072202,-0.102207,-0.992139,0.0,-1.0,7.85352E-14,0.0,-1.0,-4.93385E-26,0.0,-1.0,-7.85352E-14,0.0,-1.0,0.0,0.0,-1.0,-1.5707E-13,0.0,-1.0,1.5707E-13,0.0,-1.0,3.14141E-13,-0.411247,-0.581522,-0.701931,-0.976949,-0.201284,-0.0710966,0.0,-1.0,-3.14141E-14,0.0,-1.0,-3.14141E-14,0.0,-1.0,-3.14141E-14,0.0,-1.0,7.88861E-27,0.0,-1.0,-7.89492E-27,0.0,-1.0,-3.14141E-14,0.0,-1.0,-3.14141E-14,-0.701931,-0.581522,0.411247,-0.205544,-0.581522,0.787136,4.93654E-5,-0.707107,0.707107,4.93654E-5,-0.707107,0.707107,4.93654E-5,-0.707107,0.707107,4.93654E-5,-0.707107,0.707107,4.93654E-5,-0.707107,0.707107,4.93654E-5,-0.707107,0.707107,4.93654E-5,-0.707107,0.707107,0.259732,-0.73451,0.626925,0.475906,0.336557,-0.812553,0.132257,0.186944,0.973427,-4.93654E-5,0.707107,-0.707107,-4.93654E-5,0.707107,-0.707107,-4.93654E-5,0.707107,-0.707107,-4.93654E-5,0.707107,-0.707107,-4.93654E-5,0.707107,-0.707107,-4.93654E-5,0.707107,-0.707107,-4.93654E-5,0.707107,-0.707107,-0.205654,0.581522,-0.787107,-0.701988,0.581522,-0.411149,0.0,1.0,4.36306E-15,0.0,1.0,-8.72613E-15,0.0,1.0,-8.72613E-15,0.0,1.0,0.0,0.0,1.0,1.74523E-14,0.0,1.0,1.74523E-14,0.0,1.0,0.0,-0.411149,0.581522,0.701988,-0.787107,0.581522,0.205654,-0.707107,0.707107,4.93654E-5,-0.707107,0.707107,4.93654E-5,-0.707107,0.707107,4.93654E-5,-0.707107,0.707107,4.93654E-5,-0.707107,0.707107,4.93654E-5,-0.707107,0.707107,4.93654E-5,-0.707107,0.707107,4.93654E-5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0});
			return Normal_6_632_vector;
		}
		/** Large attribute array: IndexedFaceSet coordIndex field, scene-graph level=5, element #637, 496 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 getIndexedFaceSet_5_637_coordIndex()
		{
			MFInt32 IndexedFaceSet_5_637_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_637_coordIndex_1()));
			return IndexedFaceSet_5_637_coordIndex;
		}
		/** Large attribute array: IndexedFaceSet normalIndex field, scene-graph level=5, element #637, 496 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 getIndexedFaceSet_5_637_normalIndex()
		{
			MFInt32 IndexedFaceSet_5_637_normalIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_637_normalIndex_1()));
			return IndexedFaceSet_5_637_normalIndex;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=6, element #637, 192 total numbers made up of 64 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 getCoordinate_6_637_point()
		{
			MFVec3f Coordinate_6_637_point = new MFVec3f(new double[] {-7.81052,0.847865,0.00611643,-7.81002,0.848066,0.00882321,-7.80478,0.834923,0.00882285,-7.80528,0.834722,0.00611607,-7.81002,0.848066,0.00340806,-7.87963,1.02253,0.00341292,-7.88012,1.02233,0.00612129,-7.80478,0.834923,0.00340769,-7.87963,1.02253,0.00882807,-7.8086,0.848633,0.0111186,-7.80335,0.83549,0.0111183,-7.8782,1.0231,0.0111235,-7.80646,0.849485,0.0126528,-7.80122,0.836341,0.0126524,-7.87607,1.02395,0.0126576,-7.80395,0.850487,0.0131913,-7.79871,0.837344,0.0131909,-7.87355,1.02495,0.0131961,-7.80143,0.851491,0.0126524,-7.79619,0.838348,0.012652,-7.87104,1.02595,0.0126573,-7.7993,0.852341,0.011118,-7.79406,0.839198,0.0111176,-7.86891,1.0268,0.0111228,-7.79788,0.85291,0.00882236,-7.79263,0.839767,0.008822,-7.86748,1.02737,0.00882722,-7.79738,0.853109,0.00611551,-7.79213,0.839966,0.00611515,-7.86698,1.02757,0.00612037,-7.79788,0.85291,0.00340721,-7.79264,0.839767,0.00340685,-7.86748,1.02737,0.00341207,-7.7993,0.852341,0.00111181,-7.79406,0.839198,0.00111144,-7.86891,1.0268,0.00111667,-7.80143,0.851491,-4.21115E-4,-7.79619,0.838348,-4.21481E-4,-7.87104,1.02595,-4.16256E-4,-7.80395,0.850487,-9.59323E-4,-7.79871,0.837344,-9.59689E-4,-7.87355,1.02495,-9.54464E-4,-7.80647,0.849485,-4.20764E-4,-7.80122,0.836341,-4.2113E-4,-7.87607,1.02395,-4.15905E-4,-7.8086,0.848633,0.00111246,-7.80335,0.83549,0.00111209,-7.8782,1.0231,0.00111732,-7.88088,1.09454,0.00612134,-7.88034,1.09454,0.00882812,-7.87881,1.09454,0.0111235,-7.88035,1.09454,0.00341297,-7.87881,1.09454,0.00111736,-7.87652,1.09454,-4.15873E-4,-7.87381,1.09453,-9.54446E-4,-7.8711,1.09452,-4.16251E-4,-7.8688,1.09452,0.00111666,-7.86727,1.09452,0.00341206,-7.86673,1.09451,0.00612036,-7.86727,1.09452,0.00882721,-7.8688,1.09452,0.0111228,-7.8711,1.09452,0.0126573,-7.87381,1.09453,0.0131961,-7.87651,1.09454,0.0126576});
			return Coordinate_6_637_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #638, 192 total numbers made up of 64 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 getNormal_6_638_vector()
		{
			MFVec3f Normal_6_638_vector = new MFVec3f(new double[] {-0.928803,-0.370574,1.18509E-4,-0.832678,-0.332248,0.443011,-0.71416,-0.630627,0.303784,0.237986,-0.971269,-9.13156E-6,-0.858154,-0.342401,-0.382536,-0.890147,-0.20201,-0.408449,-0.986824,-0.156711,-0.0402425,-0.74005,-0.561144,-0.370733,-0.921192,-0.158107,0.355537,-0.611891,-0.244141,0.75232,-0.370506,-0.752029,0.54514,-0.717633,-0.171462,0.674984,-0.297912,-0.118878,0.947162,-0.13254,-0.657256,0.741921,-0.435801,-0.0840693,0.896108,0.0614777,0.0244992,0.997808,0.157215,-0.541663,0.825763,-0.0638193,-0.0124951,0.997883,0.41161,0.164192,0.896447,0.454619,-0.422981,0.783842,0.317604,0.0598716,0.946332,0.698902,0.27882,0.658632,0.714535,-0.319271,0.622499,0.649139,0.122898,0.750676,0.879751,0.350981,0.320704,0.897194,-0.246385,0.36652,0.881145,0.167378,0.44223,0.926769,0.369751,-0.0662007,0.975004,-0.215341,0.0547276,0.980177,0.186338,0.0673067,0.832707,0.332233,-0.442968,0.936078,-0.230857,-0.265447,0.931343,0.17661,-0.318449,0.61177,0.244096,-0.752433,0.786267,-0.290633,-0.545268,0.740776,0.139947,-0.657013,0.297716,0.118803,-0.947233,0.548349,-0.385534,-0.742076,0.435944,0.0823333,-0.8962,-0.0615443,-0.024525,-0.997803,0.258798,-0.501078,-0.825799,0.0637743,0.0122825,-0.997889,-0.411397,-0.164104,-0.896561,-0.0385351,-0.6197,-0.783893,-0.31733,-0.0605637,-0.946379,-0.698745,-0.278769,-0.658819,-0.298602,-0.723322,-0.62261,-0.648284,-0.125746,-0.750943,-0.948124,0.31242,0.0587712,-0.126253,0.990572,0.0531654,-0.696941,0.241557,0.675221,-0.787998,0.556566,-0.263235,-0.629424,0.558403,-0.540381,-0.374231,0.560313,-0.738919,-0.0576023,0.561377,-0.825553,0.270201,0.561161,-0.782362,0.553564,0.560116,-0.616309,0.747877,0.55894,-0.358142,0.827916,0.558532,-0.0509577,0.786622,0.559237,0.261686,0.629764,0.560612,0.53769,0.376154,0.561685,0.736897,0.0599268,0.561615,0.825226,-0.268313,0.560252,0.783662});
			return Normal_6_638_vector;
		}
		/** Large attribute array: IndexedFaceSet coordIndex field, scene-graph level=5, element #643, 464 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 getIndexedFaceSet_5_643_coordIndex()
		{
			MFInt32 IndexedFaceSet_5_643_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_643_coordIndex_1()));
			return IndexedFaceSet_5_643_coordIndex;
		}
		/** Large attribute array: IndexedFaceSet normalIndex field, scene-graph level=5, element #643, 464 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 getIndexedFaceSet_5_643_normalIndex()
		{
			MFInt32 IndexedFaceSet_5_643_normalIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_643_normalIndex_1()));
			return IndexedFaceSet_5_643_normalIndex;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=6, element #643, 192 total numbers made up of 64 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 getCoordinate_6_643_point()
		{
			MFVec3f Coordinate_6_643_point = new MFVec3f(new double[] {-7.8972,0.847865,0.0831947,-7.89991,0.848066,0.0836953,-7.89991,0.834923,0.088939,-7.8972,0.834722,0.0884381,-7.8945,0.848066,0.0836949,-7.8945,1.02253,0.014091,-7.89721,1.02233,0.0135909,-7.8945,0.834923,0.0889386,-7.89992,1.02253,0.0140914,-7.90221,1.0231,0.0155158,-7.90221,0.848633,0.0851197,-7.90375,1.02395,0.0176476,-7.90374,0.849485,0.0872517,-7.90428,1.02495,0.020162,-7.90428,0.850487,0.0897658,-7.90374,1.02595,0.0226776,-7.90374,0.851491,0.0922817,-7.90221,0.852341,0.0944132,-7.90221,0.839198,0.0996569,-7.90374,0.838348,0.0975251,-7.90221,1.0268,0.0248094,-7.89991,0.85291,0.0958373,-7.89991,0.839767,0.101081,-7.89992,1.02737,0.0262335,-7.8972,0.853109,0.0963375,-7.8972,0.839966,0.101581,-7.89721,1.02757,0.0267337,-7.8945,0.85291,0.095837,-7.8945,0.839767,0.101081,-7.8945,1.02737,0.0262331,-7.8922,0.852341,0.0944125,-7.8922,0.839198,0.0996562,-7.89221,1.0268,0.0248087,-7.89067,0.851491,0.0922808,-7.89067,0.838348,0.0975242,-7.89067,1.02595,0.0226767,-7.89013,0.850487,0.0897649,-7.89013,0.837344,0.0950098,-7.89013,1.02495,0.020161,-7.89067,0.849485,0.0872508,-7.89067,0.836341,0.0924942,-7.89067,1.02395,0.0176467,-7.8922,0.848633,0.085119,-7.8922,0.83549,0.0903627,-7.89221,1.0231,0.0155151,-7.90221,0.83549,0.0903634,-7.90374,0.836341,0.0924951,-7.90428,0.837344,0.0950108,-7.89721,1.09454,0.0128321,-7.89992,1.09454,0.0133709,-7.90221,1.09454,0.0149054,-7.8945,1.09454,0.0133706,-7.89221,1.09454,0.0149047,-7.89067,1.09454,0.0172001,-7.89013,1.09453,0.0199069,-7.89067,1.09452,0.0226152,-7.89221,1.09452,0.0249109,-7.8945,1.09452,0.0264441,-7.89721,1.09451,0.0269827,-7.89992,1.09452,0.0264445,-7.90221,1.09452,0.0249116,-7.90374,1.09452,0.0226162,-7.90428,1.09453,0.0199079,-7.90375,1.09454,0.017201});
			return Coordinate_6_643_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #644, 192 total numbers made up of 64 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 getNormal_6_644_vector()
		{
			MFVec3f Normal_6_644_vector = new MFVec3f(new double[] {-3.25968E-5,-0.370555,-0.92881,-0.382725,-0.342354,-0.858088,-0.174792,-0.740287,-0.649171,2.11016E-5,-0.971271,0.237977,0.382603,-0.342356,-0.858141,0.408503,-0.20201,-0.890122,0.0403303,-0.156712,-0.98682,0.370789,-0.561099,-0.740056,-0.355562,-0.158108,-0.921183,-0.674934,-0.17148,-0.717676,-0.752421,-0.244097,-0.611784,-0.896221,-0.0840241,-0.435577,-0.947205,-0.118834,-0.297793,-0.997883,-0.0124964,-0.0638224,-0.997808,0.0244994,0.0614778,-0.94637,0.0598503,0.317492,-0.872047,0.181339,0.454588,-0.658722,0.278791,0.698828,-0.622627,-0.319341,0.714392,-0.371795,-0.738687,0.562236,-0.75084,0.122863,0.648956,-0.320649,0.350988,0.879768,-0.366498,-0.246384,0.897203,-0.442205,0.16738,0.881157,0.0662864,0.369749,0.926764,-0.0546566,-0.21534,0.975008,-0.0672213,0.186339,0.980183,0.442993,0.332229,0.832695,0.265493,-0.230859,0.936065,0.318504,0.176606,0.931325,0.75227,0.244164,0.611942,0.545199,-0.290595,0.786329,0.656921,0.139962,0.740855,0.947191,0.118852,0.297832,0.741936,-0.385466,0.548586,0.896091,0.0823747,0.43616,0.997803,-0.024522,-0.0615383,0.825792,-0.501075,0.258826,0.997889,0.0122825,0.0637743,0.896458,-0.164179,-0.411593,0.78386,-0.619734,-0.0386485,0.94634,-0.0605868,-0.317444,0.658614,-0.278825,-0.698917,0.622493,-0.723364,-0.298744,0.750708,-0.125796,-0.648547,-1.81347E-4,-0.929005,0.370066,1.85282E-5,-0.928831,0.370504,1.42385E-4,-0.928783,0.370625,-0.0588299,0.31242,-0.948121,-0.0531596,0.990572,-0.126255,-0.675283,0.241567,-0.696878,0.263398,0.55655,-0.787955,0.540229,0.558394,-0.629562,0.738818,0.560325,-0.374411,0.825553,0.561377,-0.0576023,0.782322,0.561173,0.270292,0.616178,0.560104,0.553723,0.358164,0.558937,0.747869,0.0510271,0.558532,0.827912,-0.261642,0.559239,0.786635,-0.53776,0.560625,0.629693,-0.736999,0.561672,0.375974,-0.825226,0.561615,0.0599268,-0.783701,0.56024,-0.268221});
			return Normal_6_644_vector;
		}
		/** Large attribute array: IndexedFaceSet coordIndex field, scene-graph level=5, element #649, 456 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 getIndexedFaceSet_5_649_coordIndex()
		{
			MFInt32 IndexedFaceSet_5_649_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_649_coordIndex_1()));
			return IndexedFaceSet_5_649_coordIndex;
		}
		/** Large attribute array: IndexedFaceSet normalIndex field, scene-graph level=5, element #649, 456 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 getIndexedFaceSet_5_649_normalIndex()
		{
			MFInt32 IndexedFaceSet_5_649_normalIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_649_normalIndex_1()));
			return IndexedFaceSet_5_649_normalIndex;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=6, element #649, 192 total numbers made up of 64 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 getCoordinate_6_649_point()
		{
			MFVec3f Coordinate_6_649_point = new MFVec3f(new double[] {-7.90015,0.847865,-0.0722926,-7.90285,0.848066,-0.0727931,-7.90285,1.02253,-0.00318773,-7.90014,1.02233,-0.00268875,-7.89743,1.02253,-0.00318811,-7.89744,0.848066,-0.0727935,-7.89514,0.848633,-0.0742179,-7.89514,0.83549,-0.0794613,-7.89744,0.834923,-0.0780369,-7.89514,1.0231,-0.00461373,-7.89361,0.849485,-0.0763496,-7.89361,0.836341,-0.0815933,-7.89361,1.02395,-0.00674578,-7.89307,0.850487,-0.078864,-7.89307,0.837344,-0.0841074,-7.89307,1.02495,-0.00926021,-7.89361,0.851491,-0.0813796,-7.89361,0.838348,-0.0866233,-7.89361,1.02595,-0.0117758,-7.89514,0.852341,-0.0835111,-7.89514,0.839198,-0.0887548,-7.89514,1.0268,-0.0139073,-7.89744,0.85291,-0.0849352,-7.89744,0.839767,-0.0901789,-7.89743,1.02737,-0.0153314,-7.90015,0.853109,-0.0854357,-7.90015,0.839966,-0.0906791,-7.90014,1.02757,-0.0158319,-7.90285,0.85291,-0.0849349,-7.90286,0.839767,-0.0901785,-7.90285,1.02737,-0.015331,-7.90515,0.852341,-0.0835105,-7.90515,0.839198,-0.0887541,-7.90515,1.0268,-0.0139066,-7.90668,0.851491,-0.0813787,-7.90668,0.838348,-0.0866224,-7.90668,1.02595,-0.0117749,-7.90722,0.850487,-0.0788631,-7.90722,0.837344,-0.0841064,-7.90722,1.02495,-0.00925922,-7.90668,1.02395,-0.00674487,-7.90668,0.849485,-0.0763487,-7.90514,1.0231,-0.00461303,-7.90515,0.848633,-0.0742172,-7.90015,0.834722,-0.0775363,-7.90668,0.836341,-0.0815924,-7.90515,0.83549,-0.0794606,-7.90285,0.834923,-0.0780365,-7.89721,1.09454,-0.00193048,-7.8945,1.09454,-0.00246905,-7.89221,1.09454,-0.0040035,-7.89992,1.09454,-0.00246867,-7.90221,1.09454,-0.0040028,-7.90375,1.09454,-0.0062982,-7.90429,1.09453,-0.00900528,-7.90375,1.09452,-0.0117133,-7.90221,1.09452,-0.014009,-7.89992,1.09452,-0.0155422,-7.89721,1.09451,-0.0160811,-7.8945,1.09452,-0.0155426,-7.89221,1.09452,-0.0140097,-7.89067,1.09452,-0.0117143,-7.89014,1.09453,-0.00900627,-7.89067,1.09454,-0.00629911});
			return Coordinate_6_649_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #650, 192 total numbers made up of 64 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 getNormal_6_650_vector()
		{
			MFVec3f Normal_6_650_vector = new MFVec3f(new double[] {3.26303E-5,-0.370559,0.928809,-0.38265,-0.342352,0.858122,-0.408446,-0.194688,0.891778,-0.0400935,-0.155116,0.987082,0.355697,-0.166736,0.919608,0.489452,-0.323148,0.809945,0.752449,-0.244083,0.611755,0.545152,-0.752011,0.370524,0.392816,-0.874448,0.28467,0.675943,-0.18255,0.713986,0.947209,-0.118826,0.297783,0.742051,-0.65715,0.132341,0.896596,-0.102402,0.430847,0.997808,0.024501,-0.0614806,0.825764,-0.541663,-0.157208,0.997729,-0.0333652,0.0585155,0.896572,0.1641,-0.411375,0.783889,-0.423004,-0.454518,0.945877,0.0399633,-0.322056,0.658714,0.278793,-0.698835,0.62263,-0.319346,-0.714388,0.750419,0.10718,-0.652214,0.320678,0.350981,-0.87976,0.366469,-0.246374,-0.897218,0.442068,0.158211,-0.882919,-0.0663041,0.369742,-0.926766,0.0546839,-0.215349,-0.975005,0.0670899,0.184934,-0.980458,-0.443022,0.332223,-0.832682,-0.26552,-0.230863,-0.936056,-0.319027,0.183248,-0.929861,-0.752258,0.244171,-0.611955,-0.545179,-0.290585,-0.786346,-0.657565,0.153865,-0.737518,-0.947194,0.118848,-0.297824,-0.741976,-0.385475,-0.548526,-0.896526,0.10148,-0.43121,-1.0,-1.75558E-5,1.12184E-4,-0.69353,-0.605671,-0.390101,-0.997733,0.0333716,-0.0584366,-0.945854,-0.0410702,0.321983,-0.896461,-0.164181,0.411586,-0.750492,-0.11078,0.651528,-0.658699,-0.278795,0.698849,-2.58787E-5,-0.928861,-0.370429,1.73167E-5,-0.928803,-0.370574,-2.92304E-4,-0.929038,-0.369983,-4.8049E-4,-0.929206,-0.369561,0.0589305,0.310277,0.948818,0.0532502,0.990537,0.126494,0.682269,0.215271,0.69869,-0.261521,0.563897,0.783344,-0.532692,0.573477,0.622385,-0.724631,0.581122,0.370416,-0.808767,0.584984,0.0607501,-0.768753,0.583918,-0.260882,-0.608909,0.578335,-0.542916,-0.356197,0.569673,-0.740673,-0.0511216,0.560092,-0.826852,0.26321,0.551376,-0.791647,0.543547,0.544604,-0.63872,0.748276,0.540011,-0.385319,0.840613,0.537655,-0.0655475,0.799082,0.537764,0.268846});
			return Normal_6_650_vector;
		}
		/** Large attribute array: IndexedFaceSet coordIndex field, scene-graph level=5, element #655, 384 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 getIndexedFaceSet_5_655_coordIndex()
		{
			MFInt32 IndexedFaceSet_5_655_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_655_coordIndex_1()));
			return IndexedFaceSet_5_655_coordIndex;
		}
		/** Large attribute array: IndexedFaceSet normalIndex field, scene-graph level=5, element #655, 384 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 getIndexedFaceSet_5_655_normalIndex()
		{
			MFInt32 IndexedFaceSet_5_655_normalIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_655_normalIndex_1()));
			return IndexedFaceSet_5_655_normalIndex;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=6, element #655, 150 total numbers made up of 50 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 getCoordinate_6_655_point()
		{
			MFVec3f Coordinate_6_655_point = new MFVec3f(new double[] {-7.69296,1.19855,0.0281908,-7.69162,1.19855,0.0279247,-7.69162,1.16043,0.0279247,-7.69296,1.16043,0.0281908,-7.69429,1.19855,0.0279249,-7.69542,1.19855,0.0271692,-7.69618,1.19855,0.0260384,-7.69645,1.19855,0.0247045,-7.69618,1.19855,0.0233696,-7.69542,1.19855,0.0222386,-7.69429,1.19855,0.0214825,-7.69296,1.19855,0.0212164,-7.69163,1.19855,0.0214823,-7.69049,1.19855,0.0222383,-7.68974,1.19855,0.0233691,-7.68947,1.19855,0.024704,-7.68974,1.19855,0.0260379,-7.69049,1.19855,0.0271689,-7.69429,1.16043,0.0279249,-7.69049,1.16043,0.0271689,-7.68974,1.16043,0.0260379,-7.68947,1.16043,0.024704,-7.68974,1.16043,0.0233691,-7.69049,1.16043,0.0222383,-7.69163,1.16043,0.0214823,-7.69296,1.16043,0.0212164,-7.69429,1.16043,0.0214825,-7.69542,1.19769,0.0222386,-7.69949,1.19801,0.0222389,-7.69542,1.19544,0.0222386,-7.69949,1.19576,0.0222389,-7.69542,1.18544,0.0222386,-7.69949,1.18576,0.0222389,-7.69542,1.17544,0.0222386,-7.69949,1.17576,0.0222389,-7.69542,1.16544,0.0222386,-7.69542,1.16043,0.0222386,-7.69618,1.19769,0.0260384,-7.69542,1.16043,0.0271692,-7.69618,1.16043,0.0260384,-7.69618,1.16544,0.0260384,-7.70024,1.17576,0.0260387,-7.69618,1.17544,0.0260384,-7.70024,1.18576,0.0260387,-7.69618,1.18544,0.0260384,-7.70024,1.19576,0.0260387,-7.69618,1.19544,0.0260384,-7.70024,1.19801,0.0260387,-7.69618,1.16043,0.0233696,-7.69645,1.16043,0.0247045});
			return Coordinate_6_655_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #656, 150 total numbers made up of 50 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 getNormal_6_656_vector()
		{
			MFVec3f Normal_6_656_vector = new MFVec3f(new double[] {-1.06251E-5,0.962914,0.26981,0.419686,0.321149,0.848956,0.303998,-0.321149,0.896911,-5.46379E-6,-0.990328,0.138746,-0.341125,0.454165,0.823024,-0.74972,0.245855,0.61439,-0.862525,0.475987,0.171717,0.0,0.0,0.0,0.0,1.0,3.06096E-13,-0.89969,0.0,-0.43653,-0.499492,0.244456,-0.831113,-0.0550169,0.56134,-0.825754,0.265601,0.561311,-0.783828,0.54526,0.561302,-0.622601,0.741987,0.561333,-0.366553,0.825821,0.561281,-0.0546258,0.783958,0.561329,0.265179,0.622666,0.561308,0.545179,-0.371029,-0.24699,0.895173,0.545266,-0.561308,0.62259,0.742025,-0.561329,0.366483,0.825821,-0.561281,0.0546182,0.783941,-0.561333,-0.265219,0.622626,-0.561302,-0.545231,0.366751,-0.561311,-0.741905,0.0547213,-0.56134,-0.825774,-0.265827,-0.561304,-0.783756,-0.488462,0.502938,-0.713062,-0.581264,-0.404263,-0.706189,-0.355328,0.275568,-0.893199,-0.786313,0.124205,-0.605215,-0.411131,0.358947,-0.837931,-0.78635,0.124209,-0.605165,-0.411009,0.358971,-0.83798,-0.786304,0.124214,-0.605225,-0.700863,-0.0839,-0.708345,-0.831562,0.0,-0.555431,-0.870718,0.244773,0.426541,-0.622525,-0.561302,0.545347,-0.862525,-0.475987,0.171717,-0.950962,-0.108944,0.289486,-0.380931,0.820397,0.426427,-0.775782,0.0628825,0.627859,-0.381252,0.820316,0.426295,-0.775823,0.0628818,0.627809,-0.380995,0.82038,0.426403,-0.662152,-0.171259,0.729538,-0.245737,0.755946,0.606762,0.0,-1.0,4.61494E-13,0.0,0.0,0.0});
			return Normal_6_656_vector;
		}
		/** Large attribute array: IndexedFaceSet coordIndex field, scene-graph level=5, element #661, 384 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 getIndexedFaceSet_5_661_coordIndex()
		{
			MFInt32 IndexedFaceSet_5_661_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_661_coordIndex_1()));
			return IndexedFaceSet_5_661_coordIndex;
		}
		/** Large attribute array: IndexedFaceSet normalIndex field, scene-graph level=5, element #661, 384 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 getIndexedFaceSet_5_661_normalIndex()
		{
			MFInt32 IndexedFaceSet_5_661_normalIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_661_normalIndex_1()));
			return IndexedFaceSet_5_661_normalIndex;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=6, element #661, 150 total numbers made up of 50 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 getCoordinate_6_661_point()
		{
			MFVec3f Coordinate_6_661_point = new MFVec3f(new double[] {-7.69296,1.19855,-0.00643998,-7.69163,1.19855,-0.00670608,-7.69163,1.16043,-0.00670608,-7.69296,1.16043,-0.00643998,-7.6943,1.19855,-0.00670589,-7.69543,1.19855,-0.00746064,-7.69618,1.19855,-0.00859269,-7.69645,1.19855,-0.00992632,-7.69618,1.19855,-0.0112603,-7.69543,1.19855,-0.0123924,-7.6943,1.19855,-0.0131483,-7.69296,1.19855,-0.0134131,-7.69163,1.19855,-0.0131484,-7.6905,1.19855,-0.0123928,-7.68974,1.19855,-0.0112607,-7.68948,1.19855,-0.0099268,-7.68974,1.19855,-0.00859314,-7.6905,1.19855,-0.00746099,-7.6943,1.16043,-0.00670589,-7.6905,1.16043,-0.00746099,-7.68974,1.16043,-0.00859314,-7.68948,1.16043,-0.0099268,-7.68974,1.16043,-0.0112607,-7.6905,1.16043,-0.0123928,-7.69163,1.16043,-0.0131484,-7.69296,1.16043,-0.0134131,-7.6943,1.16043,-0.0131483,-7.69543,1.19769,-0.0123924,-7.69949,1.19801,-0.0123922,-7.69543,1.19544,-0.0123924,-7.69949,1.19576,-0.0123922,-7.69543,1.18544,-0.0123924,-7.69949,1.18576,-0.0123922,-7.69543,1.17544,-0.0123924,-7.69949,1.17576,-0.0123922,-7.69543,1.16544,-0.0123924,-7.69543,1.16043,-0.0123924,-7.69618,1.19769,-0.00859269,-7.69543,1.16043,-0.00746064,-7.69618,1.16043,-0.00859269,-7.69618,1.16544,-0.00859269,-7.70024,1.17576,-0.0085924,-7.69618,1.17544,-0.00859269,-7.70024,1.18576,-0.0085924,-7.69618,1.18544,-0.00859269,-7.70024,1.19576,-0.0085924,-7.69618,1.19544,-0.00859269,-7.70024,1.19801,-0.0085924,-7.69618,1.16043,-0.0112603,-7.69645,1.16043,-0.00992632});
			return Coordinate_6_661_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #662, 150 total numbers made up of 50 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 getNormal_6_662_vector()
		{
			MFVec3f Normal_6_662_vector = new MFVec3f(new double[] {-1.06251E-5,0.962914,0.26981,0.41937,0.321135,0.849118,0.303836,-0.321135,0.896971,-5.46379E-6,-0.990328,0.138746,-0.340899,0.454145,0.823128,-0.749864,0.245873,0.614207,-0.862588,0.475949,0.171507,0.0,0.0,0.0,0.0,1.0,4.25505E-13,-0.899665,0.0,-0.436582,-0.499268,0.244463,-0.831246,-0.0547695,0.561281,-0.825811,0.265086,0.561334,-0.783985,0.545273,0.561325,-0.622569,0.742106,0.561312,-0.366344,0.825813,0.561287,-0.0546862,0.784005,0.56131,0.265079,0.62273,0.561344,0.545069,-0.37078,-0.246977,0.895279,0.545118,-0.561344,0.622687,0.742153,-0.56131,0.366251,0.825818,-0.561287,0.0546069,0.783975,-0.561312,-0.265165,0.622763,-0.561325,-0.545051,0.366439,-0.561334,-0.742042,0.0544746,-0.561281,-0.825831,-0.265312,-0.561327,-0.783914,-0.488385,0.502938,-0.713115,-0.581264,-0.404263,-0.706189,-0.355248,0.275563,-0.893232,-0.786313,0.124205,-0.605215,-0.411059,0.358944,-0.837968,-0.78635,0.124209,-0.605165,-0.410937,0.358967,-0.838017,-0.786304,0.124214,-0.605225,-0.700802,-0.0839014,-0.708404,-0.831511,0.0,-0.555509,-0.870826,0.244765,0.426324,-0.622589,-0.561337,0.545237,-0.862588,-0.475949,0.171507,-0.951026,-0.108937,0.289279,-0.380931,0.820397,0.426427,-0.775924,0.0628838,0.627685,-0.381252,0.820316,0.426295,-0.775964,0.0628831,0.627634,-0.380995,0.82038,0.426403,-0.662329,-0.17127,0.729375,-0.245737,0.755946,0.606762,0.0,-1.0,0.0,0.0,0.0,0.0});
			return Normal_6_662_vector;
		}
		/** Large attribute array: IndexedFaceSet coordIndex field, scene-graph level=5, element #667, 368 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 getIndexedFaceSet_5_667_coordIndex()
		{
			MFInt32 IndexedFaceSet_5_667_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_667_coordIndex_1()));
			return IndexedFaceSet_5_667_coordIndex;
		}
		/** Large attribute array: IndexedFaceSet normalIndex field, scene-graph level=5, element #667, 368 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 getIndexedFaceSet_5_667_normalIndex()
		{
			MFInt32 IndexedFaceSet_5_667_normalIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_667_normalIndex_1()));
			return IndexedFaceSet_5_667_normalIndex;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=6, element #667, 144 total numbers made up of 48 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 getCoordinate_6_667_point()
		{
			MFVec3f Coordinate_6_667_point = new MFVec3f(new double[] {-7.8889,1.1343,0.0159262,-7.88522,1.1343,0.01607,-7.88522,1.11677,0.01607,-7.8889,1.11677,0.0159262,-7.89224,1.1343,0.0143858,-7.89474,1.1343,0.0116843,-7.89601,1.1343,0.00823307,-7.89587,1.1343,0.00455649,-7.89433,1.1343,0.00121542,-7.89163,1.1343,-0.00128213,-7.88818,1.1343,-0.00255583,-7.8845,1.1343,-0.00241199,-7.88116,1.1343,-8.71549E-4,-7.87866,1.1343,0.00182992,-7.87739,1.1343,0.00528115,-7.87753,1.1343,0.00895773,-7.87907,1.1343,0.0122988,-7.88177,1.1343,0.0147963,-7.89224,1.11677,0.0143858,-7.88177,1.11677,0.0147963,-7.87907,1.11677,0.0122988,-7.87753,1.11677,0.00895773,-7.87739,1.11677,0.00528115,-7.87866,1.11677,0.00182992,-7.88116,1.11677,-8.71549E-4,-7.8845,1.11677,-0.00241199,-7.88818,1.11677,-0.00255583,-7.89163,1.11677,-0.00128213,-7.89433,1.11677,0.00121542,-7.89587,1.11677,0.00455649,-7.89601,1.11677,0.00823307,-7.89474,1.11677,0.0116843,-7.88936,1.09623,0.0276831,-7.88569,1.09623,0.0278282,-7.88177,1.09925,0.0147963,-7.87907,1.09925,0.0122988,-7.86577,1.09623,0.0094193,-7.86563,1.09623,0.00574271,-7.87866,1.09925,0.00182992,-7.88116,1.09925,-8.71549E-4,-7.88404,1.09623,-0.0141689,-7.88771,1.09623,-0.014314,-7.89163,1.09925,-0.00128213,-7.89433,1.09925,0.00121542,-7.90763,1.09623,0.00409492,-7.90777,1.09623,0.00777151,-7.89474,1.09925,0.0116843,-7.89224,1.09925,0.0143858});
			return Coordinate_6_667_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #668, 144 total numbers made up of 48 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 getNormal_6_668_vector()
		{
			MFVec3f Normal_6_668_vector = new MFVec3f(new double[] {-0.0629735,0.962909,0.262373,0.209831,0.321154,0.923489,0.088554,0.255812,0.962662,-0.226564,0.253571,0.94041,-0.523657,0.454178,0.720768,-0.675455,0.561311,0.478217,-0.807035,0.561311,0.183371,-0.815765,0.56132,-0.139456,-0.70026,0.561309,-0.441099,-0.478217,0.561311,-0.675455,-0.183371,0.561311,-0.807035,0.139456,0.56132,-0.815765,0.441099,0.561309,-0.70026,0.675455,0.561311,-0.478217,0.807035,0.561311,-0.183371,0.815765,0.56132,0.139456,0.70026,0.561309,0.441099,0.478217,0.561311,0.675455,-0.677166,0.0618238,0.733228,0.594176,0.0838492,0.799953,0.768376,0.0,0.639998,0.897296,0.122102,0.424205,0.962662,0.255812,-0.088554,0.799953,0.0838492,-0.594176,0.639998,0.0,-0.768376,0.424205,0.122102,-0.897296,-0.088554,0.255812,-0.962662,-0.594176,0.0838492,-0.799953,-0.768376,0.0,-0.639998,-0.897296,0.122102,-0.424205,-0.962662,0.255812,0.088554,-0.799953,0.0838492,0.594176,-0.688871,-0.259249,0.676939,0.576161,-0.542305,0.61151,0.763653,-0.522712,0.378955,0.416176,-0.728628,0.543965,0.766516,-0.397805,0.504187,0.817882,-0.0046617,-0.575367,0.328758,-0.740688,-0.585918,0.660426,-0.615788,-0.4297,0.708186,-0.403119,-0.579627,-0.576161,-0.542305,-0.61151,-0.763653,-0.522712,-0.378955,-0.416176,-0.728628,-0.543965,-0.766516,-0.397805,-0.504187,-0.817882,-0.0046617,0.575367,-0.328758,-0.740688,0.585918,-0.636376,-0.735808,0.231541});
			return Normal_6_668_vector;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=6, element #673, 135 total numbers made up of 45 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 getCoordinate_6_673_point()
		{
			MFVec3f Coordinate_6_673_point = new MFVec3f(new double[] {-7.85201,1.20221,0.0277538,-7.85268,1.20208,0.0277514,-7.85268,1.2021,0.0260256,-7.85201,1.20224,0.0260271,-7.85134,1.2021,0.0260255,-7.85133,1.20208,0.0277513,-7.85325,1.2017,0.0277475,-7.85325,1.20172,0.0260205,-7.85364,1.20113,0.0277396,-7.85364,1.20115,0.0260141,-7.85377,1.20045,0.0277317,-7.85377,1.20047,0.0260062,-7.85364,1.19978,0.0277238,-7.85364,1.1998,0.0259971,-7.85325,1.19921,0.0277159,-7.85479,1.1846,0.0275366,-7.85565,1.18517,0.0275431,-7.85565,1.1852,0.0258176,-7.85268,1.19883,0.0277119,-7.85352,1.18422,0.0275314,-7.85201,1.19869,0.0277094,-7.85201,1.18409,0.0275297,-7.85133,1.19883,0.0277118,-7.8505,1.18422,0.0275312,-7.85076,1.19921,0.0277157,-7.84922,1.1846,0.0275362,-7.85038,1.19978,0.0277236,-7.84837,1.18517,0.0275426,-7.85025,1.20045,0.0277315,-7.85025,1.20047,0.026006,-7.85038,1.1998,0.0259969,-7.84837,1.1852,0.0258171,-7.85038,1.20113,0.0277394,-7.85038,1.20115,0.0260139,-7.85076,1.2017,0.0277473,-7.85076,1.20172,0.0260203,-7.85831,1.17323,0.0223798,-7.86024,1.1738,0.0223863,-7.86024,1.17382,0.0206608,-7.85542,1.17285,0.0223744,-7.85201,1.17271,0.0223727,-7.8486,1.17285,0.022374,-7.84571,1.17323,0.0223789,-7.84378,1.1738,0.0223852,-7.84378,1.17382,0.0206597});
			return Coordinate_6_673_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #674, 135 total numbers made up of 45 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 getNormal_6_674_vector()
		{
			MFVec3f Normal_6_674_vector = new MFVec3f(new double[] {2.17023E-4,0.999922,0.0125023,-0.443411,0.896246,0.0113546,-0.304172,0.900892,-0.309632,-2.242E-5,0.225112,-0.974333,0.371161,0.89816,-0.235687,0.383136,0.923616,0.0118499,-0.752594,0.658435,0.00805174,-0.545404,0.629375,-0.553553,-0.94732,0.320265,0.00395942,-0.742273,0.3725,-0.557023,-0.997823,-0.0659436,-7.77854E-4,-0.825941,0.0616642,-0.560373,-0.828438,0.0150436,0.559879,-0.593326,-0.0406819,-0.803934,4.32553E-4,-0.0123675,0.999923,-0.065857,-0.200174,0.977544,-0.744758,0.0353553,0.666397,-0.799842,0.294419,-0.523039,-2.65027E-6,-0.0123166,0.999924,-0.0283266,-0.213706,0.976487,1.08512E-4,-0.0123434,0.999924,0.00288562,-0.216334,0.976315,-2.96099E-5,-0.0123227,0.999924,0.0335007,-0.209647,0.977203,9.98048E-5,-0.0123316,0.999924,0.0741862,-0.192365,0.978515,0.968873,-0.0325389,0.245412,0.71678,0.123361,0.6863,0.997768,0.0667725,7.42059E-4,0.82576,-0.0480441,-0.561972,0.54925,-0.00615361,-0.835636,0.578974,0.297787,-0.759021,0.896574,0.442861,0.00531902,0.783696,0.27233,-0.558263,0.659093,0.752004,0.00928879,0.62295,0.551601,-0.55468,-0.127716,-0.373697,0.918716,-0.745525,-0.00113962,0.666477,-0.611985,0.518074,-0.597556,-0.0602798,-0.401796,0.913743,-0.011916,-0.412208,0.911012,0.0345268,-0.408651,0.912037,0.0908465,-0.389909,0.916361,0.555893,-0.150861,0.81745,0.784301,0.489513,-0.381115});
			return Normal_6_674_vector;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=6, element #679, 123 total numbers made up of 41 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 getCoordinate_6_679_point()
		{
			MFVec3f Coordinate_6_679_point = new MFVec3f(new double[] {-7.90422,1.08827,-0.00888581,-7.90505,1.08827,-0.00905083,-7.90505,1.09527,-0.00905083,-7.90422,1.09527,-0.00888581,-7.9034,1.08827,-0.00905094,-7.9027,1.08827,-0.00951885,-7.90223,1.08827,-0.0102187,-7.90206,1.08827,-0.0110441,-7.90223,1.08827,-0.0118694,-7.9027,1.08827,-0.0125692,-7.9034,1.08827,-0.0130367,-7.90422,1.08827,-0.0132005,-7.90505,1.08827,-0.0130366,-7.90575,1.08827,-0.012569,-7.90621,1.08827,-0.0118691,-7.90638,1.08827,-0.0110438,-7.90621,1.08827,-0.0102184,-7.90575,1.08827,-0.00951863,-7.9034,1.09527,-0.00905094,-7.90575,1.09527,-0.00951863,-7.90621,1.09527,-0.0102184,-7.90638,1.09527,-0.0110438,-7.90621,1.09527,-0.0118691,-7.90575,1.09527,-0.012569,-7.90505,1.09527,-0.0130366,-7.90422,1.09527,-0.0132005,-7.9034,1.09527,-0.0130367,-7.9027,1.09177,-0.0125692,-7.9027,1.09527,-0.0125692,-7.90223,1.09527,-0.0118694,-7.90206,1.09527,-0.0110441,-7.90223,1.09527,-0.0102187,-7.9027,1.09527,-0.00951885,-7.90669,1.09183,-0.0135122,-7.90669,1.08976,-0.0135122,-7.90161,1.08976,-0.0135126,-7.90161,1.09183,-0.0135126,-7.90669,1.09183,-0.00851506,-7.90669,1.08976,-0.00851506,-7.90161,1.09183,-0.00851542,-7.90161,1.08976,-0.00851542});
			return Coordinate_6_679_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #680, 123 total numbers made up of 41 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 getNormal_6_680_vector()
		{
			MFVec3f Normal_6_680_vector = new MFVec3f(new double[] {2.83853E-5,-0.962922,0.26978,-0.419977,-0.321142,0.848815,-0.304394,0.321142,0.896779,1.45966E-5,0.99033,0.138729,0.341535,-0.454153,0.82286,0.545369,-0.561305,0.622502,0.742052,-0.561324,0.366435,0.825818,-0.561288,0.0545911,0.783929,-0.561324,-0.265276,0.622607,-0.561316,-0.545238,0.420994,-0.452418,-0.786182,0.0546102,-0.561285,-0.825819,-0.265289,-0.561333,-0.783918,-0.545269,-0.561299,-0.622596,-0.741831,-0.561286,-0.36694,-0.825727,-0.561384,-0.0549905,-0.783674,-0.561286,0.266109,-0.622601,-0.561288,0.545274,0.371473,0.246982,0.89499,-0.545312,0.561288,0.622567,-0.74178,0.561286,0.367044,-0.825719,0.561384,0.0551058,-0.783711,0.561286,-0.265999,-0.622618,0.561299,-0.545244,-0.366618,0.561333,-0.741954,-0.0546675,0.561285,-0.825815,0.265167,0.561324,-0.783966,0.555475,0.0,-0.831533,0.545151,0.561316,-0.622683,0.742001,0.561324,-0.366538,0.825811,0.561288,-0.0547064,0.783966,0.561324,0.265167,0.622742,0.561305,0.545095,-0.577391,0.57735,-0.57731,-0.408277,-0.816497,-0.40822,0.408191,-0.408248,-0.816525,0.816468,0.408248,-0.408305,-0.57731,0.57735,0.577391,-0.66662,-0.333333,0.666713,0.33338,0.666667,0.666643,0.66669,-0.666667,0.333287});
			return Normal_6_680_vector;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=6, element #685, 120 total numbers made up of 40 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 getCoordinate_6_685_point()
		{
			MFVec3f Coordinate_6_685_point = new MFVec3f(new double[] {-7.86985,1.10243,0.0259064,-7.86903,1.10243,0.0257425,-7.86903,1.09543,0.0257425,-7.86985,1.09543,0.0259064,-7.87068,1.10243,0.0257426,-7.87138,1.10243,0.0252751,-7.87185,1.10243,0.0245741,-7.87201,1.10243,0.0237485,-7.87185,1.10243,0.0229231,-7.87138,1.10243,0.0222236,-7.87068,1.10243,0.0217557,-7.86985,1.10243,0.0215917,-7.86903,1.10243,0.0217555,-7.86833,1.10243,0.0222233,-7.86786,1.10243,0.0229228,-7.8677,1.10243,0.0237482,-7.86786,1.10243,0.0245738,-7.86833,1.10243,0.0252749,-7.87068,1.09543,0.0257426,-7.86833,1.09543,0.0252749,-7.86786,1.09543,0.0245738,-7.8677,1.09543,0.0237482,-7.86786,1.09543,0.0229228,-7.86833,1.09543,0.0222233,-7.86903,1.09543,0.0217555,-7.86985,1.09543,0.0215917,-7.87068,1.09543,0.0217557,-7.87138,1.09543,0.0222236,-7.87185,1.09543,0.0229231,-7.87201,1.09543,0.0237485,-7.87185,1.09543,0.0245741,-7.87138,1.09543,0.0252751,-7.86738,1.09887,0.0212797,-7.86738,1.10094,0.0212797,-7.87247,1.10094,0.02128,-7.87247,1.09887,0.02128,-7.86738,1.09887,0.0262771,-7.86738,1.10094,0.0262771,-7.87247,1.09887,0.0262775,-7.87247,1.10094,0.0262775});
			return Coordinate_6_685_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #686, 120 total numbers made up of 40 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 getNormal_6_686_vector()
		{
			MFVec3f Normal_6_686_vector = new MFVec3f(new double[] {9.35056E-6,0.962902,0.26985,0.418957,0.321145,0.849318,0.303281,-0.321145,0.897155,4.80843E-6,-0.990325,0.138768,-0.340787,0.4542,0.823144,-0.545333,0.561326,0.622515,-0.742142,0.561309,0.366275,-0.825815,0.561285,0.0546675,-0.783911,0.561341,-0.265292,-0.622607,0.561282,-0.545274,-0.366783,0.561341,-0.741867,-0.0547255,0.561285,-0.825811,0.265004,0.561309,-0.784031,0.545123,0.561367,-0.622663,0.742128,0.561242,-0.366407,0.825719,0.561381,-0.0551251,0.783972,0.561211,0.265387,0.623226,0.561411,0.544433,-0.370666,-0.247012,0.895316,0.545268,-0.561411,0.622495,0.742453,-0.561211,0.365796,0.825731,-0.561381,0.0549513,0.783815,-0.561242,-0.265784,0.622859,-0.561367,-0.544898,0.366171,-0.561309,-0.742193,0.0545522,-0.561285,-0.825823,-0.265401,-0.561341,-0.783874,-0.545361,-0.561282,-0.62253,-0.741918,-0.561341,-0.366679,-0.825819,-0.561285,-0.0546102,-0.783994,-0.561309,0.265114,-0.622822,-0.561326,0.544983,0.57731,-0.57735,-0.577391,0.40822,0.816497,-0.408277,-0.408305,0.408248,-0.816468,-0.816525,-0.408248,-0.408191,0.577391,-0.57735,0.57731,0.666713,0.333333,0.66662,-0.333287,-0.666667,0.66669,-0.666643,0.666667,0.33338});
			return Normal_6_686_vector;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=6, element #691, 120 total numbers made up of 40 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 getCoordinate_6_691_point()
		{
			MFVec3f Coordinate_6_691_point = new MFVec3f(new double[] {-7.90419,1.10243,0.0259088,-7.90336,1.10243,0.0257449,-7.90336,1.09543,0.0257449,-7.90419,1.09543,0.0259088,-7.90502,1.10243,0.025745,-7.90572,1.10243,0.0252775,-7.90618,1.10243,0.0245765,-7.90635,1.10243,0.0237509,-7.90618,1.10243,0.0229255,-7.90572,1.10243,0.022226,-7.90502,1.10243,0.0217581,-7.90419,1.10243,0.0215941,-7.90336,1.10243,0.0217579,-7.90267,1.10243,0.0222257,-7.9022,1.10243,0.0229252,-7.90203,1.10243,0.0237506,-7.9022,1.10243,0.0245762,-7.90267,1.10243,0.0252773,-7.90502,1.09543,0.025745,-7.90267,1.09543,0.0252773,-7.9022,1.09543,0.0245762,-7.90203,1.09543,0.0237506,-7.9022,1.09543,0.0229252,-7.90267,1.09543,0.0222257,-7.90336,1.09543,0.0217579,-7.90419,1.09543,0.0215941,-7.90502,1.09543,0.0217581,-7.90572,1.09543,0.022226,-7.90618,1.09543,0.0229255,-7.90635,1.09543,0.0237509,-7.90618,1.09543,0.0245765,-7.90572,1.09543,0.0252775,-7.90172,1.09887,0.0212821,-7.90172,1.10094,0.0212821,-7.90681,1.10094,0.0212824,-7.90681,1.09887,0.0212824,-7.90172,1.09887,0.0262795,-7.90172,1.10094,0.0262795,-7.90681,1.09887,0.0262799,-7.90681,1.10094,0.0262799});
			return Coordinate_6_691_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #692, 120 total numbers made up of 40 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 getNormal_6_692_vector()
		{
			MFVec3f Normal_6_692_vector = new MFVec3f(new double[] {6.62165E-5,0.9629,0.269857,0.419546,0.321168,0.849018,0.303616,-0.321168,0.897033,3.40512E-5,-0.990324,0.138772,-0.340559,0.454206,0.823236,-0.545303,0.561343,0.622526,-0.742222,0.561299,0.366128,-0.825815,0.561285,0.0546675,-0.783944,0.56133,-0.265217,-0.622672,0.561299,-0.545182,-0.366596,0.561346,-0.741956,-0.0545119,0.561276,-0.825832,0.265292,0.561341,-0.783911,0.545274,0.561282,-0.622607,0.741867,0.561341,-0.366783,0.825811,0.561285,-0.0547255,0.784031,0.561309,0.265004,0.622898,0.561326,0.544896,-0.370419,-0.247016,0.895418,0.54542,-0.561326,0.622439,0.742193,-0.561309,0.366171,0.825823,-0.561285,0.0545522,0.783874,-0.561341,-0.265401,0.62253,-0.561282,-0.545361,0.366679,-0.561341,-0.741918,0.0546866,-0.561276,-0.82582,-0.265163,-0.561346,-0.783951,-0.545331,-0.561299,-0.622542,-0.741999,-0.56133,-0.366533,-0.825819,-0.561285,-0.0546102,-0.784027,-0.561299,0.265039,-0.622887,-0.561343,0.54489,0.57731,-0.57735,-0.577391,0.40822,0.816497,-0.408277,-0.408305,0.408248,-0.816468,-0.816525,-0.408248,-0.408191,0.577391,-0.57735,0.57731,0.666713,0.333333,0.66662,-0.333287,-0.666667,0.66669,-0.666643,0.666667,0.33338});
			return Normal_6_692_vector;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=6, element #697, 120 total numbers made up of 40 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 getCoordinate_6_697_point()
		{
			MFVec3f Coordinate_6_697_point = new MFVec3f(new double[] {-7.86988,1.08827,0.0259064,-7.87071,1.08827,0.0257426,-7.87071,1.09527,0.0257426,-7.86988,1.09527,0.0259064,-7.86906,1.08827,0.0257425,-7.86836,1.08827,0.0252749,-7.86789,1.08827,0.0245738,-7.86773,1.08827,0.0237482,-7.86789,1.08827,0.0229228,-7.86836,1.08827,0.0222233,-7.86906,1.08827,0.0217555,-7.86988,1.08827,0.0215917,-7.87071,1.08827,0.0217557,-7.87141,1.08827,0.0222236,-7.87188,1.08827,0.0229231,-7.87204,1.08827,0.0237485,-7.87188,1.08827,0.0245741,-7.87141,1.08827,0.0252751,-7.86906,1.09527,0.0257425,-7.87141,1.09527,0.0252751,-7.87188,1.09527,0.0245741,-7.87204,1.09527,0.0237485,-7.87188,1.09527,0.0229231,-7.87141,1.09527,0.0222236,-7.87071,1.09527,0.0217557,-7.86988,1.09527,0.0215917,-7.86906,1.09527,0.0217555,-7.86836,1.09527,0.0222233,-7.86789,1.09527,0.0229228,-7.86773,1.09527,0.0237482,-7.86789,1.09527,0.0245738,-7.86836,1.09527,0.0252749,-7.87235,1.09183,0.02128,-7.87235,1.08976,0.02128,-7.86727,1.08976,0.0212797,-7.86727,1.09183,0.0212797,-7.87235,1.09183,0.0262775,-7.87235,1.08976,0.0262775,-7.86727,1.09183,0.0262771,-7.86727,1.08976,0.0262771});
			return Coordinate_6_697_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #698, 120 total numbers made up of 40 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 getNormal_6_698_vector()
		{
			MFVec3f Normal_6_698_vector = new MFVec3f(new double[] {2.83277E-5,-0.962902,0.26985,-0.419407,-0.32117,0.849086,-0.303448,0.32117,0.897089,1.45672E-5,0.990325,0.138768,0.340496,-0.454165,0.823284,0.545042,-0.56137,0.62273,0.742273,-0.561299,0.366025,0.825823,-0.561285,0.0545522,0.783907,-0.56133,-0.265326,0.622439,-0.561326,-0.54542,0.366189,-0.561307,-0.742186,0.0546102,-0.561285,-0.825819,-0.265364,-0.561343,-0.783885,-0.545361,-0.561282,-0.62253,-0.741918,-0.561341,-0.366679,-0.825819,-0.561285,-0.0546102,-0.783994,-0.561309,0.265114,-0.622822,-0.561326,0.544983,0.370345,0.246989,0.895456,-0.545333,0.561326,0.622515,-0.742142,0.561309,0.366275,-0.825815,0.561285,0.0546675,-0.783911,0.561341,-0.265292,-0.622607,0.561282,-0.545274,-0.366765,0.561343,-0.741874,-0.0546675,0.561285,-0.825815,0.265042,0.561307,-0.78402,0.544896,0.561326,-0.622898,0.741947,0.56133,-0.366636,0.825811,0.561285,-0.0547255,0.784064,0.561299,0.264929,0.622807,0.56137,0.544955,-0.577391,0.57735,-0.57731,-0.408277,-0.816497,-0.40822,0.408191,-0.408248,-0.816525,0.816468,0.408248,-0.408305,-0.57731,0.57735,0.577391,-0.66662,-0.333333,0.666713,0.33338,0.666667,0.666643,0.66669,-0.666667,0.333287});
			return Normal_6_698_vector;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=6, element #703, 120 total numbers made up of 40 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 getCoordinate_6_703_point()
		{
			MFVec3f Coordinate_6_703_point = new MFVec3f(new double[] {-7.90422,1.08827,0.0259088,-7.90504,1.08827,0.025745,-7.90504,1.09527,0.025745,-7.90422,1.09527,0.0259088,-7.90339,1.08827,0.0257449,-7.90269,1.08827,0.0252773,-7.90223,1.08827,0.0245762,-7.90206,1.08827,0.0237506,-7.90223,1.08827,0.0229252,-7.90269,1.08827,0.0222257,-7.90339,1.08827,0.0217579,-7.90422,1.08827,0.0215941,-7.90504,1.08827,0.0217581,-7.90574,1.08827,0.022226,-7.90621,1.08827,0.0229255,-7.90638,1.08827,0.0237509,-7.90621,1.08827,0.0245765,-7.90574,1.08827,0.0252775,-7.90339,1.09527,0.0257449,-7.90574,1.09527,0.0252775,-7.90621,1.09527,0.0245765,-7.90638,1.09527,0.0237509,-7.90621,1.09527,0.0229255,-7.90574,1.09527,0.022226,-7.90504,1.09527,0.0217581,-7.90422,1.09527,0.0215941,-7.90339,1.09527,0.0217579,-7.90269,1.09527,0.0222257,-7.90223,1.09527,0.0229252,-7.90206,1.09527,0.0237506,-7.90223,1.09527,0.0245762,-7.90269,1.09527,0.0252773,-7.90669,1.09183,0.0212824,-7.90669,1.08976,0.0212824,-7.90161,1.08976,0.0212821,-7.90161,1.09183,0.0212821,-7.90669,1.09183,0.0262799,-7.90669,1.08976,0.0262799,-7.90161,1.09183,0.0262795,-7.90161,1.08976,0.0262795});
			return Coordinate_6_703_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #704, 120 total numbers made up of 40 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 getNormal_6_704_vector()
		{
			MFVec3f Normal_6_704_vector = new MFVec3f(new double[] {2.83277E-5,-0.962902,0.26985,-0.419407,-0.32117,0.849086,-0.303448,0.32117,0.897089,1.45672E-5,0.990325,0.138768,0.34082,-0.454193,0.823134,0.54539,-0.561343,0.62245,0.742273,-0.561299,0.366025,0.825823,-0.561285,0.0545522,0.783907,-0.56133,-0.265326,0.622596,-0.561299,-0.545269,0.366581,-0.561334,-0.741972,0.0546102,-0.561285,-0.825819,-0.265364,-0.561343,-0.783885,-0.545361,-0.561282,-0.62253,-0.741777,-0.561293,-0.367038,-0.825727,-0.561381,-0.0550098,-0.783772,-0.561261,0.265871,-0.622822,-0.561326,0.544983,0.370702,0.247007,0.895303,-0.545333,0.561326,0.622515,-0.742001,0.561261,0.366634,-0.825723,0.561381,0.0550666,-0.783689,0.561293,-0.266049,-0.622607,0.561282,-0.545274,-0.366765,0.561343,-0.741874,-0.0546675,0.561285,-0.825815,0.265242,0.561334,-0.783933,0.545244,0.561299,-0.622618,0.741947,0.56133,-0.366636,0.825811,0.561285,-0.0547255,0.784064,0.561299,0.264929,0.622963,0.561343,0.544804,-0.577391,0.57735,-0.57731,-0.408277,-0.816497,-0.40822,0.408191,-0.408248,-0.816525,0.816468,0.408248,-0.408305,-0.57731,0.57735,0.577391,-0.66662,-0.333333,0.666713,0.33338,0.666667,0.666643,0.66669,-0.666667,0.333287});
			return Normal_6_704_vector;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=6, element #715, 120 total numbers made up of 40 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 getCoordinate_6_715_point()
		{
			MFVec3f Coordinate_6_715_point = new MFVec3f(new double[] {-7.86986,1.10243,-0.00888821,-7.86903,1.10243,-0.00905334,-7.86903,1.09543,-0.00905334,-7.86986,1.09543,-0.00888821,-7.87068,1.10243,-0.00905322,-7.87138,1.10243,-0.00952103,-7.87185,1.10243,-0.0102208,-7.87201,1.10243,-0.0110462,-7.87185,1.10243,-0.0118715,-7.87138,1.10243,-0.0125714,-7.87068,1.10243,-0.013039,-7.86986,1.10243,-0.0132029,-7.86903,1.10243,-0.0130391,-7.86833,1.10243,-0.0125716,-7.86786,1.10243,-0.0118718,-7.8677,1.10243,-0.0110465,-7.86786,1.10243,-0.0102211,-7.86833,1.10243,-0.00952124,-7.87068,1.09543,-0.00905322,-7.86833,1.09543,-0.00952124,-7.86786,1.09543,-0.0102211,-7.8677,1.09543,-0.0110465,-7.86786,1.09543,-0.0118718,-7.86833,1.09543,-0.0125716,-7.86903,1.09543,-0.0130391,-7.86986,1.09543,-0.0132029,-7.87068,1.09543,-0.013039,-7.87138,1.09543,-0.0125714,-7.87185,1.09543,-0.0118715,-7.87201,1.09543,-0.0110462,-7.87185,1.09543,-0.0102208,-7.87138,1.09543,-0.00952103,-7.86738,1.09887,-0.013515,-7.86738,1.10094,-0.013515,-7.87247,1.10094,-0.0135146,-7.87247,1.09887,-0.0135146,-7.86738,1.09887,-0.00851781,-7.86738,1.10094,-0.00851781,-7.87247,1.09887,-0.00851745,-7.87247,1.10094,-0.00851745});
			return Coordinate_6_715_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #716, 120 total numbers made up of 40 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 getNormal_6_716_vector()
		{
			MFVec3f Normal_6_716_vector = new MFVec3f(new double[] {9.2831E-6,0.962922,0.26978,0.419527,0.321116,0.849047,0.304227,-0.321116,0.896845,4.77367E-6,-0.99033,0.138729,-0.341501,0.45416,0.82287,-0.545312,0.561288,0.622567,-0.741921,0.561334,0.366685,-0.825811,0.561288,0.0547064,-0.783933,0.561334,-0.265242,-0.622618,0.561299,-0.545244,-0.366636,0.56133,-0.741947,-0.0547255,0.561285,-0.825811,0.264929,0.561299,-0.784064,0.54503,0.561384,-0.622728,0.742181,0.561235,-0.366309,0.825719,0.561384,-0.0551058,0.783874,0.561235,0.265624,0.623005,0.561373,0.544724,-0.371438,-0.246986,0.895004,0.545248,-0.561373,0.622547,0.742232,-0.561235,0.366205,0.825727,-0.561384,0.0549905,0.783837,-0.561235,-0.265734,0.62287,-0.561384,-0.544868,0.366025,-0.561299,-0.742273,0.0545522,-0.561285,-0.825823,-0.265326,-0.56133,-0.783907,-0.545269,-0.561299,-0.622596,-0.741972,-0.561334,-0.366581,-0.825818,-0.561288,-0.0545911,-0.783896,-0.561334,0.265351,-0.622601,-0.561288,0.545274,0.57731,-0.57735,-0.577391,0.40822,0.816497,-0.408277,-0.408305,0.408248,-0.816468,-0.816525,-0.408248,-0.408191,0.577391,-0.57735,0.57731,0.666713,0.333333,0.66662,-0.333287,-0.666667,0.66669,-0.666643,0.666667,0.33338});
			return Normal_6_716_vector;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=6, element #721, 120 total numbers made up of 40 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 getCoordinate_6_721_point()
		{
			MFVec3f Coordinate_6_721_point = new MFVec3f(new double[] {-7.90419,1.10243,-0.00888581,-7.90337,1.10243,-0.00905094,-7.90337,1.09543,-0.00905094,-7.90419,1.09543,-0.00888581,-7.90502,1.10243,-0.00905083,-7.90572,1.10243,-0.00951863,-7.90619,1.10243,-0.0102184,-7.90635,1.10243,-0.0110438,-7.90619,1.10243,-0.0118691,-7.90572,1.10243,-0.012569,-7.90502,1.10243,-0.0130366,-7.90419,1.10243,-0.0132005,-7.90337,1.10243,-0.0130367,-7.90267,1.10243,-0.0125692,-7.9022,1.10243,-0.0118694,-7.90204,1.10243,-0.0110441,-7.9022,1.10243,-0.0102187,-7.90267,1.10243,-0.00951885,-7.90502,1.09543,-0.00905083,-7.90267,1.09543,-0.00951885,-7.9022,1.09543,-0.0102187,-7.90204,1.09543,-0.0110441,-7.9022,1.09543,-0.0118694,-7.90267,1.09543,-0.0125692,-7.90337,1.09543,-0.0130367,-7.90419,1.09543,-0.0132005,-7.90502,1.09543,-0.0130366,-7.90572,1.09543,-0.012569,-7.90619,1.09543,-0.0118691,-7.90635,1.09543,-0.0110438,-7.90619,1.09543,-0.0102184,-7.90572,1.09543,-0.00951863,-7.90172,1.09887,-0.0135126,-7.90172,1.10094,-0.0135126,-7.90681,1.10094,-0.0135122,-7.90681,1.09887,-0.0135122,-7.90172,1.09887,-0.00851541,-7.90172,1.10094,-0.00851541,-7.90681,1.09887,-0.00851505,-7.90681,1.10094,-0.00851505});
			return Coordinate_6_721_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #722, 120 total numbers made up of 40 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 getNormal_6_722_vector()
		{
			MFVec3f Normal_6_722_vector = new MFVec3f(new double[] {6.65238E-5,0.96292,0.269787,0.420115,0.32114,0.848747,0.304562,-0.32114,0.896723,3.42087E-5,-0.99033,0.138733,-0.341272,0.454166,0.822962,-0.545282,0.561305,0.622579,-0.742001,0.561324,0.366538,-0.825811,0.561288,0.0547064,-0.783966,0.561324,-0.265167,-0.622683,0.561316,-0.545151,-0.366449,0.561336,-0.742036,-0.0545119,0.561276,-0.825832,0.265217,0.56133,-0.783944,0.545182,0.561299,-0.622672,0.741921,0.561334,-0.366685,0.825811,0.561288,-0.0547064,0.783933,0.561334,0.265242,0.622677,0.561288,0.545187,-0.371189,-0.24699,0.895106,0.545399,-0.561288,0.622491,0.741972,-0.561334,0.366581,0.825818,-0.561288,0.0545911,0.783896,-0.561334,-0.265351,0.622542,-0.561299,-0.545331,0.366533,-0.56133,-0.741999,0.0546866,-0.561276,-0.82582,-0.265089,-0.561336,-0.783984,-0.545238,-0.561316,-0.622607,-0.742052,-0.561324,-0.366435,-0.825818,-0.561288,-0.0545911,-0.783929,-0.561324,0.265276,-0.622666,-0.561305,0.545182,0.57731,-0.57735,-0.577391,0.40822,0.816497,-0.408277,-0.408305,0.408248,-0.816468,-0.816525,-0.408248,-0.408191,0.577391,-0.57735,0.57731,0.666713,0.333333,0.66662,-0.333287,-0.666667,0.66669,-0.666643,0.666667,0.33338});
			return Normal_6_722_vector;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=6, element #727, 120 total numbers made up of 40 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 getCoordinate_6_727_point()
		{
			MFVec3f Coordinate_6_727_point = new MFVec3f(new double[] {-7.86989,1.08827,-0.00888821,-7.87071,1.08827,-0.00905322,-7.87071,1.09527,-0.00905322,-7.86989,1.09527,-0.00888821,-7.86906,1.08827,-0.00905334,-7.86836,1.08827,-0.00952124,-7.86789,1.08827,-0.0102211,-7.86773,1.08827,-0.0110465,-7.86789,1.08827,-0.0118718,-7.86836,1.08827,-0.0125716,-7.86906,1.08827,-0.0130391,-7.86989,1.08827,-0.0132029,-7.87071,1.08827,-0.013039,-7.87141,1.08827,-0.0125714,-7.87188,1.08827,-0.0118715,-7.87204,1.08827,-0.0110462,-7.87188,1.08827,-0.0102208,-7.87141,1.08827,-0.00952103,-7.86906,1.09527,-0.00905334,-7.87141,1.09527,-0.00952103,-7.87188,1.09527,-0.0102208,-7.87204,1.09527,-0.0110462,-7.87188,1.09527,-0.0118715,-7.87141,1.09527,-0.0125714,-7.87071,1.09527,-0.013039,-7.86989,1.09527,-0.0132029,-7.86906,1.09527,-0.0130391,-7.86836,1.09527,-0.0125716,-7.86789,1.09527,-0.0118718,-7.86773,1.09527,-0.0110465,-7.86789,1.09527,-0.0102211,-7.86836,1.09527,-0.00952124,-7.87236,1.09183,-0.0135146,-7.87236,1.08976,-0.0135146,-7.86727,1.08976,-0.013515,-7.86727,1.09183,-0.013515,-7.87236,1.09183,-0.00851746,-7.87236,1.08976,-0.00851746,-7.86727,1.09183,-0.00851781,-7.86727,1.08976,-0.00851781});
			return Coordinate_6_727_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #728, 120 total numbers made up of 40 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 getNormal_6_728_vector()
		{
			MFVec3f Normal_6_728_vector = new MFVec3f(new double[] {2.83853E-5,-0.962922,0.26978,-0.419977,-0.321142,0.848815,-0.304394,0.321142,0.896779,1.45966E-5,0.99033,0.138729,0.341211,-0.454125,0.82301,0.545021,-0.561333,0.622783,0.742052,-0.561324,0.366435,0.825818,-0.561288,0.0545911,0.783929,-0.561324,-0.265276,0.62245,-0.561343,-0.54539,0.366043,-0.561297,-0.742266,0.0546102,-0.561285,-0.825819,-0.265289,-0.561333,-0.783918,-0.545269,-0.561299,-0.622596,-0.741972,-0.561334,-0.366581,-0.825818,-0.561288,-0.0545911,-0.783896,-0.561334,0.265351,-0.622601,-0.561288,0.545274,0.371116,0.246963,0.895144,-0.545312,0.561288,0.622567,-0.741921,0.561334,0.366685,-0.825811,0.561288,0.0547064,-0.783933,0.561334,-0.265242,-0.622618,0.561299,-0.545244,-0.366618,0.561333,-0.741954,-0.0546675,0.561285,-0.825815,0.264967,0.561297,-0.784053,0.544804,0.561343,-0.622963,0.742001,0.561324,-0.366538,0.825811,0.561288,-0.0547064,0.783966,0.561324,0.265167,0.622585,0.561333,0.545246,-0.577391,0.57735,-0.57731,-0.408277,-0.816497,-0.40822,0.408191,-0.408248,-0.816525,0.816468,0.408248,-0.408305,-0.57731,0.57735,0.577391,-0.66662,-0.333333,0.666713,0.33338,0.666667,0.666643,0.66669,-0.666667,0.333287});
			return Normal_6_728_vector;
		}
		/** Large attribute array: IndexedFaceSet coordIndex field, scene-graph level=5, element #794, 952 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 getIndexedFaceSet_5_794_coordIndex()
		{
			MFInt32 IndexedFaceSet_5_794_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_794_coordIndex_1()));
			return IndexedFaceSet_5_794_coordIndex;
		}
		/** Large attribute array: IndexedFaceSet normalIndex field, scene-graph level=5, element #794, 952 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 getIndexedFaceSet_5_794_normalIndex()
		{
			MFInt32 IndexedFaceSet_5_794_normalIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_794_normalIndex_1()));
			return IndexedFaceSet_5_794_normalIndex;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=6, element #794, 384 total numbers made up of 128 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 getCoordinate_6_794_point()
		{
			MFVec3f Coordinate_6_794_point = new MFVec3f()/*2.finalize*/
				.append(new MFVec3f(getCoordinate_6_794_point_1()))
				.append(new MFVec3f(getCoordinate_6_794_point_2()));
			return Coordinate_6_794_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #795, 384 total numbers made up of 128 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 getNormal_6_795_vector()
		{
			MFVec3f Normal_6_795_vector = new MFVec3f()/*2.finalize*/
				.append(new MFVec3f(getNormal_6_795_vector_1()))
				.append(new MFVec3f(getNormal_6_795_vector_2()));
			return Normal_6_795_vector;
		}
		/** Large attribute array: IndexedFaceSet coordIndex field, scene-graph level=5, element #800, 824 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 getIndexedFaceSet_5_800_coordIndex()
		{
			MFInt32 IndexedFaceSet_5_800_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_800_coordIndex_1()));
			return IndexedFaceSet_5_800_coordIndex;
		}
		/** Large attribute array: IndexedFaceSet normalIndex field, scene-graph level=5, element #800, 824 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 getIndexedFaceSet_5_800_normalIndex()
		{
			MFInt32 IndexedFaceSet_5_800_normalIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_800_normalIndex_1()));
			return IndexedFaceSet_5_800_normalIndex;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=6, element #800, 336 total numbers made up of 112 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 getCoordinate_6_800_point()
		{
			MFVec3f Coordinate_6_800_point = new MFVec3f()/*2.finalize*/
				.append(new MFVec3f(getCoordinate_6_800_point_1()))
				.append(new MFVec3f(getCoordinate_6_800_point_2()));
			return Coordinate_6_800_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #801, 336 total numbers made up of 112 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 getNormal_6_801_vector()
		{
			MFVec3f Normal_6_801_vector = new MFVec3f()/*2.finalize*/
				.append(new MFVec3f(getNormal_6_801_vector_1()))
				.append(new MFVec3f(getNormal_6_801_vector_2()));
			return Normal_6_801_vector;
		}
		/** Large attribute array: IndexedFaceSet coordIndex field, scene-graph level=5, element #806, 644 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 getIndexedFaceSet_5_806_coordIndex()
		{
			MFInt32 IndexedFaceSet_5_806_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_806_coordIndex_1()));
			return IndexedFaceSet_5_806_coordIndex;
		}
		/** Large attribute array: IndexedFaceSet normalIndex field, scene-graph level=5, element #806, 644 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 getIndexedFaceSet_5_806_normalIndex()
		{
			MFInt32 IndexedFaceSet_5_806_normalIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_806_normalIndex_1()));
			return IndexedFaceSet_5_806_normalIndex;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=6, element #806, 318 total numbers made up of 106 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 getCoordinate_6_806_point()
		{
			MFVec3f Coordinate_6_806_point = new MFVec3f()/*2.finalize*/
				.append(new MFVec3f(getCoordinate_6_806_point_1()))
				.append(new MFVec3f(getCoordinate_6_806_point_2()));
			return Coordinate_6_806_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #807, 318 total numbers made up of 106 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 getNormal_6_807_vector()
		{
			MFVec3f Normal_6_807_vector = new MFVec3f()/*2.finalize*/
				.append(new MFVec3f(getNormal_6_807_vector_1()))
				.append(new MFVec3f(getNormal_6_807_vector_2()));
			return Normal_6_807_vector;
		}
		/** Large attribute array: IndexedFaceSet coordIndex field, scene-graph level=5, element #812, 648 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 getIndexedFaceSet_5_812_coordIndex()
		{
			MFInt32 IndexedFaceSet_5_812_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_812_coordIndex_1()));
			return IndexedFaceSet_5_812_coordIndex;
		}
		/** Large attribute array: IndexedFaceSet normalIndex field, scene-graph level=5, element #812, 648 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 getIndexedFaceSet_5_812_normalIndex()
		{
			MFInt32 IndexedFaceSet_5_812_normalIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_812_normalIndex_1()));
			return IndexedFaceSet_5_812_normalIndex;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=6, element #812, 267 total numbers made up of 89 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 getCoordinate_6_812_point()
		{
			MFVec3f Coordinate_6_812_point = new MFVec3f(new double[] {-7.888,1.13287,-1.39333,-7.888,1.15519,-1.39333,-7.888,1.15474,-1.40395,-7.888,1.14815,-1.41456,-7.888,1.14676,-1.43579,-7.888,1.14597,-1.45701,-7.888,1.14597,-1.46605,-7.888,1.13287,-1.46605,-7.84496,1.13287,-1.39333,-7.84496,1.15519,-1.39333,-7.88574,1.13287,-1.46605,-7.87078,1.13287,-1.46605,-7.86217,1.13287,-1.46605,-7.84691,1.13287,-1.46605,-7.84496,1.13287,-1.46605,-7.84496,1.15519,-1.35639,-7.84496,1.15519,-1.31944,-7.84496,1.15519,-1.28249,-7.888,1.15519,-1.28249,-7.888,1.15519,-1.31944,-7.888,1.15519,-1.35639,-7.888,1.16043,-1.39356,-7.888,1.15999,-1.40417,-7.97481,1.15519,-1.35639,-7.97481,1.15519,-1.39333,-7.97481,1.16043,-1.39356,-7.84496,1.14597,-1.46605,-7.84496,1.14597,-1.45701,-7.84496,1.14676,-1.43579,-7.84496,1.14815,-1.41456,-7.84496,1.15474,-1.40395,-7.84496,1.15999,-1.40417,-7.84496,1.16043,-1.39356,-7.84496,1.16043,-1.26341,-7.84496,1.15519,-1.24554,-7.888,1.14787,-1.47691,-7.888,1.13097,-1.47691,-7.88574,1.13097,-1.47691,-7.84691,1.14597,-1.46605,-7.86217,1.14597,-1.46605,-7.87078,1.14597,-1.46605,-7.88574,1.14597,-1.46605,-7.88574,1.14787,-1.47691,-7.84496,1.13097,-1.47691,-7.84496,1.14787,-1.47691,-7.84691,1.14787,-1.47691,-7.84691,1.13097,-1.47691,-7.888,1.16043,-1.35632,-7.888,1.16043,-1.3415,-7.888,1.16043,-1.31547,-7.888,1.16043,-1.28944,-7.888,1.16043,-1.26341,-7.88223,1.16071,-1.26341,-7.88223,1.16071,-1.39356,-7.85072,1.16071,-1.39356,-7.85072,1.16071,-1.26341,-7.97082,1.16035,-1.39184,-7.89199,1.16035,-1.39184,-7.89199,1.16035,-1.35803,-7.84129,1.15519,-1.20859,-7.84129,1.16043,-1.20881,-7.85931,1.16043,-1.20881,-7.87365,1.16043,-1.20881,-7.89166,1.16043,-1.20881,-7.89166,1.15519,-1.20859,-7.888,1.15519,-1.24554,-7.888,1.19528,-1.26341,-7.84496,1.19528,-1.26341,-7.84974,1.19528,-1.24521,-7.85452,1.19528,-1.22701,-7.85931,1.19528,-1.20881,-7.87365,1.19528,-1.20881,-7.87844,1.19528,-1.22701,-7.88322,1.19528,-1.24521,-7.97481,1.16043,-1.35632,-7.83642,1.19931,-1.20881,-7.89653,1.19931,-1.20881,-7.8429,1.19931,-1.22701,-7.888,1.19931,-1.26341,-7.84496,1.19931,-1.26341,-7.84974,1.19931,-1.24521,-7.88322,1.19931,-1.24521,-7.89006,1.19931,-1.22701,-7.97082,1.16035,-1.35803,-7.97082,1.19918,-1.39184,-7.89199,1.19918,-1.39184,-7.88338,1.19918,-1.39184,-7.88338,1.16035,-1.39184,-7.88338,1.16035,-1.35803});
			return Coordinate_6_812_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #813, 267 total numbers made up of 89 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 getNormal_6_813_vector()
		{
			MFVec3f Normal_6_813_vector = new MFVec3f(new double[] {-0.688247,-0.688247,0.229416,-0.437526,-0.887342,-0.145583,-0.750817,0.191524,-0.632133,-0.458145,0.846373,-0.271582,-0.554734,0.831123,-0.0387978,-0.707168,0.706922,-0.0131979,-0.601441,0.795925,0.0690788,-0.708284,-0.701226,0.0813378,0.96225,-0.19245,0.19245,0.937043,-0.156174,0.312348,0.380955,-0.568585,-0.729099,0.0,-1.0,-2.39329E-15,0.0,-1.0,-3.12479E-15,-0.542412,-0.809564,-0.224489,0.448557,-0.890408,0.0772668,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,-0.707107,-0.707107,0.0,-1.0,2.86284E-13,0.0,-0.66471,-0.341172,0.664652,-0.149389,0.950987,-0.270751,-0.81652,0.390701,-0.425026,-0.66471,-0.669119,0.332326,-0.569408,-0.593401,-0.568902,-0.586689,0.56783,-0.577378,0.800959,0.594731,0.0689959,0.447276,0.89424,-0.0166951,0.554734,0.830726,-0.0465366,0.839699,0.517084,-0.16592,0.603979,0.500369,-0.620355,0.577384,0.552551,-0.601095,0.500209,0.715586,-0.487574,0.968196,0.206706,-0.140956,0.642043,-0.766045,-0.0309004,-0.841002,0.414213,-0.348056,-0.433923,-0.427437,-0.7931,0.433923,-0.854874,-0.284431,-0.433928,0.427439,-0.793097,0.0,0.0,-1.0,0.0,0.0,-1.0,0.613666,0.60449,-0.507942,0.613666,0.60449,-0.507942,0.894427,-0.440529,0.0770355,0.707107,0.696534,0.121823,-0.707107,0.696534,0.121823,-0.447214,-0.881057,0.154071,-0.189113,0.971116,0.145499,-0.0474351,0.998874,0.0,-0.0474351,0.998874,0.0,-0.0474351,0.998874,0.0,-0.980593,0.195982,-0.00537089,-0.0474351,0.998874,0.0,-0.0335417,0.706311,-0.707107,0.0335417,0.706311,-0.707107,0.0474351,0.998874,0.0,0.00903475,0.809722,-0.586744,-0.0223047,0.998403,0.0519079,-0.0445871,0.997655,-0.0519188,0.403668,-0.447913,0.797764,0.581487,0.605582,0.543271,0.271521,0.304267,0.913071,-0.21523,0.241187,0.946311,-0.696962,0.303644,0.64965,-0.602605,-0.582695,0.545284,-0.574391,-0.817966,-0.0317266,-0.791868,0.0,-0.610692,0.791868,0.0,-0.610692,0.967164,-1.22107E-5,0.254155,0.869859,-0.460144,0.177801,0.443053,-0.350365,0.825196,-0.607645,-0.480524,0.632348,-0.790839,-0.575658,0.207826,-0.968848,-0.219064,0.115518,-0.259667,0.80765,0.529409,0.124033,0.729247,0.672915,-0.0888777,0.0087347,0.996004,0.688603,-0.720506,-0.0818328,-0.433247,0.447951,-0.782072,0.412713,0.853441,-0.318286,0.831056,0.53117,0.16494,-0.690845,0.722021,0.0376729,-0.835238,0.5378,-0.114668,0.00743527,0.999372,-0.0346421,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,-0.894427,-0.447214,0.0,-1.0,0.0});
			return Normal_6_813_vector;
		}
		/** Large attribute array: IndexedFaceSet coordIndex field, scene-graph level=5, element #818, 532 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 getIndexedFaceSet_5_818_coordIndex()
		{
			MFInt32 IndexedFaceSet_5_818_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_818_coordIndex_1()));
			return IndexedFaceSet_5_818_coordIndex;
		}
		/** Large attribute array: IndexedFaceSet normalIndex field, scene-graph level=5, element #818, 532 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 getIndexedFaceSet_5_818_normalIndex()
		{
			MFInt32 IndexedFaceSet_5_818_normalIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_818_normalIndex_1()));
			return IndexedFaceSet_5_818_normalIndex;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=6, element #818, 222 total numbers made up of 74 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 getCoordinate_6_818_point()
		{
			MFVec3f Coordinate_6_818_point = new MFVec3f(new double[] {-7.88737,1.09168,-1.38282,-7.84559,1.09168,-1.38282,-7.84559,1.09489,-1.38282,-7.85081,1.09489,-1.38282,-7.85604,1.09489,-1.38282,-7.86126,1.09489,-1.38282,-7.86648,1.09489,-1.38282,-7.8717,1.09489,-1.38282,-7.87692,1.09489,-1.38282,-7.88215,1.09489,-1.38282,-7.88737,1.09489,-1.38282,-7.89259,1.09168,-1.38804,-7.89259,1.09168,-1.39326,-7.89259,1.09168,-1.39848,-7.89259,1.09168,-1.40371,-7.89259,1.09168,-1.40893,-7.89259,1.09168,-1.41415,-7.89259,1.09168,-1.41937,-7.89259,1.09168,-1.42459,-7.89259,1.09168,-1.42982,-7.88737,1.09168,-1.43504,-7.88215,1.09168,-1.43504,-7.87692,1.09168,-1.43504,-7.8717,1.09168,-1.43504,-7.86648,1.09168,-1.43504,-7.86126,1.09168,-1.43504,-7.85604,1.09168,-1.43504,-7.85081,1.09168,-1.43504,-7.84559,1.09168,-1.43504,-7.84037,1.09168,-1.42982,-7.84037,1.09168,-1.42459,-7.84037,1.09168,-1.41937,-7.84037,1.09168,-1.41415,-7.84037,1.09168,-1.40893,-7.84037,1.09168,-1.40371,-7.84037,1.09168,-1.39848,-7.84037,1.09168,-1.39326,-7.84037,1.09168,-1.38804,-7.89259,1.09489,-1.38804,-7.84037,1.09489,-1.38804,-7.89259,1.09489,-1.39326,-7.89259,1.09489,-1.39848,-7.89259,1.09489,-1.40371,-7.89259,1.09489,-1.40893,-7.89259,1.09489,-1.41415,-7.89259,1.09489,-1.41937,-7.89259,1.09489,-1.42459,-7.89259,1.09489,-1.42982,-7.88737,1.09489,-1.43504,-7.84037,1.09489,-1.39326,-7.84037,1.09489,-1.39848,-7.84037,1.09489,-1.40371,-7.84037,1.09489,-1.40893,-7.84037,1.09489,-1.41415,-7.84037,1.09489,-1.41937,-7.84037,1.09489,-1.42459,-7.84037,1.09489,-1.42982,-7.84559,1.09489,-1.43504,-7.85081,1.09489,-1.43504,-7.85604,1.09489,-1.43504,-7.86126,1.09489,-1.43504,-7.86648,1.09489,-1.43504,-7.8717,1.09489,-1.43504,-7.87692,1.09489,-1.43504,-7.88215,1.09489,-1.43504,-7.88737,1.09168,-1.38282,-7.88215,1.09168,-1.38282,-7.87692,1.09168,-1.38282,-7.8717,1.09168,-1.38282,-7.86648,1.09168,-1.38282,-7.86126,1.09168,-1.38282,-7.85604,1.09168,-1.38282,-7.85081,1.09168,-1.38282,-7.84559,1.09168,-1.38282});
			return Coordinate_6_818_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #819, 222 total numbers made up of 74 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 getNormal_6_819_vector()
		{
			MFVec3f Normal_6_819_vector = new MFVec3f(new double[] {-0.0488108,-0.93189,0.359441,0.475963,-0.336557,0.81252,0.237982,0.336557,0.911095,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,-0.026128,0.997666,0.0630786,-0.992134,-0.102207,0.0722713,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,-0.70196,-0.581522,-0.411198,-0.0711648,-0.201284,-0.976944,0.0,-1.0,0.0,0.0,-1.0,6.36229E-15,0.0,-1.0,6.36229E-15,0.0,-1.0,0.0,0.0,-1.0,1.27246E-14,0.0,-1.0,1.27246E-14,0.0,-1.0,0.0,0.411198,-0.581522,-0.70196,0.787122,-0.581522,-0.205599,0.707107,-0.707107,0.0,0.707107,-0.707107,0.0,0.707107,-0.707107,0.0,0.707107,-0.707107,0.0,0.707107,-0.707107,0.0,0.707107,-0.707107,0.0,0.707107,-0.707107,0.0,0.626943,-0.73451,0.259688,-0.81252,0.336557,0.475963,0.973436,0.186944,0.132189,-0.707107,0.707107,0.0,-0.707107,0.707107,0.0,-0.707107,0.707107,0.0,-0.707107,0.707107,0.0,-0.707107,0.707107,0.0,-0.707107,0.707107,0.0,-0.707107,0.707107,0.0,-0.787122,0.581522,-0.205599,-0.411198,0.581522,-0.70196,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.70196,0.581522,-0.411198,0.205599,0.581522,-0.787122,0.0,0.707107,-0.707107,0.0,0.707107,-0.707107,0.0,0.707107,-0.707107,0.0,0.707107,-0.707107,0.0,0.707107,-0.707107,0.0,0.707107,-0.707107,0.0,0.707107,-0.707107,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0});
			return Normal_6_819_vector;
		}
		/** Large attribute array: IndexedFaceSet coordIndex field, scene-graph level=5, element #824, 532 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 getIndexedFaceSet_5_824_coordIndex()
		{
			MFInt32 IndexedFaceSet_5_824_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_824_coordIndex_1()));
			return IndexedFaceSet_5_824_coordIndex;
		}
		/** Large attribute array: IndexedFaceSet normalIndex field, scene-graph level=5, element #824, 532 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 getIndexedFaceSet_5_824_normalIndex()
		{
			MFInt32 IndexedFaceSet_5_824_normalIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_824_normalIndex_1()));
			return IndexedFaceSet_5_824_normalIndex;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=6, element #824, 222 total numbers made up of 74 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 getCoordinate_6_824_point()
		{
			MFVec3f Coordinate_6_824_point = new MFVec3f(new double[] {-7.88528,1.09395,-1.38543,-7.84768,1.09395,-1.38543,-7.84768,1.099,-1.38543,-7.85238,1.099,-1.38543,-7.85708,1.099,-1.38543,-7.86178,1.099,-1.38543,-7.86648,1.099,-1.38543,-7.87118,1.099,-1.38543,-7.87588,1.099,-1.38543,-7.88058,1.099,-1.38543,-7.88528,1.099,-1.38543,-7.88998,1.09395,-1.39013,-7.88998,1.09395,-1.39483,-7.88998,1.09395,-1.39953,-7.88998,1.09395,-1.40423,-7.88998,1.09395,-1.40893,-7.88998,1.09395,-1.41363,-7.88998,1.09395,-1.41833,-7.88998,1.09395,-1.42303,-7.88998,1.09395,-1.42773,-7.88528,1.09395,-1.43243,-7.88058,1.09395,-1.43243,-7.87588,1.09395,-1.43243,-7.87118,1.09395,-1.43243,-7.86648,1.09395,-1.43243,-7.86178,1.09395,-1.43243,-7.85708,1.09395,-1.43243,-7.85238,1.09395,-1.43243,-7.84768,1.09395,-1.43243,-7.84298,1.09395,-1.42773,-7.84298,1.09395,-1.42303,-7.84298,1.09395,-1.41833,-7.84298,1.09395,-1.41363,-7.84298,1.09395,-1.40893,-7.84298,1.09395,-1.40423,-7.84298,1.09395,-1.39953,-7.84298,1.09395,-1.39483,-7.84298,1.09395,-1.39013,-7.88998,1.099,-1.39013,-7.84298,1.099,-1.39013,-7.88998,1.099,-1.39483,-7.88998,1.099,-1.39953,-7.88998,1.099,-1.40423,-7.88998,1.099,-1.40893,-7.88998,1.099,-1.41363,-7.88998,1.099,-1.41833,-7.88998,1.099,-1.42303,-7.88998,1.099,-1.42773,-7.88528,1.099,-1.43243,-7.84298,1.099,-1.39483,-7.84298,1.099,-1.39953,-7.84298,1.099,-1.40423,-7.84298,1.099,-1.40893,-7.84298,1.099,-1.41363,-7.84298,1.099,-1.41833,-7.84298,1.099,-1.42303,-7.84298,1.099,-1.42773,-7.84768,1.099,-1.43243,-7.85238,1.099,-1.43243,-7.85708,1.099,-1.43243,-7.86178,1.099,-1.43243,-7.86648,1.099,-1.43243,-7.87118,1.099,-1.43243,-7.87588,1.099,-1.43243,-7.88058,1.099,-1.43243,-7.88528,1.09395,-1.38543,-7.88058,1.09395,-1.38543,-7.87588,1.09395,-1.38543,-7.87118,1.09395,-1.38543,-7.86648,1.09395,-1.38543,-7.86178,1.09395,-1.38543,-7.85708,1.09395,-1.38543,-7.85238,1.09395,-1.38543,-7.84768,1.09395,-1.38543});
			return Coordinate_6_824_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #825, 222 total numbers made up of 74 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 getNormal_6_825_vector()
		{
			MFVec3f Normal_6_825_vector = new MFVec3f(new double[] {-0.0488108,-0.93189,0.359441,0.475963,-0.336557,0.81252,0.237982,0.336557,0.911095,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,-0.026128,0.997666,0.0630786,-0.992134,-0.102207,0.0722713,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,-0.70196,-0.581522,-0.411198,-0.0711648,-0.201284,-0.976944,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,0.0,0.0,-1.0,1.5707E-14,0.0,-1.0,1.5707E-14,0.411198,-0.581522,-0.70196,0.787122,-0.581522,-0.205599,0.707107,-0.707107,0.0,0.707107,-0.707107,0.0,0.707107,-0.707107,0.0,0.707107,-0.707107,0.0,0.707107,-0.707107,0.0,0.707107,-0.707107,0.0,0.707107,-0.707107,0.0,0.626943,-0.73451,0.259688,-0.81252,0.336557,0.475963,0.973436,0.186944,0.132189,-0.707107,0.707107,0.0,-0.707107,0.707107,0.0,-0.707107,0.707107,0.0,-0.707107,0.707107,0.0,-0.707107,0.707107,0.0,-0.707107,0.707107,0.0,-0.707107,0.707107,0.0,-0.787122,0.581522,-0.205599,-0.411198,0.581522,-0.70196,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.70196,0.581522,-0.411198,0.205599,0.581522,-0.787122,0.0,0.707107,-0.707107,0.0,0.707107,-0.707107,0.0,0.707107,-0.707107,0.0,0.707107,-0.707107,0.0,0.707107,-0.707107,0.0,0.707107,-0.707107,0.0,0.707107,-0.707107,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0});
			return Normal_6_825_vector;
		}
		/** Large attribute array: IndexedFaceSet coordIndex field, scene-graph level=5, element #830, 496 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 getIndexedFaceSet_5_830_coordIndex()
		{
			MFInt32 IndexedFaceSet_5_830_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_830_coordIndex_1()));
			return IndexedFaceSet_5_830_coordIndex;
		}
		/** Large attribute array: IndexedFaceSet normalIndex field, scene-graph level=5, element #830, 496 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 getIndexedFaceSet_5_830_normalIndex()
		{
			MFInt32 IndexedFaceSet_5_830_normalIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_830_normalIndex_1()));
			return IndexedFaceSet_5_830_normalIndex;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=6, element #830, 192 total numbers made up of 64 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 getCoordinate_6_830_point()
		{
			MFVec3f Coordinate_6_830_point = new MFVec3f(new double[] {-7.86711,0.847865,-1.33275,-7.86441,0.848066,-1.33225,-7.86441,0.834923,-1.32701,-7.86711,0.834722,-1.32751,-7.86982,0.848066,-1.33225,-7.86982,1.02253,-1.40185,-7.86711,1.02233,-1.40235,-7.86982,0.834923,-1.32701,-7.86441,1.02253,-1.40185,-7.86211,0.848633,-1.33082,-7.86211,0.83549,-1.32558,-7.86211,1.0231,-1.40043,-7.86058,0.849485,-1.32869,-7.86058,0.836341,-1.32345,-7.86058,1.02395,-1.3983,-7.86004,0.850487,-1.32618,-7.86004,0.837344,-1.32093,-7.86004,1.02495,-1.39578,-7.86058,0.851491,-1.32366,-7.86058,0.838348,-1.31842,-7.86058,1.02595,-1.39327,-7.86211,0.852341,-1.32153,-7.86211,0.839198,-1.31629,-7.86211,1.0268,-1.39113,-7.86441,0.85291,-1.32011,-7.86441,0.839767,-1.31486,-7.86441,1.02737,-1.38971,-7.86711,0.853109,-1.31961,-7.86711,0.839966,-1.31436,-7.86711,1.02757,-1.38921,-7.86982,0.85291,-1.32011,-7.86982,0.839767,-1.31486,-7.86982,1.02737,-1.38971,-7.87212,0.852341,-1.32153,-7.87212,0.839198,-1.31629,-7.87212,1.0268,-1.39113,-7.87365,0.851491,-1.32366,-7.87365,0.838348,-1.31842,-7.87365,1.02595,-1.39327,-7.87419,0.850487,-1.32618,-7.87419,0.837344,-1.32093,-7.87419,1.02495,-1.39578,-7.87365,0.849485,-1.32869,-7.87365,0.836341,-1.32345,-7.87365,1.02395,-1.3983,-7.87212,0.848633,-1.33082,-7.87212,0.83549,-1.32558,-7.87212,1.0231,-1.40043,-7.86711,1.09454,-1.40311,-7.86441,1.09454,-1.40257,-7.86211,1.09454,-1.40104,-7.86982,1.09454,-1.40257,-7.87212,1.09454,-1.40104,-7.87365,1.09454,-1.39874,-7.87419,1.09453,-1.39604,-7.87365,1.09452,-1.39333,-7.87212,1.09452,-1.39103,-7.86982,1.09452,-1.3895,-7.86711,1.09451,-1.38896,-7.86441,1.09452,-1.3895,-7.86211,1.09452,-1.39103,-7.86058,1.09452,-1.39333,-7.86004,1.09453,-1.39604,-7.86058,1.09454,-1.39874});
			return Coordinate_6_830_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #831, 192 total numbers made up of 64 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 getNormal_6_831_vector()
		{
			MFVec3f Normal_6_831_vector = new MFVec3f(new double[] {5.36659E-5,-0.370574,-0.928803,0.442953,-0.332248,-0.832709,0.303734,-0.630627,-0.714181,7.48299E-6,-0.971269,0.237986,-0.382595,-0.342401,-0.858127,-0.408511,-0.20201,-0.890118,-0.0403113,-0.156711,-0.986821,-0.370785,-0.561144,-0.740024,0.355473,-0.158107,-0.921217,0.752277,-0.244141,-0.611943,0.545114,-0.752029,-0.370544,0.674934,-0.171462,-0.71768,0.947142,-0.118878,-0.297978,0.741912,-0.657256,-0.132592,0.896078,-0.0840693,-0.435864,0.997812,0.0244992,0.0614081,0.825774,-0.541663,0.157157,0.997879,-0.0124951,-0.063889,0.896476,0.164192,0.411548,0.783874,-0.422981,0.454564,0.946354,0.0598716,0.317538,0.658681,0.27882,0.698856,0.622549,-0.319271,0.714492,0.750722,0.122898,0.649086,0.320765,0.350981,0.879729,0.366583,-0.246385,0.897169,0.442292,0.167378,0.881115,-0.066136,0.369751,0.926774,0.0547957,-0.215341,0.975,0.0673751,0.186338,0.980173,-0.44291,0.332233,0.832738,-0.265382,-0.230857,0.936097,-0.318384,0.17661,0.931365,-0.75239,0.244096,0.611822,-0.545213,-0.290633,0.786305,-0.656961,0.139947,0.740822,-0.947213,0.118803,0.297782,-0.742037,-0.385534,0.548401,-0.896169,0.0823333,0.436007,-0.997807,-0.024525,-0.0614747,-0.825781,-0.501078,0.258856,-0.997884,0.0122825,0.0638439,-0.89659,-0.164104,-0.411334,-0.783895,-0.6197,-0.0384804,-0.946401,-0.0605637,-0.317264,-0.658868,-0.278769,-0.698699,-0.62263,-0.723322,-0.298559,-0.750988,-0.125746,-0.648232,0.058705,0.31242,-0.948128,0.0531565,0.990572,-0.126257,0.675173,0.241557,-0.696988,-0.26329,0.556566,-0.78798,-0.540425,0.558403,-0.629386,-0.738945,0.560313,-0.374179,-0.825557,0.561377,-0.0575447,-0.782343,0.561161,0.270255,-0.616271,0.560116,0.553607,-0.35809,0.55894,0.747902,-0.0508999,0.558532,0.82792,0.261741,0.559237,0.786604,0.537734,0.560612,0.629727,0.736924,0.561685,0.376103,0.82523,0.561615,0.0598692,0.783643,0.560252,-0.268367});
			return Normal_6_831_vector;
		}
		/** Large attribute array: IndexedFaceSet coordIndex field, scene-graph level=5, element #836, 464 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 getIndexedFaceSet_5_836_coordIndex()
		{
			MFInt32 IndexedFaceSet_5_836_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_836_coordIndex_1()));
			return IndexedFaceSet_5_836_coordIndex;
		}
		/** Large attribute array: IndexedFaceSet normalIndex field, scene-graph level=5, element #836, 464 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 getIndexedFaceSet_5_836_normalIndex()
		{
			MFInt32 IndexedFaceSet_5_836_normalIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_836_normalIndex_1()));
			return IndexedFaceSet_5_836_normalIndex;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=6, element #836, 192 total numbers made up of 64 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 getCoordinate_6_836_point()
		{
			MFVec3f Coordinate_6_836_point = new MFVec3f(new double[] {-7.79004,0.847865,-1.41944,-7.78954,0.848066,-1.42215,-7.7843,0.834923,-1.42215,-7.7848,0.834722,-1.41944,-7.78954,0.848066,-1.41673,-7.85915,1.02253,-1.41673,-7.85965,1.02233,-1.41944,-7.7843,0.834923,-1.41673,-7.85915,1.02253,-1.42215,-7.85772,1.0231,-1.42444,-7.78812,0.848633,-1.42444,-7.85559,1.02395,-1.42597,-7.78599,0.849485,-1.42597,-7.85308,1.02495,-1.42651,-7.78347,0.850487,-1.42651,-7.85056,1.02595,-1.42597,-7.78096,0.851491,-1.42597,-7.77882,0.852341,-1.42444,-7.77358,0.839198,-1.42444,-7.77571,0.838348,-1.42597,-7.84843,1.0268,-1.42444,-7.7774,0.85291,-1.42215,-7.77216,0.839767,-1.42215,-7.847,1.02737,-1.42215,-7.7769,0.853109,-1.41944,-7.77166,0.839966,-1.41944,-7.8465,1.02757,-1.41944,-7.7774,0.85291,-1.41673,-7.77216,0.839767,-1.41673,-7.847,1.02737,-1.41673,-7.77882,0.852341,-1.41443,-7.77358,0.839198,-1.41443,-7.84843,1.0268,-1.41443,-7.78096,0.851491,-1.4129,-7.77571,0.838348,-1.4129,-7.85056,1.02595,-1.4129,-7.78347,0.850487,-1.41236,-7.77823,0.837344,-1.41236,-7.85308,1.02495,-1.41236,-7.78599,0.849485,-1.4129,-7.78074,0.836341,-1.4129,-7.85559,1.02395,-1.4129,-7.78812,0.848633,-1.41443,-7.78287,0.83549,-1.41443,-7.85772,1.0231,-1.41443,-7.78287,0.83549,-1.42444,-7.78074,0.836341,-1.42597,-7.77823,0.837344,-1.42651,-7.8604,1.09454,-1.41944,-7.85987,1.09454,-1.42215,-7.85833,1.09454,-1.42444,-7.85987,1.09454,-1.41673,-7.85833,1.09454,-1.41443,-7.85604,1.09454,-1.4129,-7.85333,1.09453,-1.41236,-7.85062,1.09452,-1.4129,-7.84833,1.09452,-1.41443,-7.84679,1.09452,-1.41673,-7.84625,1.09451,-1.41944,-7.84679,1.09452,-1.42215,-7.84833,1.09452,-1.42444,-7.85062,1.09452,-1.42597,-7.85333,1.09453,-1.42651,-7.85604,1.09454,-1.42597});
			return Coordinate_6_836_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #837, 192 total numbers made up of 64 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 getNormal_6_837_vector()
		{
			MFVec3f Normal_6_837_vector = new MFVec3f(new double[] {-0.92881,-0.370555,3.22464E-5,-0.858115,-0.342354,-0.382665,-0.649184,-0.740287,-0.174747,0.237977,-0.971271,4.48764E-6,-0.858115,-0.342356,0.382663,-0.890094,-0.20201,0.408565,-0.986818,-0.156712,0.0403992,-0.74003,-0.561099,0.370841,-0.921208,-0.158108,-0.355498,-0.717723,-0.17148,-0.674884,-0.611836,-0.244097,-0.752379,-0.43564,-0.0840241,-0.896191,-0.297859,-0.118834,-0.947184,-0.0638921,-0.0124964,-0.997879,0.0614081,0.0244994,-0.997812,0.317426,0.0598503,-0.946392,0.454527,0.181339,-0.872079,0.698782,0.278791,-0.658771,0.714349,-0.319341,-0.622677,0.56221,-0.738687,-0.371834,0.648904,0.122863,-0.750885,0.879746,0.350988,-0.32071,0.897178,-0.246384,-0.366561,0.881126,0.16738,-0.442267,0.926769,0.369749,0.0662217,0.975005,-0.21534,-0.0547247,0.980178,0.186339,-0.0672897,0.832726,0.332229,0.442935,0.936083,-0.230859,0.265428,0.931347,0.176606,0.318439,0.611994,0.244164,0.752228,0.786367,-0.290595,0.545144,0.7409,0.139962,0.656869,0.297898,0.118852,0.94717,0.548638,-0.385466,0.741898,0.436222,0.0823747,0.89606,-0.0614687,-0.024522,0.997808,0.258884,-0.501075,0.825774,0.0638439,0.0122825,0.997884,-0.41153,-0.164179,0.896487,-0.0385937,-0.619734,0.783863,-0.317378,-0.0605868,0.946362,-0.698871,-0.278825,0.658663,-0.298701,-0.723364,0.622513,-0.648494,-0.125796,0.750753,0.370066,-0.929005,-2.07183E-4,0.370504,-0.928831,-7.33792E-6,0.370625,-0.928783,1.16511E-4,-0.948125,0.31242,-0.0587637,-0.126258,0.990572,-0.0531507,-0.696925,0.241567,-0.675234,-0.787937,0.55655,0.263453,-0.629525,0.558394,0.540273,-0.37436,0.560325,0.738844,-0.0575447,0.561377,0.825557,0.270346,0.561173,0.782303,0.553766,0.560104,0.616139,0.747894,0.558937,0.358112,0.827916,0.558532,0.0509693,0.786617,0.559239,-0.261697,0.629656,0.560625,-0.537804,0.375923,0.561672,-0.737025,0.0598692,0.561615,-0.82523,-0.268276,0.56024,-0.783683});
			return Normal_6_837_vector;
		}
		/** Large attribute array: IndexedFaceSet coordIndex field, scene-graph level=5, element #842, 456 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 getIndexedFaceSet_5_842_coordIndex()
		{
			MFInt32 IndexedFaceSet_5_842_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_842_coordIndex_1()));
			return IndexedFaceSet_5_842_coordIndex;
		}
		/** Large attribute array: IndexedFaceSet normalIndex field, scene-graph level=5, element #842, 456 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 getIndexedFaceSet_5_842_normalIndex()
		{
			MFInt32 IndexedFaceSet_5_842_normalIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_842_normalIndex_1()));
			return IndexedFaceSet_5_842_normalIndex;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=6, element #842, 192 total numbers made up of 64 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 getCoordinate_6_842_point()
		{
			MFVec3f Coordinate_6_842_point = new MFVec3f(new double[] {-7.94553,0.847865,-1.42237,-7.94603,0.848066,-1.42508,-7.87642,1.02253,-1.42508,-7.87593,1.02233,-1.42237,-7.87642,1.02253,-1.41966,-7.94603,0.848066,-1.41966,-7.94745,0.848633,-1.41737,-7.9527,0.83549,-1.41737,-7.95127,0.834923,-1.41966,-7.87785,1.0231,-1.41737,-7.94959,0.849485,-1.41583,-7.95483,0.836341,-1.41583,-7.87998,1.02395,-1.41583,-7.9521,0.850487,-1.41529,-7.95734,0.837344,-1.41529,-7.8825,1.02495,-1.41529,-7.95462,0.851491,-1.41583,-7.95986,0.838348,-1.41583,-7.88501,1.02595,-1.41583,-7.95675,0.852341,-1.41737,-7.96199,0.839198,-1.41737,-7.88714,1.0268,-1.41737,-7.95817,0.85291,-1.41966,-7.96342,0.839767,-1.41966,-7.88857,1.02737,-1.41966,-7.95867,0.853109,-1.42237,-7.96392,0.839966,-1.42237,-7.88907,1.02757,-1.42237,-7.95817,0.85291,-1.42508,-7.96342,0.839767,-1.42508,-7.88857,1.02737,-1.42508,-7.95675,0.852341,-1.42737,-7.96199,0.839198,-1.42737,-7.88714,1.0268,-1.42737,-7.95462,0.851491,-1.42891,-7.95986,0.838348,-1.42891,-7.88501,1.02595,-1.42891,-7.9521,0.850487,-1.42944,-7.95734,0.837344,-1.42944,-7.8825,1.02495,-1.42944,-7.87998,1.02395,-1.42891,-7.94959,0.849485,-1.42891,-7.87785,1.0231,-1.42737,-7.94745,0.848633,-1.42737,-7.95077,0.834722,-1.42237,-7.95483,0.836341,-1.42891,-7.9527,0.83549,-1.42737,-7.95127,0.834923,-1.42508,-7.87517,1.09454,-1.41944,-7.87571,1.09454,-1.41673,-7.87724,1.09454,-1.41443,-7.87571,1.09454,-1.42215,-7.87724,1.09454,-1.42444,-7.87954,1.09454,-1.42597,-7.88224,1.09453,-1.42651,-7.88495,1.09452,-1.42597,-7.88725,1.09452,-1.42444,-7.88878,1.09452,-1.42215,-7.88932,1.09451,-1.41944,-7.88878,1.09452,-1.41673,-7.88725,1.09452,-1.41443,-7.88495,1.09452,-1.4129,-7.88224,1.09453,-1.41236,-7.87954,1.09454,-1.4129});
			return Coordinate_6_842_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #843, 192 total numbers made up of 64 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 getNormal_6_843_vector()
		{
			MFVec3f Normal_6_843_vector = new MFVec3f(new double[] {0.928809,-0.370559,-3.22128E-5,0.858096,-0.342352,-0.38271,0.89175,-0.194688,-0.408509,0.987079,-0.155116,-0.0401624,0.919633,-0.166736,0.355632,0.80998,-0.323148,0.489396,0.611808,-0.244083,0.752406,0.370562,-0.752011,0.545126,0.284697,-0.874448,0.392797,0.714033,-0.18255,0.675893,0.297849,-0.118826,0.947189,0.132393,-0.65715,0.742042,0.43091,-0.102402,0.896566,-0.061411,0.024501,0.997812,-0.15715,-0.541663,0.825775,0.0585852,-0.0333652,0.997725,-0.411312,0.1641,0.896601,-0.454463,-0.423004,0.783921,-0.32199,0.0399633,0.945899,-0.698789,0.278793,0.658763,-0.714345,-0.319346,0.62268,-0.652162,0.10718,0.750465,-0.879738,0.350981,0.320739,-0.897193,-0.246374,0.366532,-0.882888,0.158211,0.44213,-0.92677,0.369742,-0.0662394,-0.975001,-0.215349,0.0547519,-0.980453,0.184934,0.0671583,-0.832713,0.332223,-0.442964,-0.936075,-0.230863,-0.265455,-0.929884,0.183248,-0.318962,-0.612007,0.244171,-0.752215,-0.786384,-0.290585,-0.545124,-0.737564,0.153865,-0.657514,-0.29789,0.118848,-0.947173,-0.548578,-0.385475,-0.741938,-0.431273,0.10148,-0.896496,4.23712E-5,-1.75558E-5,-1.0,-0.390149,-0.605671,-0.693503,-0.0585063,0.0333716,-0.997729,0.321917,-0.0410702,-0.945877,0.411523,-0.164181,-0.89649,0.651476,-0.11078,-0.750538,0.698803,-0.278795,-0.658748,-0.370429,-0.928861,-1.7815E-8,-0.370574,-0.928803,4.31877E-5,-0.369984,-0.929038,-2.66474E-4,-0.369561,-0.929206,-4.5469E-4,0.948822,0.310277,0.0588643,0.126498,0.990537,0.0532414,0.698738,0.215271,0.68222,0.783326,0.563897,-0.261575,0.622348,0.573477,-0.532735,0.370365,0.581122,-0.724656,0.0606936,0.584984,-0.808771,-0.260935,0.583918,-0.768734,-0.542959,0.578335,-0.608871,-0.740698,0.569673,-0.356146,-0.826855,0.560092,-0.0510638,-0.791629,0.551376,0.263265,-0.638682,0.544604,0.543591,-0.385267,0.540011,0.748303,-0.0654888,0.537655,0.840618,0.268902,0.537764,0.799063});
			return Normal_6_843_vector;
		}
		/** Large attribute array: IndexedFaceSet coordIndex field, scene-graph level=5, element #848, 384 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 getIndexedFaceSet_5_848_coordIndex()
		{
			MFInt32 IndexedFaceSet_5_848_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_848_coordIndex_1()));
			return IndexedFaceSet_5_848_coordIndex;
		}
		/** Large attribute array: IndexedFaceSet normalIndex field, scene-graph level=5, element #848, 384 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 getIndexedFaceSet_5_848_normalIndex()
		{
			MFInt32 IndexedFaceSet_5_848_normalIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_848_normalIndex_1()));
			return IndexedFaceSet_5_848_normalIndex;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=6, element #848, 150 total numbers made up of 50 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 getCoordinate_6_848_point()
		{
			MFVec3f Coordinate_6_848_point = new MFVec3f(new double[] {-7.84503,1.19855,-1.21519,-7.8453,1.19855,-1.21385,-7.8453,1.16043,-1.21385,-7.84503,1.16043,-1.21519,-7.8453,1.19855,-1.21652,-7.84605,1.19855,-1.21765,-7.84718,1.19855,-1.21841,-7.84852,1.19855,-1.21868,-7.84985,1.19855,-1.21841,-7.85098,1.19855,-1.21765,-7.85174,1.19855,-1.21652,-7.85201,1.19855,-1.21519,-7.85174,1.19855,-1.21385,-7.85098,1.19855,-1.21272,-7.84985,1.19855,-1.21197,-7.84852,1.19855,-1.2117,-7.84718,1.19855,-1.21197,-7.84605,1.19855,-1.21272,-7.8453,1.16043,-1.21652,-7.84605,1.16043,-1.21272,-7.84718,1.16043,-1.21197,-7.84852,1.16043,-1.2117,-7.84985,1.16043,-1.21197,-7.85098,1.16043,-1.21272,-7.85174,1.16043,-1.21385,-7.85201,1.16043,-1.21519,-7.85174,1.16043,-1.21652,-7.85098,1.19769,-1.21765,-7.85098,1.19801,-1.22171,-7.85098,1.19544,-1.21765,-7.85098,1.19576,-1.22171,-7.85098,1.18544,-1.21765,-7.85098,1.18576,-1.22171,-7.85098,1.17544,-1.21765,-7.85098,1.17576,-1.22171,-7.85098,1.16544,-1.21765,-7.85098,1.16043,-1.21765,-7.84718,1.19769,-1.21841,-7.84605,1.16043,-1.21765,-7.84718,1.16043,-1.21841,-7.84718,1.16544,-1.21841,-7.84718,1.17576,-1.22247,-7.84718,1.17544,-1.21841,-7.84718,1.18576,-1.22247,-7.84718,1.18544,-1.21841,-7.84718,1.19576,-1.22247,-7.84718,1.19544,-1.21841,-7.84718,1.19801,-1.22247,-7.84985,1.16043,-1.21841,-7.84852,1.16043,-1.21868});
			return Coordinate_6_848_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #849, 150 total numbers made up of 50 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 getNormal_6_849_vector()
		{
			MFVec3f Normal_6_849_vector = new MFVec3f(new double[] {0.26981,0.962914,-2.94613E-5,0.848986,0.321149,0.419627,0.896932,-0.321149,0.303936,0.138746,-0.990328,-1.51501E-5,0.823,0.454165,-0.341182,0.614338,0.245855,-0.749763,0.171656,0.475987,-0.862537,0.0,0.0,0.0,0.0,1.0,-6.12192E-13,-0.436593,0.0,-0.899659,-0.831148,0.244456,-0.499434,-0.825758,0.56134,-0.0549593,-0.783809,0.561311,0.265656,-0.622563,0.561302,0.545303,-0.366502,0.561333,0.742012,-0.0545681,0.561281,0.825824,0.265234,0.561329,0.783939,0.545223,0.561308,0.622628,0.895147,-0.24699,-0.371091,0.622628,-0.561308,0.545223,0.366535,-0.561329,0.741999,0.0546759,-0.561281,0.825817,-0.265164,-0.561333,0.78396,-0.545188,-0.561302,0.622664,-0.74188,-0.561311,0.366803,-0.82577,-0.56134,0.0547789,-0.783775,-0.561304,-0.265773,-0.713096,0.502938,-0.488413,-0.70623,-0.404263,-0.581215,-0.893224,0.275568,-0.355266,-0.605269,0.124205,-0.786271,-0.83796,0.358947,-0.411073,-0.60522,0.124209,-0.786308,-0.838009,0.358971,-0.410951,-0.60528,0.124214,-0.786262,-0.708394,-0.0839,-0.700813,-0.555489,0.0,-0.831524,0.42648,0.244773,-0.870748,0.545303,-0.561302,-0.622563,0.171656,-0.475987,-0.862537,0.289419,-0.108944,-0.950983,0.426401,0.820397,-0.380961,0.627805,0.0628825,-0.775826,0.426269,0.820316,-0.381282,0.627755,0.0628818,-0.775867,0.426376,0.82038,-0.381025,0.729492,-0.171259,-0.662202,0.606744,0.755946,-0.245779,0.0,-1.0,0.0,0.0,0.0,0.0});
			return Normal_6_849_vector;
		}
		/** Large attribute array: IndexedFaceSet coordIndex field, scene-graph level=5, element #854, 384 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 getIndexedFaceSet_5_854_coordIndex()
		{
			MFInt32 IndexedFaceSet_5_854_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_854_coordIndex_1()));
			return IndexedFaceSet_5_854_coordIndex;
		}
		/** Large attribute array: IndexedFaceSet normalIndex field, scene-graph level=5, element #854, 384 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 getIndexedFaceSet_5_854_normalIndex()
		{
			MFInt32 IndexedFaceSet_5_854_normalIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_854_normalIndex_1()));
			return IndexedFaceSet_5_854_normalIndex;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=6, element #854, 150 total numbers made up of 50 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 getCoordinate_6_854_point()
		{
			MFVec3f Coordinate_6_854_point = new MFVec3f(new double[] {-7.87966,1.19855,-1.21519,-7.87993,1.19855,-1.21385,-7.87993,1.16043,-1.21385,-7.87966,1.16043,-1.21519,-7.87993,1.19855,-1.21652,-7.88068,1.19855,-1.21765,-7.88182,1.19855,-1.21841,-7.88315,1.19855,-1.21868,-7.88448,1.19855,-1.21841,-7.88562,1.19855,-1.21765,-7.88637,1.19855,-1.21652,-7.88664,1.19855,-1.21519,-7.88637,1.19855,-1.21385,-7.88562,1.19855,-1.21272,-7.88448,1.19855,-1.21197,-7.88315,1.19855,-1.2117,-7.88182,1.19855,-1.21197,-7.88068,1.19855,-1.21272,-7.87993,1.16043,-1.21652,-7.88068,1.16043,-1.21272,-7.88182,1.16043,-1.21197,-7.88315,1.16043,-1.2117,-7.88448,1.16043,-1.21197,-7.88562,1.16043,-1.21272,-7.88637,1.16043,-1.21385,-7.88664,1.16043,-1.21519,-7.88637,1.16043,-1.21652,-7.88562,1.19769,-1.21765,-7.88562,1.19801,-1.22171,-7.88562,1.19544,-1.21765,-7.88562,1.19576,-1.22171,-7.88562,1.18544,-1.21765,-7.88562,1.18576,-1.22171,-7.88562,1.17544,-1.21765,-7.88562,1.17576,-1.22171,-7.88562,1.16544,-1.21765,-7.88562,1.16043,-1.21765,-7.88182,1.19769,-1.21841,-7.88068,1.16043,-1.21765,-7.88182,1.16043,-1.21841,-7.88182,1.16544,-1.21841,-7.88182,1.17576,-1.22247,-7.88182,1.17544,-1.21841,-7.88182,1.18576,-1.22247,-7.88182,1.18544,-1.21841,-7.88182,1.19576,-1.22247,-7.88182,1.19544,-1.21841,-7.88182,1.19801,-1.22247,-7.88448,1.16043,-1.21841,-7.88315,1.16043,-1.21868});
			return Coordinate_6_854_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #855, 150 total numbers made up of 50 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 getNormal_6_855_vector()
		{
			MFVec3f Normal_6_855_vector = new MFVec3f(new double[] {0.26981,0.962914,-2.94613E-5,0.849147,0.321135,0.419311,0.896992,-0.321135,0.303773,0.138746,-0.990328,-1.51501E-5,0.823104,0.454145,-0.340956,0.614155,0.245873,-0.749907,0.171446,0.475949,-0.8626,0.0,0.0,0.0,0.0,1.0,3.02094E-13,-0.436645,0.0,-0.899634,-0.83128,0.244463,-0.49921,-0.825815,0.561281,-0.0547118,-0.783967,0.561334,0.265141,-0.622531,0.561325,0.545317,-0.366292,0.561312,0.742132,-0.0546286,0.561287,0.825816,0.265134,0.56131,0.783987,0.545113,0.561344,0.622692,0.895253,-0.246977,-0.370843,0.622726,-0.561344,0.545075,0.366303,-0.56131,0.742127,0.0546645,-0.561287,0.825814,-0.26511,-0.561312,0.783993,-0.545007,-0.561325,0.622801,-0.742016,-0.561334,0.366491,-0.825827,-0.561281,0.0545322,-0.783933,-0.561327,-0.265257,-0.713149,0.502938,-0.488335,-0.70623,-0.404263,-0.581215,-0.893257,0.275563,-0.355185,-0.605269,0.124205,-0.786271,-0.837996,0.358944,-0.411001,-0.60522,0.124209,-0.786308,-0.838046,0.358967,-0.410879,-0.60528,0.124214,-0.786262,-0.708453,-0.0839014,-0.700753,-0.555567,0.0,-0.831472,0.426264,0.244765,-0.870856,0.545193,-0.561337,-0.622627,0.171446,-0.475949,-0.8626,0.289213,-0.108937,-0.951046,0.426401,0.820397,-0.380961,0.62763,0.0628838,-0.775968,0.426269,0.820316,-0.381282,0.62758,0.0628831,-0.776008,0.426376,0.82038,-0.381025,0.729328,-0.17127,-0.66238,0.606744,0.755946,-0.245779,0.0,-1.0,0.0,0.0,0.0,0.0});
			return Normal_6_855_vector;
		}
		/** Large attribute array: IndexedFaceSet coordIndex field, scene-graph level=5, element #860, 368 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 getIndexedFaceSet_5_860_coordIndex()
		{
			MFInt32 IndexedFaceSet_5_860_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_860_coordIndex_1()));
			return IndexedFaceSet_5_860_coordIndex;
		}
		/** Large attribute array: IndexedFaceSet normalIndex field, scene-graph level=5, element #860, 368 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 getIndexedFaceSet_5_860_normalIndex()
		{
			MFInt32 IndexedFaceSet_5_860_normalIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_860_normalIndex_1()));
			return IndexedFaceSet_5_860_normalIndex;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=6, element #860, 144 total numbers made up of 48 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 getCoordinate_6_860_point()
		{
			MFVec3f Coordinate_6_860_point = new MFVec3f(new double[] {-7.85731,1.1343,-1.41113,-7.85717,1.1343,-1.40745,-7.85717,1.11677,-1.40745,-7.85731,1.11677,-1.41113,-7.85885,1.1343,-1.41447,-7.86155,1.1343,-1.41697,-7.865,1.1343,-1.41824,-7.86868,1.1343,-1.4181,-7.87202,1.1343,-1.41656,-7.87452,1.1343,-1.41385,-7.87579,1.1343,-1.4104,-7.87565,1.1343,-1.40673,-7.87411,1.1343,-1.40339,-7.87141,1.1343,-1.40089,-7.86795,1.1343,-1.39961,-7.86428,1.1343,-1.39976,-7.86094,1.1343,-1.4013,-7.85844,1.1343,-1.404,-7.85885,1.11677,-1.41447,-7.85844,1.11677,-1.404,-7.86094,1.11677,-1.4013,-7.86428,1.11677,-1.39976,-7.86795,1.11677,-1.39961,-7.87141,1.11677,-1.40089,-7.87411,1.11677,-1.40339,-7.87565,1.11677,-1.40673,-7.87579,1.11677,-1.4104,-7.87452,1.11677,-1.41385,-7.87202,1.11677,-1.41656,-7.86868,1.11677,-1.4181,-7.865,1.11677,-1.41824,-7.86155,1.11677,-1.41697,-7.84555,1.09623,-1.41159,-7.84541,1.09623,-1.40792,-7.85844,1.09925,-1.404,-7.86094,1.09925,-1.4013,-7.86382,1.09623,-1.388,-7.86749,1.09623,-1.38786,-7.87141,1.09925,-1.40089,-7.87411,1.09925,-1.40339,-7.8874,1.09623,-1.40626,-7.88755,1.09623,-1.40994,-7.87452,1.09925,-1.41385,-7.87202,1.09925,-1.41656,-7.86914,1.09623,-1.42985,-7.86547,1.09623,-1.43,-7.86155,1.09925,-1.41697,-7.85885,1.09925,-1.41447});
			return Coordinate_6_860_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #861, 144 total numbers made up of 48 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 getNormal_6_861_vector()
		{
			MFVec3f Normal_6_861_vector = new MFVec3f(new double[] {0.262369,0.962909,-0.0629918,0.923503,0.321154,0.209767,0.962668,0.255812,0.0884868,0.940394,0.253571,-0.226629,0.720731,0.454178,-0.523707,0.47817,0.561311,-0.675488,0.183315,0.561311,-0.807047,-0.139513,0.56132,-0.815755,-0.441148,0.561309,-0.700229,-0.675488,0.561311,-0.47817,-0.807047,0.561311,-0.183315,-0.815755,0.56132,0.139513,-0.700229,0.561309,0.441148,-0.47817,0.561311,0.675488,-0.183315,0.561311,0.807047,0.139513,0.56132,0.815755,0.441148,0.561309,0.700229,0.675488,0.561311,0.47817,0.733181,0.0618238,-0.677218,0.799994,0.0838492,0.59412,0.640052,0.0,0.768332,0.424268,0.122102,0.897267,-0.0884868,0.255812,0.962668,-0.59412,0.0838492,0.799994,-0.768332,0.0,0.640052,-0.897267,0.122102,0.424268,-0.962668,0.255812,-0.0884868,-0.799994,0.0838492,-0.59412,-0.640052,0.0,-0.768332,-0.424268,0.122102,-0.897267,0.0884868,0.255812,-0.962668,0.59412,0.0838492,-0.799994,0.676891,-0.259249,-0.688918,0.61155,-0.542305,0.576118,0.379008,-0.522712,0.763626,0.543994,-0.728628,0.416138,0.50424,-0.397805,0.766481,-0.57531,-0.0046617,0.817922,-0.585895,-0.740688,0.328799,-0.429654,-0.615788,0.660456,-0.579578,-0.403119,0.708226,-0.61155,-0.542305,-0.576118,-0.379008,-0.522712,-0.763626,-0.543994,-0.728628,-0.416138,-0.50424,-0.397805,-0.766481,0.57531,-0.0046617,-0.817922,0.585895,-0.740688,-0.328799,0.231497,-0.735808,-0.636393});
			return Normal_6_861_vector;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=6, element #866, 135 total numbers made up of 45 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 getCoordinate_6_866_point()
		{
			MFVec3f Coordinate_6_866_point = new MFVec3f(new double[] {-7.84548,1.20221,-1.37424,-7.84548,1.20208,-1.37491,-7.84721,1.2021,-1.37491,-7.84721,1.20224,-1.37424,-7.84721,1.2021,-1.37356,-7.84548,1.20208,-1.37356,-7.84549,1.2017,-1.37548,-7.84721,1.20172,-1.37548,-7.84549,1.20113,-1.37587,-7.84722,1.20115,-1.37587,-7.8455,1.20045,-1.376,-7.84723,1.20047,-1.376,-7.84551,1.19978,-1.37587,-7.84724,1.1998,-1.37587,-7.84552,1.19921,-1.37548,-7.8457,1.1846,-1.37702,-7.84569,1.18517,-1.37788,-7.84742,1.1852,-1.37788,-7.84552,1.19883,-1.37491,-7.8457,1.18422,-1.37575,-7.84552,1.19869,-1.37424,-7.8457,1.18409,-1.37424,-7.84552,1.19883,-1.37356,-7.8457,1.18422,-1.37273,-7.84552,1.19921,-1.37299,-7.8457,1.1846,-1.37145,-7.84551,1.19978,-1.37261,-7.84569,1.18517,-1.3706,-7.8455,1.20045,-1.37248,-7.84723,1.20047,-1.37248,-7.84724,1.1998,-1.37261,-7.84742,1.1852,-1.3706,-7.84549,1.20113,-1.37261,-7.84722,1.20115,-1.37261,-7.84549,1.2017,-1.37299,-7.84721,1.20172,-1.37299,-7.85085,1.17323,-1.38054,-7.85085,1.1738,-1.38247,-7.85257,1.17382,-1.38247,-7.85086,1.17285,-1.37765,-7.85086,1.17271,-1.37424,-7.85086,1.17285,-1.37083,-7.85085,1.17323,-1.36794,-7.85085,1.1738,-1.36601,-7.85257,1.17382,-1.36601});
			return Coordinate_6_866_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #867, 135 total numbers made up of 45 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 getNormal_6_867_vector()
		{
			MFVec3f Normal_6_867_vector = new MFVec3f(new double[] {0.0125024,0.999922,2.16151E-4,0.0113236,0.896246,-0.443412,-0.309654,0.900892,-0.304151,-0.974333,0.225112,4.56012E-5,-0.235661,0.89816,0.371178,0.0118767,0.923616,0.383135,0.0079992,0.658435,-0.752595,-0.553591,0.629375,-0.545366,0.00389328,0.320265,-0.94732,-0.557075,0.3725,-0.742234,-8.47516E-4,-0.0659436,-0.997823,-0.560431,0.0616642,-0.825902,0.559821,0.0150436,-0.828477,-0.803975,-0.0406819,-0.59327,0.999923,-0.0123675,3.62745E-4,0.97754,-0.200174,-0.0659253,0.666345,0.0353553,-0.744805,-0.523095,0.294419,-0.799806,0.999924,-0.0123166,-7.24581E-5,0.976485,-0.213706,-0.0283948,0.999924,-0.0123434,3.87041E-5,0.976315,-0.216334,0.00281746,0.999924,-0.0123227,-9.94178E-5,0.977205,-0.209647,0.0334325,0.999924,-0.0123316,2.9997E-5,0.97852,-0.192365,0.0741179,0.24548,-0.0325389,0.968855,0.68635,0.123361,0.716732,8.11716E-4,0.0667725,0.997768,-0.561914,-0.0480441,0.825799,-0.835597,-0.00615361,0.549308,-0.75898,0.297787,0.579026,0.00538161,0.442861,0.896574,-0.558208,0.27233,0.783735,0.00933481,0.752004,0.659092,-0.554636,0.551601,0.622989,0.918707,-0.373697,-0.12778,0.666425,-0.00113962,-0.745571,-0.597599,0.518074,-0.611943,0.913739,-0.401796,-0.0603436,0.911011,-0.412208,-0.0119796,0.91204,-0.408651,0.0344631,0.916368,-0.389909,0.0907825,0.817489,-0.150861,0.555836,-0.381061,0.489513,0.784328});
			return Normal_6_867_vector;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=6, element #872, 123 total numbers made up of 41 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 getCoordinate_6_872_point()
		{
			MFVec3f Coordinate_6_872_point = new MFVec3f(new double[] {-7.88212,1.08827,-1.42645,-7.88229,1.08827,-1.42727,-7.88229,1.09527,-1.42727,-7.88212,1.09527,-1.42645,-7.88229,1.08827,-1.42562,-7.88276,1.08827,-1.42492,-7.88346,1.08827,-1.42446,-7.88428,1.08827,-1.42429,-7.88511,1.08827,-1.42446,-7.88581,1.08827,-1.42492,-7.88627,1.08827,-1.42562,-7.88644,1.08827,-1.42645,-7.88627,1.08827,-1.42727,-7.88581,1.08827,-1.42797,-7.88511,1.08827,-1.42844,-7.88428,1.08827,-1.42861,-7.88346,1.08827,-1.42844,-7.88276,1.08827,-1.42797,-7.88229,1.09527,-1.42562,-7.88276,1.09527,-1.42797,-7.88346,1.09527,-1.42844,-7.88428,1.09527,-1.42861,-7.88511,1.09527,-1.42844,-7.88581,1.09527,-1.42797,-7.88627,1.09527,-1.42727,-7.88644,1.09527,-1.42645,-7.88627,1.09527,-1.42562,-7.88581,1.09177,-1.42492,-7.88581,1.09527,-1.42492,-7.88511,1.09527,-1.42446,-7.88428,1.09527,-1.42429,-7.88346,1.09527,-1.42446,-7.88276,1.09527,-1.42492,-7.88675,1.09183,-1.42892,-7.88675,1.08976,-1.42892,-7.88675,1.08976,-1.42383,-7.88675,1.09183,-1.42383,-7.88175,1.09183,-1.42892,-7.88175,1.08976,-1.42892,-7.88175,1.09183,-1.42383,-7.88175,1.08976,-1.42383});
			return Coordinate_6_872_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #873, 123 total numbers made up of 41 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 getNormal_6_873_vector()
		{
			MFVec3f Normal_6_873_vector = new MFVec3f(new double[] {0.26978,-0.962922,9.55108E-6,0.848786,-0.321142,-0.420036,0.896758,0.321142,-0.304456,0.138729,0.99033,4.91147E-6,0.822884,-0.454153,0.341477,0.622541,-0.561305,0.545325,0.366486,-0.561324,0.742027,0.0546488,-0.561288,0.825815,-0.265222,-0.561324,0.783947,-0.545195,-0.561316,0.622645,-0.786153,-0.452418,0.421049,-0.825815,-0.561285,0.0546679,-0.783936,-0.561333,-0.265234,-0.622634,-0.561299,-0.545225,-0.366992,-0.561286,-0.741805,-0.0550482,-0.561384,-0.825723,0.266054,-0.561286,-0.783692,0.545231,-0.561288,-0.622639,0.895016,0.246982,0.371411,0.622529,0.561288,-0.545356,0.366992,0.561286,-0.741805,0.0550482,0.561384,-0.825723,-0.266054,0.561286,-0.783692,-0.545287,0.561299,-0.62258,-0.74198,0.561333,-0.366567,-0.825819,0.561285,-0.0546098,-0.783947,0.561324,0.265222,-0.831494,0.0,0.555533,-0.622645,0.561316,0.545195,-0.366486,0.561324,0.742027,-0.0546488,0.561288,0.825815,0.265222,0.561324,0.783947,0.545138,0.561305,0.622704,-0.57735,0.57735,-0.57735,-0.408248,-0.816497,-0.408248,-0.816497,-0.408248,0.408248,-0.408248,0.408248,0.816497,0.57735,0.57735,-0.57735,0.666667,-0.333333,-0.666667,0.666667,0.666667,0.333333,0.333333,-0.666667,0.666667});
			return Normal_6_873_vector;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=6, element #878, 120 total numbers made up of 40 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 getCoordinate_6_878_point()
		{
			MFVec3f Coordinate_6_878_point = new MFVec3f(new double[] {-7.84733,1.10243,-1.39208,-7.84749,1.10243,-1.39126,-7.84749,1.09543,-1.39126,-7.84733,1.09543,-1.39208,-7.84749,1.10243,-1.39291,-7.84796,1.10243,-1.39361,-7.84866,1.10243,-1.39408,-7.84949,1.10243,-1.39424,-7.85031,1.10243,-1.39408,-7.85101,1.10243,-1.39361,-7.85148,1.10243,-1.39291,-7.85164,1.10243,-1.39208,-7.85148,1.10243,-1.39126,-7.85101,1.10243,-1.39056,-7.85031,1.10243,-1.39009,-7.84949,1.10243,-1.38993,-7.84866,1.10243,-1.39009,-7.84796,1.10243,-1.39056,-7.84749,1.09543,-1.39291,-7.84796,1.09543,-1.39056,-7.84866,1.09543,-1.39009,-7.84949,1.09543,-1.38993,-7.85031,1.09543,-1.39009,-7.85101,1.09543,-1.39056,-7.85148,1.09543,-1.39126,-7.85164,1.09543,-1.39208,-7.85148,1.09543,-1.39291,-7.85101,1.09543,-1.39361,-7.85031,1.09543,-1.39408,-7.84949,1.09543,-1.39424,-7.84866,1.09543,-1.39408,-7.84796,1.09543,-1.39361,-7.85196,1.09887,-1.38961,-7.85196,1.10094,-1.38961,-7.85196,1.10094,-1.3947,-7.85196,1.09887,-1.3947,-7.84696,1.09887,-1.38961,-7.84696,1.10094,-1.38961,-7.84696,1.09887,-1.3947,-7.84696,1.10094,-1.3947});
			return Coordinate_6_878_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #879, 120 total numbers made up of 40 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 getNormal_6_879_vector()
		{
			MFVec3f Normal_6_879_vector = new MFVec3f(new double[] {0.26985,0.962902,-9.48856E-6,0.849347,0.321145,0.418898,0.897176,-0.321145,0.303219,0.138768,-0.990325,-4.87939E-6,0.82312,0.4542,-0.340844,0.622477,0.561326,-0.545377,0.366223,0.561309,-0.742168,0.0546098,0.561285,-0.825819,-0.265347,0.561341,-0.783893,-0.545318,0.561282,-0.622568,-0.741893,0.561341,-0.366731,-0.825815,0.561285,-0.0546679,-0.784013,0.561309,0.265059,-0.622624,0.561367,0.545166,-0.366355,0.561242,0.742153,-0.0550674,0.561381,0.825723,0.265441,0.561211,0.783954,0.544477,0.561411,0.623188,0.89529,-0.247012,-0.370729,0.622533,-0.561411,0.545225,0.365848,-0.561211,0.742427,0.055009,-0.561381,0.825727,-0.265729,-0.561242,0.783834,-0.544855,-0.561367,0.622897,-0.742168,-0.561309,0.366223,-0.825819,-0.561285,0.0546098,-0.783893,-0.561341,-0.265347,-0.622568,-0.561282,-0.545318,-0.366731,-0.561341,-0.741893,-0.0546679,-0.561285,-0.825815,0.265059,-0.561309,-0.784013,0.544939,-0.561326,-0.62286,-0.57735,-0.57735,0.57735,-0.408248,0.816497,0.408248,-0.816497,0.408248,-0.408248,-0.408248,-0.408248,-0.816497,0.57735,-0.57735,0.57735,0.666667,0.333333,0.666667,0.666667,-0.666667,-0.333333,0.333333,0.666667,-0.666667});
			return Normal_6_879_vector;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=6, element #884, 120 total numbers made up of 40 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 getCoordinate_6_884_point()
		{
			MFVec3f Coordinate_6_884_point = new MFVec3f(new double[] {-7.84733,1.10243,-1.42642,-7.84749,1.10243,-1.42559,-7.84749,1.09543,-1.42559,-7.84733,1.09543,-1.42642,-7.84749,1.10243,-1.42725,-7.84796,1.10243,-1.42795,-7.84866,1.10243,-1.42841,-7.84949,1.10243,-1.42858,-7.85031,1.10243,-1.42841,-7.85101,1.10243,-1.42795,-7.85148,1.10243,-1.42725,-7.85164,1.10243,-1.42642,-7.85148,1.10243,-1.42559,-7.85101,1.10243,-1.42489,-7.85031,1.10243,-1.42443,-7.84949,1.10243,-1.42426,-7.84866,1.10243,-1.42443,-7.84796,1.10243,-1.42489,-7.84749,1.09543,-1.42725,-7.84796,1.09543,-1.42489,-7.84866,1.09543,-1.42443,-7.84949,1.09543,-1.42426,-7.85031,1.09543,-1.42443,-7.85101,1.09543,-1.42489,-7.85148,1.09543,-1.42559,-7.85164,1.09543,-1.42642,-7.85148,1.09543,-1.42725,-7.85101,1.09543,-1.42795,-7.85031,1.09543,-1.42841,-7.84949,1.09543,-1.42858,-7.84866,1.09543,-1.42841,-7.84796,1.09543,-1.42795,-7.85196,1.09887,-1.42395,-7.85196,1.10094,-1.42395,-7.85196,1.10094,-1.42903,-7.85196,1.09887,-1.42903,-7.84696,1.09887,-1.42395,-7.84696,1.10094,-1.42395,-7.84696,1.09887,-1.42903,-7.84696,1.10094,-1.42903});
			return Coordinate_6_884_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #885, 120 total numbers made up of 40 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 getNormal_6_885_vector()
		{
			MFVec3f Normal_6_885_vector = new MFVec3f(new double[] {0.269857,0.9629,4.73769E-5,0.849048,0.321168,0.419487,0.897054,-0.321168,0.303553,0.138772,-0.990324,2.43631E-5,0.823212,0.454206,-0.340616,0.622488,0.561343,-0.545346,0.366077,0.561299,-0.742248,0.0546098,0.561285,-0.825819,-0.265272,0.56133,-0.783925,-0.545225,0.561299,-0.622634,-0.741981,0.561346,-0.366544,-0.825836,0.561276,-0.0544543,-0.783893,0.561341,0.265347,-0.622568,0.561282,0.545318,-0.366731,0.561341,0.741893,-0.0546679,0.561285,0.825815,0.265059,0.561309,0.784013,0.544939,0.561326,0.62286,0.895392,-0.247016,-0.370482,0.622477,-0.561326,0.545377,0.366223,-0.561309,0.742168,0.0546098,-0.561285,0.825819,-0.265347,-0.561341,0.783893,-0.545318,-0.561282,0.622568,-0.741893,-0.561341,0.366731,-0.825816,-0.561276,0.0547443,-0.78397,-0.561346,-0.265109,-0.62258,-0.561299,-0.545287,-0.366584,-0.56133,-0.741973,-0.0546679,-0.561285,-0.825815,0.264984,-0.561299,-0.784045,0.544847,-0.561343,-0.622925,-0.57735,-0.57735,0.57735,-0.408248,0.816497,0.408248,-0.816497,0.408248,-0.408248,-0.408248,-0.408248,-0.816497,0.57735,-0.57735,0.57735,0.666667,0.333333,0.666667,0.666667,-0.666667,-0.333333,0.333333,0.666667,-0.666667});
			return Normal_6_885_vector;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=6, element #890, 120 total numbers made up of 40 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 getCoordinate_6_890_point()
		{
			MFVec3f Coordinate_6_890_point = new MFVec3f(new double[] {-7.84733,1.08827,-1.39211,-7.84749,1.08827,-1.39294,-7.84749,1.09527,-1.39294,-7.84733,1.09527,-1.39211,-7.84749,1.08827,-1.39129,-7.84796,1.08827,-1.39059,-7.84866,1.08827,-1.39012,-7.84949,1.08827,-1.38995,-7.85031,1.08827,-1.39012,-7.85101,1.08827,-1.39059,-7.85148,1.08827,-1.39129,-7.85164,1.08827,-1.39211,-7.85148,1.08827,-1.39294,-7.85101,1.08827,-1.39364,-7.85031,1.08827,-1.39411,-7.84949,1.08827,-1.39427,-7.84866,1.08827,-1.39411,-7.84796,1.08827,-1.39364,-7.84749,1.09527,-1.39129,-7.84796,1.09527,-1.39364,-7.84866,1.09527,-1.39411,-7.84949,1.09527,-1.39427,-7.85031,1.09527,-1.39411,-7.85101,1.09527,-1.39364,-7.85148,1.09527,-1.39294,-7.85164,1.09527,-1.39211,-7.85148,1.09527,-1.39129,-7.85101,1.09527,-1.39059,-7.85031,1.09527,-1.39012,-7.84949,1.09527,-1.38995,-7.84866,1.09527,-1.39012,-7.84796,1.09527,-1.39059,-7.85196,1.09183,-1.39458,-7.85196,1.08976,-1.39458,-7.85196,1.08976,-1.3895,-7.85196,1.09183,-1.3895,-7.84696,1.09183,-1.39458,-7.84696,1.08976,-1.39458,-7.84696,1.09183,-1.3895,-7.84696,1.08976,-1.3895});
			return Coordinate_6_890_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #891, 120 total numbers made up of 40 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 getNormal_6_891_vector()
		{
			MFVec3f Normal_6_891_vector = new MFVec3f(new double[] {0.26985,-0.962902,9.48856E-6,0.849057,-0.32117,-0.419467,0.897068,0.32117,-0.303511,0.138768,0.990325,4.87939E-6,0.823308,-0.454165,0.340439,0.622768,-0.56137,0.544998,0.366077,-0.561299,0.742248,0.0546098,-0.561285,0.825819,-0.265272,-0.56133,0.783925,-0.545377,-0.561326,0.622477,-0.742161,-0.561307,0.366241,-0.825815,-0.561285,0.0546679,-0.783904,-0.561343,-0.265309,-0.622568,-0.561282,-0.545318,-0.366731,-0.561341,-0.741893,-0.0546679,-0.561285,-0.825815,0.265059,-0.561309,-0.784013,0.544939,-0.561326,-0.62286,0.895482,0.246989,0.370282,0.622477,0.561326,-0.545377,0.366223,0.561309,-0.742168,0.0546098,0.561285,-0.825819,-0.265347,0.561341,-0.783893,-0.545318,0.561282,-0.622568,-0.7419,0.561343,-0.366713,-0.825819,0.561285,-0.0546098,-0.784002,0.561307,0.265096,-0.62286,0.561326,0.544939,-0.366584,0.56133,0.741973,-0.0546679,0.561285,0.825815,0.264984,0.561299,0.784045,0.544998,0.56137,0.622768,-0.57735,0.57735,-0.57735,-0.408248,-0.816497,-0.408248,-0.816497,-0.408248,0.408248,-0.408248,0.408248,0.816497,0.57735,0.57735,-0.57735,0.666667,-0.333333,-0.666667,0.666667,0.666667,0.333333,0.333333,-0.666667,0.666667});
			return Normal_6_891_vector;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=6, element #896, 120 total numbers made up of 40 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 getCoordinate_6_896_point()
		{
			MFVec3f Coordinate_6_896_point = new MFVec3f(new double[] {-7.84733,1.08827,-1.42645,-7.84749,1.08827,-1.42727,-7.84749,1.09527,-1.42727,-7.84733,1.09527,-1.42645,-7.84749,1.08827,-1.42562,-7.84796,1.08827,-1.42492,-7.84866,1.08827,-1.42446,-7.84949,1.08827,-1.42429,-7.85031,1.08827,-1.42446,-7.85101,1.08827,-1.42492,-7.85148,1.08827,-1.42562,-7.85164,1.08827,-1.42645,-7.85148,1.08827,-1.42727,-7.85101,1.08827,-1.42797,-7.85031,1.08827,-1.42844,-7.84949,1.08827,-1.42861,-7.84866,1.08827,-1.42844,-7.84796,1.08827,-1.42797,-7.84749,1.09527,-1.42562,-7.84796,1.09527,-1.42797,-7.84866,1.09527,-1.42844,-7.84949,1.09527,-1.42861,-7.85031,1.09527,-1.42844,-7.85101,1.09527,-1.42797,-7.85148,1.09527,-1.42727,-7.85164,1.09527,-1.42645,-7.85148,1.09527,-1.42562,-7.85101,1.09527,-1.42492,-7.85031,1.09527,-1.42446,-7.84949,1.09527,-1.42429,-7.84866,1.09527,-1.42446,-7.84796,1.09527,-1.42492,-7.85196,1.09183,-1.42892,-7.85196,1.08976,-1.42892,-7.85196,1.08976,-1.42383,-7.85196,1.09183,-1.42383,-7.84696,1.09183,-1.42892,-7.84696,1.08976,-1.42892,-7.84696,1.09183,-1.42383,-7.84696,1.08976,-1.42383});
			return Coordinate_6_896_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #897, 120 total numbers made up of 40 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 getNormal_6_897_vector()
		{
			MFVec3f Normal_6_897_vector = new MFVec3f(new double[] {0.26985,-0.962902,9.48856E-6,0.849057,-0.32117,-0.419467,0.897068,0.32117,-0.303511,0.138768,0.990325,4.87939E-6,0.823158,-0.454193,0.340763,0.622488,-0.561343,0.545346,0.366077,-0.561299,0.742248,0.0546098,-0.561285,0.825819,-0.265272,-0.56133,0.783925,-0.545225,-0.561299,0.622634,-0.741946,-0.561334,0.366633,-0.825815,-0.561285,0.0546679,-0.783904,-0.561343,-0.265309,-0.622568,-0.561282,-0.545318,-0.36709,-0.561293,-0.741752,-0.0550674,-0.561381,-0.825723,0.265816,-0.561261,-0.783791,0.544939,-0.561326,-0.62286,0.895329,0.247007,0.37064,0.622477,0.561326,-0.545377,0.366582,0.561261,-0.742027,0.055009,0.561381,-0.825727,-0.266104,0.561293,-0.78367,-0.545318,0.561282,-0.622568,-0.7419,0.561343,-0.366713,-0.825819,0.561285,-0.0546098,-0.783915,0.561334,0.265296,-0.62258,0.561299,0.545287,-0.366584,0.56133,0.741973,-0.0546679,0.561285,0.825815,0.264984,0.561299,0.784045,0.544847,0.561343,0.622925,-0.57735,0.57735,-0.57735,-0.408248,-0.816497,-0.408248,-0.816497,-0.408248,0.408248,-0.408248,0.408248,0.816497,0.57735,0.57735,-0.57735,0.666667,-0.333333,-0.666667,0.666667,0.666667,0.333333,0.333333,-0.666667,0.666667});
			return Normal_6_897_vector;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=6, element #908, 120 total numbers made up of 40 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 getCoordinate_6_908_point()
		{
			MFVec3f Coordinate_6_908_point = new MFVec3f(new double[] {-7.88212,1.10243,-1.39208,-7.88229,1.10243,-1.39126,-7.88229,1.09543,-1.39126,-7.88212,1.09543,-1.39208,-7.88229,1.10243,-1.39291,-7.88276,1.10243,-1.39361,-7.88346,1.10243,-1.39408,-7.88428,1.10243,-1.39424,-7.88511,1.10243,-1.39408,-7.88581,1.10243,-1.39361,-7.88627,1.10243,-1.39291,-7.88644,1.10243,-1.39208,-7.88627,1.10243,-1.39126,-7.88581,1.10243,-1.39056,-7.88511,1.10243,-1.39009,-7.88428,1.10243,-1.38993,-7.88346,1.10243,-1.39009,-7.88276,1.10243,-1.39056,-7.88229,1.09543,-1.39291,-7.88276,1.09543,-1.39056,-7.88346,1.09543,-1.39009,-7.88428,1.09543,-1.38993,-7.88511,1.09543,-1.39009,-7.88581,1.09543,-1.39056,-7.88627,1.09543,-1.39126,-7.88644,1.09543,-1.39208,-7.88627,1.09543,-1.39291,-7.88581,1.09543,-1.39361,-7.88511,1.09543,-1.39408,-7.88428,1.09543,-1.39424,-7.88346,1.09543,-1.39408,-7.88276,1.09543,-1.39361,-7.88675,1.09887,-1.38961,-7.88675,1.10094,-1.38961,-7.88675,1.10094,-1.3947,-7.88675,1.09887,-1.3947,-7.88175,1.09887,-1.38961,-7.88175,1.10094,-1.38961,-7.88175,1.09887,-1.3947,-7.88175,1.10094,-1.3947});
			return Coordinate_6_908_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #909, 120 total numbers made up of 40 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 getNormal_6_909_vector()
		{
			MFVec3f Normal_6_909_vector = new MFVec3f(new double[] {0.26978,0.962922,-9.55108E-6,0.849077,0.321116,0.419468,0.896866,-0.321116,0.304165,0.138729,-0.99033,-4.91147E-6,0.822846,0.45416,-0.341559,0.622529,0.561288,-0.545356,0.366633,0.561334,-0.741946,0.0546488,0.561288,-0.825815,-0.265296,0.561334,-0.783915,-0.545287,0.561299,-0.62258,-0.741973,0.56133,-0.366584,-0.825815,0.561285,-0.0546679,-0.784045,0.561299,0.264984,-0.62269,0.561384,0.545074,-0.366257,0.561235,0.742207,-0.0550482,0.561384,0.825723,0.265679,0.561235,0.783856,0.544768,0.561373,0.622967,0.894978,-0.246986,-0.3715,0.622585,-0.561373,0.545204,0.366257,-0.561235,0.742207,0.0550482,-0.561384,0.825723,-0.265679,-0.561235,0.783856,-0.544824,-0.561384,0.622908,-0.742248,-0.561299,0.366077,-0.825819,-0.561285,0.0546098,-0.783925,-0.56133,-0.265272,-0.622634,-0.561299,-0.545225,-0.366633,-0.561334,-0.741946,-0.0546488,-0.561288,-0.825815,0.265296,-0.561334,-0.783915,0.545231,-0.561288,-0.622639,-0.57735,-0.57735,0.57735,-0.408248,0.816497,0.408248,-0.816497,0.408248,-0.408248,-0.408248,-0.408248,-0.816497,0.57735,-0.57735,0.57735,0.666667,0.333333,0.666667,0.666667,-0.666667,-0.333333,0.333333,0.666667,-0.666667});
			return Normal_6_909_vector;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=6, element #914, 120 total numbers made up of 40 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 getCoordinate_6_914_point()
		{
			MFVec3f Coordinate_6_914_point = new MFVec3f(new double[] {-7.88212,1.10243,-1.42642,-7.88229,1.10243,-1.42559,-7.88229,1.09543,-1.42559,-7.88212,1.09543,-1.42642,-7.88229,1.10243,-1.42725,-7.88276,1.10243,-1.42795,-7.88346,1.10243,-1.42841,-7.88428,1.10243,-1.42858,-7.88511,1.10243,-1.42841,-7.88581,1.10243,-1.42795,-7.88627,1.10243,-1.42725,-7.88644,1.10243,-1.42642,-7.88627,1.10243,-1.42559,-7.88581,1.10243,-1.42489,-7.88511,1.10243,-1.42443,-7.88428,1.10243,-1.42426,-7.88346,1.10243,-1.42443,-7.88276,1.10243,-1.42489,-7.88229,1.09543,-1.42725,-7.88276,1.09543,-1.42489,-7.88346,1.09543,-1.42443,-7.88428,1.09543,-1.42426,-7.88511,1.09543,-1.42443,-7.88581,1.09543,-1.42489,-7.88627,1.09543,-1.42559,-7.88644,1.09543,-1.42642,-7.88627,1.09543,-1.42725,-7.88581,1.09543,-1.42795,-7.88511,1.09543,-1.42841,-7.88428,1.09543,-1.42858,-7.88346,1.09543,-1.42841,-7.88276,1.09543,-1.42795,-7.88675,1.09887,-1.42395,-7.88675,1.10094,-1.42395,-7.88675,1.10094,-1.42903,-7.88675,1.09887,-1.42903,-7.88175,1.09887,-1.42395,-7.88175,1.10094,-1.42395,-7.88175,1.09887,-1.42903,-7.88175,1.10094,-1.42903});
			return Coordinate_6_914_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #915, 120 total numbers made up of 40 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 getNormal_6_915_vector()
		{
			MFVec3f Normal_6_915_vector = new MFVec3f(new double[] {0.269787,0.96292,4.76891E-5,0.848777,0.32114,0.420056,0.896744,-0.32114,0.304499,0.138733,-0.99033,2.45233E-5,0.822938,0.454166,-0.34133,0.622541,0.561305,-0.545325,0.366486,0.561324,-0.742027,0.0546488,0.561288,-0.825815,-0.265222,0.561324,-0.783947,-0.545195,0.561316,-0.622645,-0.742062,0.561336,-0.366397,-0.825836,0.561276,-0.0544543,-0.783925,0.56133,0.265272,-0.622634,0.561299,0.545225,-0.366633,0.561334,0.741946,-0.0546488,0.561288,0.825815,0.265296,0.561334,0.783915,0.545231,0.561288,0.622639,0.89508,-0.24699,-0.371252,0.622529,-0.561288,0.545356,0.366633,-0.561334,0.741946,0.0546488,-0.561288,0.825815,-0.265296,-0.561334,0.783915,-0.545287,-0.561299,0.62258,-0.741973,-0.56133,0.366584,-0.825816,-0.561276,0.0547443,-0.784002,-0.561336,-0.265034,-0.622645,-0.561316,-0.545195,-0.366486,-0.561324,-0.742027,-0.0546488,-0.561288,-0.825815,0.265222,-0.561324,-0.783947,0.545138,-0.561305,-0.622704,-0.57735,-0.57735,0.57735,-0.408248,0.816497,0.408248,-0.816497,0.408248,-0.408248,-0.408248,-0.408248,-0.816497,0.57735,-0.57735,0.57735,0.666667,0.333333,0.666667,0.666667,-0.666667,-0.333333,0.333333,0.666667,-0.666667});
			return Normal_6_915_vector;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=6, element #920, 120 total numbers made up of 40 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 getCoordinate_6_920_point()
		{
			MFVec3f Coordinate_6_920_point = new MFVec3f(new double[] {-7.88212,1.08827,-1.39211,-7.88229,1.08827,-1.39294,-7.88229,1.09527,-1.39294,-7.88212,1.09527,-1.39211,-7.88229,1.08827,-1.39129,-7.88276,1.08827,-1.39059,-7.88346,1.08827,-1.39012,-7.88428,1.08827,-1.38995,-7.88511,1.08827,-1.39012,-7.88581,1.08827,-1.39059,-7.88627,1.08827,-1.39129,-7.88644,1.08827,-1.39211,-7.88627,1.08827,-1.39294,-7.88581,1.08827,-1.39364,-7.88511,1.08827,-1.39411,-7.88428,1.08827,-1.39427,-7.88346,1.08827,-1.39411,-7.88276,1.08827,-1.39364,-7.88229,1.09527,-1.39129,-7.88276,1.09527,-1.39364,-7.88346,1.09527,-1.39411,-7.88428,1.09527,-1.39427,-7.88511,1.09527,-1.39411,-7.88581,1.09527,-1.39364,-7.88627,1.09527,-1.39294,-7.88644,1.09527,-1.39211,-7.88627,1.09527,-1.39129,-7.88581,1.09527,-1.39059,-7.88511,1.09527,-1.39012,-7.88428,1.09527,-1.38995,-7.88346,1.09527,-1.39012,-7.88276,1.09527,-1.39059,-7.88675,1.09183,-1.39458,-7.88675,1.08976,-1.39458,-7.88675,1.08976,-1.3895,-7.88675,1.09183,-1.3895,-7.88175,1.09183,-1.39458,-7.88175,1.08976,-1.39458,-7.88175,1.09183,-1.3895,-7.88175,1.08976,-1.3895});
			return Coordinate_6_920_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #921, 120 total numbers made up of 40 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 getNormal_6_921_vector()
		{
			MFVec3f Normal_6_921_vector = new MFVec3f(new double[] {0.26978,-0.962922,9.55108E-6,0.848786,-0.321142,-0.420036,0.896758,0.321142,-0.304456,0.138729,0.99033,4.91147E-6,0.823034,-0.454125,0.341153,0.622821,-0.561333,0.544977,0.366486,-0.561324,0.742027,0.0546488,-0.561288,0.825815,-0.265222,-0.561324,0.783947,-0.545346,-0.561343,0.622488,-0.742241,-0.561297,0.366094,-0.825815,-0.561285,0.0546679,-0.783936,-0.561333,-0.265234,-0.622634,-0.561299,-0.545225,-0.366633,-0.561334,-0.741946,-0.0546488,-0.561288,-0.825815,0.265296,-0.561334,-0.783915,0.545231,-0.561288,-0.622639,0.895169,0.246963,0.371054,0.622529,0.561288,-0.545356,0.366633,0.561334,-0.741946,0.0546488,0.561288,-0.825815,-0.265296,0.561334,-0.783915,-0.545287,0.561299,-0.62258,-0.74198,0.561333,-0.366567,-0.825819,0.561285,-0.0546098,-0.784034,0.561297,0.265022,-0.622925,0.561343,0.544847,-0.366486,0.561324,0.742027,-0.0546488,0.561288,0.825815,0.265222,0.561324,0.783947,0.54529,0.561333,0.622547,-0.57735,0.57735,-0.57735,-0.408248,-0.816497,-0.408248,-0.816497,-0.408248,0.408248,-0.408248,0.408248,0.816497,0.57735,0.57735,-0.57735,0.666667,-0.333333,-0.666667,0.666667,0.666667,0.333333,0.333333,-0.666667,0.666667});
			return Normal_6_921_vector;
		}
		/** Large attribute array: IndexedFaceSet coordIndex field, scene-graph level=5, element #981, 394 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 getIndexedFaceSet_5_981_coordIndex()
		{
			MFInt32 IndexedFaceSet_5_981_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_981_coordIndex_1()));
			return IndexedFaceSet_5_981_coordIndex;
		}
		/** Large attribute array: IndexedFaceSet normalIndex field, scene-graph level=5, element #981, 394 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 getIndexedFaceSet_5_981_normalIndex()
		{
			MFInt32 IndexedFaceSet_5_981_normalIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_981_normalIndex_1()));
			return IndexedFaceSet_5_981_normalIndex;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=6, element #982, 288 total numbers made up of 96 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 getCoordinate_6_982_point()
		{
			MFVec3f Coordinate_6_982_point = new MFVec3f(new double[] {7.48025,0.843719,1.46378,7.47956,0.843719,1.46727,7.47758,0.843719,1.47023,7.47462,0.843719,1.47221,7.47113,0.843719,1.4729,7.46764,0.843719,1.47221,7.46469,0.843719,1.47023,7.46271,0.843719,1.46727,7.46201,0.843719,1.46378,7.46271,0.843719,1.46029,7.46469,0.843719,1.45733,7.46764,0.843719,1.45536,7.47113,0.843719,1.45466,7.47462,0.843719,1.45536,7.47758,0.843719,1.45733,7.47956,0.843719,1.46029,7.48025,1.0412,1.46378,7.47956,1.0412,1.46727,7.47758,1.0412,1.47023,7.47462,1.0412,1.47221,7.47113,1.0412,1.4729,7.46764,1.0412,1.47221,7.46469,1.0412,1.47023,7.46271,1.0412,1.46727,7.46201,1.0412,1.46378,7.46271,1.0412,1.46029,7.46469,1.0412,1.45733,7.46764,1.0412,1.45536,7.47113,1.0412,1.45466,7.47462,1.0412,1.45536,7.47758,1.0412,1.45733,7.47956,1.0412,1.46029,7.47717,1.06084,1.46628,7.47767,1.06084,1.46378,7.47717,1.06084,1.46128,7.47575,1.06084,1.45916,7.47363,1.06084,1.45775,7.47113,1.06084,1.45725,7.46863,1.06084,1.45775,7.46651,1.06084,1.45916,7.4651,1.06084,1.46128,7.4646,1.06084,1.46378,7.4651,1.06084,1.46628,7.46651,1.06084,1.4684,7.46863,1.06084,1.46982,7.47113,1.06084,1.47032,7.47363,1.06084,1.46982,7.47575,1.06084,1.4684,7.47717,1.61065,1.46628,7.47767,1.61065,1.46378,7.47717,1.61065,1.46128,7.47575,1.61065,1.45916,7.47363,1.61065,1.45775,7.47113,1.61065,1.45725,7.46863,1.61065,1.45775,7.46651,1.61065,1.45916,7.4651,1.61065,1.46128,7.4646,1.61065,1.46378,7.4651,1.61065,1.46628,7.46651,1.61065,1.4684,7.46863,1.61065,1.46982,7.47113,1.61065,1.47032,7.47363,1.61065,1.46982,7.47575,1.61065,1.4684,7.47354,1.6405,1.46478,7.47374,1.6405,1.46378,7.47354,1.6405,1.46279,7.47297,1.6405,1.46194,7.47213,1.6405,1.46138,7.47113,1.6405,1.46118,7.47014,1.6405,1.46138,7.46929,1.6405,1.46194,7.46873,1.6405,1.46279,7.46853,1.6405,1.46378,7.46873,1.6405,1.46478,7.46929,1.6405,1.46562,7.47014,1.6405,1.46619,7.47113,1.6405,1.46638,7.47213,1.6405,1.46619,7.47297,1.6405,1.46562,11.3082,-4.09189,8.06342,11.3082,-4.09189,7.87599,11.3041,-3.97752,7.87599,11.3041,-3.97752,8.06342,11.227,-4.08075,7.86821,11.227,-4.08075,8.04434,11.2311,-3.96639,8.04434,11.2311,-3.96639,7.86821,11.3082,-4.09189,9.47939,11.3082,-4.09189,9.29195,11.3041,-3.97752,9.29195,11.3041,-3.97752,9.47939,11.227,-4.08075,9.30427,11.227,-4.08075,9.48717,11.2311,-3.96639,9.48717,11.2311,-3.96639,9.30427});
			return Coordinate_6_982_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #983, 288 total numbers made up of 96 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 getNormal_6_983_vector()
		{
			MFVec3f Normal_6_983_vector = new MFVec3f(new double[] {0.890909,-0.454182,3.90788E-16,0.823093,-0.454182,0.340936,0.629968,-0.454182,0.629968,0.340936,-0.454182,0.823093,2.74686E-14,-0.454182,0.890909,-0.340936,-0.454182,0.823093,-0.629968,-0.454182,0.629968,-0.823093,-0.454182,0.340936,-0.890909,-0.454182,3.90788E-16,-0.823093,-0.454182,-0.340936,-0.629968,-0.454182,-0.629968,-0.340936,-0.454182,-0.823093,2.74686E-14,-0.454182,-0.890909,0.340936,-0.454182,-0.823093,0.629968,-0.454182,-0.629968,0.823093,-0.454182,-0.340936,0.997856,0.0654471,-4.96222E-17,0.921899,0.0654471,0.381863,0.705591,0.0654471,0.705591,0.381863,0.0654471,0.921899,3.79255E-14,0.0654471,0.997856,-0.381863,0.0654471,0.921899,-0.705591,0.0654471,0.705591,-0.921899,0.0654471,0.381863,-0.997856,0.0654471,-4.96222E-17,-0.921899,0.0654471,-0.381863,-0.705591,0.0654471,-0.705591,-0.381863,0.0654471,-0.921899,3.7968E-14,0.0654471,-0.997856,0.381863,0.0654471,-0.921899,0.705591,0.0654471,-0.705591,0.921899,0.0654471,-0.381863,0.921899,0.0654471,0.381863,0.997856,0.0654471,-4.96222E-17,0.921899,0.0654471,-0.381863,0.705591,0.0654471,-0.705591,0.381863,0.0654471,-0.921899,2.25214E-14,0.0654471,-0.997856,-0.381863,0.0654471,-0.921899,-0.705591,0.0654471,-0.705591,-0.921899,0.0654471,-0.381863,-0.997856,0.0654471,-4.96222E-17,-0.921899,0.0654471,0.381863,-0.705591,0.0654471,0.705591,-0.381863,0.0654471,0.921899,2.24788E-14,0.0654471,0.997856,0.381863,0.0654471,0.921899,0.705591,0.0654471,0.705591,0.921899,0.0654471,0.381863,0.997856,0.0654471,-4.87219E-14,0.921899,0.0654471,-0.381863,0.705591,0.0654471,-0.705591,0.381863,0.0654471,-0.921899,4.32422E-16,0.0654471,-0.997856,-0.381863,0.0654471,-0.921899,-0.705591,0.0654471,-0.705591,-0.921899,0.0654471,-0.381863,-0.997856,0.0654471,-4.84312E-14,-0.921899,0.0654471,0.381863,-0.705591,0.0654471,0.705591,-0.381863,0.0654471,0.921899,4.39511E-16,0.0654471,0.997856,0.381863,0.0654471,0.921899,0.705591,0.0654471,0.705591,0.776124,0.542478,0.321481,0.84007,0.542478,-8.12497E-14,0.776124,0.542478,-0.321481,0.594019,0.542478,-0.594019,0.321481,0.542478,-0.776124,7.31116E-16,0.542478,-0.84007,-0.321481,0.542478,-0.776124,-0.594019,0.542478,-0.594019,-0.776124,0.542478,-0.321481,-0.84007,0.542478,-8.07583E-14,-0.776124,0.542478,0.321481,-0.594019,0.542478,0.594019,-0.321481,0.542478,0.776124,7.43101E-16,0.542478,0.84007,0.321481,0.542478,0.776124,0.594019,0.542478,0.594019,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0});
			return Normal_6_983_vector;
		}
		/** Large attribute array: IndexedFaceSet coordIndex field, scene-graph level=5, element #989, 394 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 getIndexedFaceSet_5_989_coordIndex()
		{
			MFInt32 IndexedFaceSet_5_989_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_989_coordIndex_1()));
			return IndexedFaceSet_5_989_coordIndex;
		}
		/** Large attribute array: IndexedFaceSet normalIndex field, scene-graph level=5, element #989, 394 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 getIndexedFaceSet_5_989_normalIndex()
		{
			MFInt32 IndexedFaceSet_5_989_normalIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_989_normalIndex_1()));
			return IndexedFaceSet_5_989_normalIndex;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=6, element #990, 288 total numbers made up of 96 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 getCoordinate_6_990_point()
		{
			MFVec3f Coordinate_6_990_point = new MFVec3f(new double[] {7.25063,1.20613,-0.355878,7.24993,1.20613,-0.352388,7.24796,1.20613,-0.34943,7.245,1.20613,-0.347453,7.24151,1.20613,-0.346758,7.23802,1.20613,-0.347453,7.23506,1.20613,-0.34943,7.23308,1.20613,-0.352388,7.23239,1.20613,-0.355878,7.23308,1.20613,-0.359368,7.23506,1.20613,-0.362327,7.23802,1.20613,-0.364304,7.24151,1.20613,-0.364998,7.245,1.20613,-0.364304,7.24796,1.20613,-0.362327,7.24993,1.20613,-0.359368,7.25063,1.40362,-0.355878,7.24993,1.40362,-0.352388,7.24796,1.40362,-0.34943,7.245,1.40362,-0.347453,7.24151,1.40362,-0.346758,7.23802,1.40362,-0.347453,7.23506,1.40362,-0.34943,7.23308,1.40362,-0.352388,7.23239,1.40362,-0.355878,7.23308,1.40362,-0.359368,7.23506,1.40362,-0.362327,7.23802,1.40362,-0.364304,7.24151,1.40362,-0.364998,7.245,1.40362,-0.364304,7.24796,1.40362,-0.362327,7.24993,1.40362,-0.359368,7.24754,1.42325,-0.353378,7.24804,1.42325,-0.355878,7.24754,1.42325,-0.358379,7.24613,1.42325,-0.360498,7.24401,1.42325,-0.361915,7.24151,1.42325,-0.362412,7.23901,1.42325,-0.361915,7.23689,1.42325,-0.360498,7.23547,1.42325,-0.358379,7.23497,1.42325,-0.355878,7.23547,1.42325,-0.353378,7.23689,1.42325,-0.351258,7.23901,1.42325,-0.349842,7.24151,1.42325,-0.349345,7.24401,1.42325,-0.349842,7.24613,1.42325,-0.351258,7.24754,1.97306,-0.353378,7.24804,1.97306,-0.355878,7.24754,1.97306,-0.358379,7.24613,1.97306,-0.360498,7.24401,1.97306,-0.361915,7.24151,1.97306,-0.362412,7.23901,1.97306,-0.361915,7.23689,1.97306,-0.360498,7.23547,1.97306,-0.358379,7.23497,1.97306,-0.355878,7.23547,1.97306,-0.353378,7.23689,1.97306,-0.351258,7.23901,1.97306,-0.349842,7.24151,1.97306,-0.349345,7.24401,1.97306,-0.349842,7.24613,1.97306,-0.351258,7.24391,2.00291,-0.354883,7.24411,2.00291,-0.355878,7.24391,2.00291,-0.356874,7.24335,2.00291,-0.357718,7.2425,2.00291,-0.358282,7.24151,2.00291,-0.35848,7.24051,2.00291,-0.358282,7.23967,2.00291,-0.357718,7.2391,2.00291,-0.356874,7.23891,2.00291,-0.355878,7.2391,2.00291,-0.354883,7.23967,2.00291,-0.354038,7.24051,2.00291,-0.353474,7.24151,2.00291,-0.353276,7.2425,2.00291,-0.353474,7.24335,2.00291,-0.354038,11.0786,-3.72947,6.24376,11.0786,-3.72947,6.05633,11.0745,-3.61511,6.05633,11.0745,-3.61511,6.24376,10.9974,-3.71834,6.04855,10.9974,-3.71834,6.22468,11.0015,-3.60397,6.22468,11.0015,-3.60397,6.04855,11.0786,-3.72947,7.65973,11.0786,-3.72947,7.47229,11.0745,-3.61511,7.47229,11.0745,-3.61511,7.65973,10.9974,-3.71834,7.48461,10.9974,-3.71834,7.66751,11.0015,-3.60397,7.66751,11.0015,-3.60397,7.48461});
			return Coordinate_6_990_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #991, 288 total numbers made up of 96 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 getNormal_6_991_vector()
		{
			MFVec3f Normal_6_991_vector = new MFVec3f(new double[] {0.890909,-0.454182,-1.55055E-15,0.823093,-0.454182,0.340936,0.629968,-0.454182,0.629968,0.340936,-0.454182,0.823093,8.23807E-14,-0.454182,0.890909,-0.340936,-0.454182,0.823093,-0.629968,-0.454182,0.629968,-0.823093,-0.454182,0.340936,-0.890909,-0.454182,-1.55055E-15,-0.823093,-0.454182,-0.340936,-0.629968,-0.454182,-0.629968,-0.340936,-0.454182,-0.823093,8.23807E-14,-0.454182,-0.890909,0.340936,-0.454182,-0.823093,0.629968,-0.454182,-0.629968,0.823093,-0.454182,-0.340936,0.997856,0.0654471,1.70133E-16,0.921899,0.0654471,0.381863,0.705591,0.0654471,0.705591,0.381863,0.0654471,0.921899,7.98917E-14,0.0654471,0.997856,-0.381863,0.0654471,0.921899,-0.705591,0.0654471,0.705591,-0.921899,0.0654471,0.381863,-0.997856,0.0654471,-1.77222E-16,-0.921899,0.0654471,-0.381863,-0.705591,0.0654471,-0.705591,-0.381863,0.0654471,-0.921899,7.98846E-14,0.0654471,-0.997856,0.381863,0.0654471,-0.921899,0.705591,0.0654471,-0.705591,0.921899,0.0654471,-0.381863,0.921899,0.0654471,0.381863,0.997856,0.0654471,1.70133E-16,0.921899,0.0654471,-0.381863,0.705591,0.0654471,-0.705591,0.381863,0.0654471,-0.921899,8.00122E-14,0.0654471,-0.997856,-0.381863,0.0654471,-0.921899,-0.705591,0.0654471,-0.705591,-0.921899,0.0654471,-0.381863,-0.997856,0.0654471,-1.77222E-16,-0.921899,0.0654471,0.381863,-0.705591,0.0654471,0.705591,-0.381863,0.0654471,0.921899,8.00193E-14,0.0654471,0.997856,0.381863,0.0654471,0.921899,0.705591,0.0654471,0.705591,0.921899,0.0654471,0.381863,0.997856,0.0654471,-4.81193E-14,0.921899,0.0654471,-0.381863,0.705591,0.0654471,-0.705591,0.381863,0.0654471,-0.921899,9.66214E-14,0.0654471,-0.997856,-0.381863,0.0654471,-0.921899,-0.705591,0.0654471,-0.705591,-0.921899,0.0654471,-0.381863,-0.997856,0.0654471,-4.83107E-14,-0.921899,0.0654471,0.381863,-0.705591,0.0654471,0.705591,-0.381863,0.0654471,0.921899,9.66285E-14,0.0654471,0.997856,0.381863,0.0654471,0.921899,0.705591,0.0654471,0.705591,0.776124,0.542478,0.321481,0.84007,0.542478,-8.9268E-14,0.776124,0.542478,-0.321481,0.594019,0.542478,-0.594019,0.321481,0.542478,-0.776124,8.48214E-14,0.542478,-0.84007,-0.321481,0.542478,-0.776124,-0.594019,0.542478,-0.594019,-0.776124,0.542478,-0.321481,-0.84007,0.542478,-8.95916E-14,-0.776124,0.542478,0.321481,-0.594019,0.542478,0.594019,-0.321481,0.542478,0.776124,8.48334E-14,0.542478,0.84007,0.321481,0.542478,0.776124,0.594019,0.542478,0.594019,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0});
			return Normal_6_991_vector;
		}
		/** Large attribute array: IndexedFaceSet coordIndex field, scene-graph level=5, element #997, 394 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 getIndexedFaceSet_5_997_coordIndex()
		{
			MFInt32 IndexedFaceSet_5_997_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_997_coordIndex_1()));
			return IndexedFaceSet_5_997_coordIndex;
		}
		/** Large attribute array: IndexedFaceSet normalIndex field, scene-graph level=5, element #997, 394 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 getIndexedFaceSet_5_997_normalIndex()
		{
			MFInt32 IndexedFaceSet_5_997_normalIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_997_normalIndex_1()));
			return IndexedFaceSet_5_997_normalIndex;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=6, element #998, 288 total numbers made up of 96 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 getCoordinate_6_998_point()
		{
			MFVec3f Coordinate_6_998_point = new MFVec3f(new double[] {7.25063,1.33437,-1.29187,7.24993,1.33437,-1.28838,7.24796,1.33437,-1.28543,7.245,1.33437,-1.28345,7.24151,1.33437,-1.28275,7.23802,1.33437,-1.28345,7.23506,1.33437,-1.28543,7.23308,1.33437,-1.28838,7.23239,1.33437,-1.29187,7.23308,1.33437,-1.29536,7.23506,1.33437,-1.29832,7.23802,1.33437,-1.3003,7.24151,1.33437,-1.30099,7.245,1.33437,-1.3003,7.24796,1.33437,-1.29832,7.24993,1.33437,-1.29536,7.25063,1.58435,-1.29187,7.24993,1.58435,-1.28838,7.24796,1.58435,-1.28543,7.245,1.58435,-1.28345,7.24151,1.58435,-1.28275,7.23802,1.58435,-1.28345,7.23506,1.58435,-1.28543,7.23308,1.58435,-1.28838,7.23239,1.58435,-1.29187,7.23308,1.58435,-1.29536,7.23506,1.58435,-1.29832,7.23802,1.58435,-1.3003,7.24151,1.58435,-1.30099,7.245,1.58435,-1.3003,7.24796,1.58435,-1.29832,7.24993,1.58435,-1.29536,7.24754,1.60921,-1.28937,7.24804,1.60921,-1.29187,7.24754,1.60921,-1.29437,7.24613,1.60921,-1.29649,7.24401,1.60921,-1.29791,7.24151,1.60921,-1.29841,7.23901,1.60921,-1.29791,7.23689,1.60921,-1.29649,7.23547,1.60921,-1.29437,7.23497,1.60921,-1.29187,7.23547,1.60921,-1.28937,7.23689,1.60921,-1.28725,7.23901,1.60921,-1.28584,7.24151,1.60921,-1.28534,7.24401,1.60921,-1.28584,7.24613,1.60921,-1.28725,7.24754,2.30517,-1.28937,7.24804,2.30517,-1.29187,7.24754,2.30517,-1.29437,7.24613,2.30517,-1.29649,7.24401,2.30517,-1.29791,7.24151,2.30517,-1.29841,7.23901,2.30517,-1.29791,7.23689,2.30517,-1.29649,7.23547,2.30517,-1.29437,7.23497,2.30517,-1.29187,7.23547,2.30517,-1.28937,7.23689,2.30517,-1.28725,7.23901,2.30517,-1.28584,7.24151,2.30517,-1.28534,7.24401,2.30517,-1.28584,7.24613,2.30517,-1.28725,7.24391,2.34295,-1.29088,7.24411,2.34295,-1.29187,7.24391,2.34295,-1.29287,7.24335,2.34295,-1.29371,7.2425,2.34295,-1.29428,7.24151,2.34295,-1.29448,7.24051,2.34295,-1.29428,7.23967,2.34295,-1.29371,7.2391,2.34295,-1.29287,7.23891,2.34295,-1.29187,7.2391,2.34295,-1.29088,7.23967,2.34295,-1.29003,7.24051,2.34295,-1.28947,7.24151,2.34295,-1.28927,7.2425,2.34295,-1.28947,7.24335,2.34295,-1.29003,11.0786,-4.91323,5.30777,11.0786,-4.91323,5.12033,11.0745,-4.76846,5.12033,11.0745,-4.76846,5.30777,10.9974,-4.89914,5.11255,10.9974,-4.89914,5.28868,11.0015,-4.75437,5.28868,11.0015,-4.75437,5.11255,11.0786,-4.91323,6.72373,11.0786,-4.91323,6.5363,11.0745,-4.76846,6.5363,11.0745,-4.76846,6.72373,10.9974,-4.89914,6.54861,10.9974,-4.89914,6.73151,11.0015,-4.75437,6.73151,11.0015,-4.75437,6.54861});
			return Coordinate_6_998_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #999, 288 total numbers made up of 96 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 getNormal_6_999_vector()
		{
			MFVec3f Normal_6_999_vector = new MFVec3f(new double[] {0.890909,-0.454182,-7.6897E-16,0.823093,-0.454182,0.340936,0.629968,-0.454182,0.629968,0.340936,-0.454182,0.823093,2.1695E-14,-0.454182,0.890909,-0.340936,-0.454182,0.823093,-0.629968,-0.454182,0.629968,-0.823093,-0.454182,0.340936,-0.890909,-0.454182,-7.6897E-16,-0.823093,-0.454182,-0.340936,-0.629968,-0.454182,-0.629968,-0.340936,-0.454182,-0.823093,2.1695E-14,-0.454182,-0.890909,0.340936,-0.454182,-0.823093,0.629968,-0.454182,-0.629968,0.823093,-0.454182,-0.340936,0.998656,0.0518251,0.0,0.922638,0.0518251,0.382169,0.706157,0.0518251,0.706157,0.382169,0.0518251,0.922638,3.00842E-14,0.0518251,0.998656,-0.382169,0.0518251,0.922638,-0.706157,0.0518251,0.706157,-0.922638,0.0518251,0.382169,-0.998656,0.0518251,0.0,-0.922638,0.0518251,-0.382169,-0.706157,0.0518251,-0.706157,-0.382169,0.0518251,-0.922638,3.00558E-14,0.0518251,-0.998656,0.382169,0.0518251,-0.922638,0.706157,0.0518251,-0.706157,0.922638,0.0518251,-0.382169,0.922638,0.0518251,0.382169,0.998656,0.0518251,0.0,0.922638,0.0518251,-0.382169,0.706157,0.0518251,-0.706157,0.382169,0.0518251,-0.922638,1.78649E-14,0.0518251,-0.998656,-0.382169,0.0518251,-0.922638,-0.706157,0.0518251,-0.706157,-0.922638,0.0518251,-0.382169,-0.998656,0.0518251,0.0,-0.922638,0.0518251,0.382169,-0.706157,0.0518251,0.706157,-0.382169,0.0518251,0.922638,1.78933E-14,0.0518251,0.998656,0.382169,0.0518251,0.922638,0.706157,0.0518251,0.706157,0.922638,0.0518251,0.382169,0.998656,0.0518251,-4.8112E-14,0.922638,0.0518251,-0.382169,0.706157,0.0518251,-0.706157,0.382169,0.0518251,-0.922638,2.47927E-16,0.0518251,-0.998656,-0.382169,0.0518251,-0.922638,-0.706157,0.0518251,-0.706157,-0.922638,0.0518251,-0.382169,-0.998656,0.0518251,-4.8112E-14,-0.922638,0.0518251,0.382169,-0.706157,0.0518251,0.706157,-0.382169,0.0518251,0.922638,2.69178E-16,0.0518251,0.998656,0.382169,0.0518251,0.922638,0.706157,0.0518251,0.706157,0.786437,0.524788,0.325753,0.851233,0.524788,-6.85391E-14,0.786437,0.524788,-0.325753,0.601913,0.524788,-0.601913,0.325753,0.524788,-0.786437,4.23753E-16,0.524788,-0.851233,-0.325753,0.524788,-0.786437,-0.601913,0.524788,-0.601913,-0.786437,0.524788,-0.325753,-0.851233,0.524788,-6.85391E-14,-0.786437,0.524788,0.325753,-0.601913,0.524788,0.601913,-0.325753,0.524788,0.786437,4.60075E-16,0.524788,0.851233,0.325753,0.524788,0.786437,0.601913,0.524788,0.601913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0});
			return Normal_6_999_vector;
		}
		/** Large attribute array: IndexedFaceSet coordIndex field, scene-graph level=5, element #1005, 394 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 getIndexedFaceSet_5_1005_coordIndex()
		{
			MFInt32 IndexedFaceSet_5_1005_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_1005_coordIndex_1()));
			return IndexedFaceSet_5_1005_coordIndex;
		}
		/** Large attribute array: IndexedFaceSet normalIndex field, scene-graph level=5, element #1005, 394 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 getIndexedFaceSet_5_1005_normalIndex()
		{
			MFInt32 IndexedFaceSet_5_1005_normalIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_1005_normalIndex_1()));
			return IndexedFaceSet_5_1005_normalIndex;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=6, element #1006, 288 total numbers made up of 96 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 getCoordinate_6_1006_point()
		{
			MFVec3f Coordinate_6_1006_point = new MFVec3f(new double[] {6.00128,1.98608,-0.923846,6.00059,1.98608,-0.920356,5.99861,1.98608,-0.917398,5.99565,1.98608,-0.915421,5.99216,1.98608,-0.914726,5.98867,1.98608,-0.915421,5.98571,1.98608,-0.917398,5.98373,1.98608,-0.920356,5.98304,1.98608,-0.923846,5.98373,1.98608,-0.927336,5.98571,1.98608,-0.930295,5.98867,1.98608,-0.932272,5.99216,1.98608,-0.932966,5.99565,1.98608,-0.932272,5.99861,1.98608,-0.930295,6.00059,1.98608,-0.927336,6.00128,2.08753,-0.923846,6.00059,2.08753,-0.920356,5.99861,2.08753,-0.917398,5.99565,2.08753,-0.915421,5.99216,2.08753,-0.914726,5.98867,2.08753,-0.915421,5.98571,2.08753,-0.917398,5.98373,2.08753,-0.920356,5.98304,2.08753,-0.923846,5.98373,2.08753,-0.927336,5.98571,2.08753,-0.930295,5.98867,2.08753,-0.932272,5.99216,2.08753,-0.932966,5.99565,2.08753,-0.932272,5.99861,2.08753,-0.930295,6.00059,2.08753,-0.927336,5.9982,2.09762,-0.921346,5.99869,2.09762,-0.923846,5.9982,2.09762,-0.926347,5.99678,2.09762,-0.928466,5.99466,2.09762,-0.929883,5.99216,2.09762,-0.93038,5.98966,2.09762,-0.929883,5.98754,2.09762,-0.928466,5.98612,2.09762,-0.926347,5.98563,2.09762,-0.923846,5.98612,2.09762,-0.921346,5.98754,2.09762,-0.919226,5.98966,2.09762,-0.91781,5.99216,2.09762,-0.917313,5.99466,2.09762,-0.91781,5.99678,2.09762,-0.919226,5.9982,2.38007,-0.921346,5.99869,2.38007,-0.923846,5.9982,2.38007,-0.926347,5.99678,2.38007,-0.928466,5.99466,2.38007,-0.929883,5.99216,2.38007,-0.93038,5.98966,2.38007,-0.929883,5.98754,2.38007,-0.928466,5.98612,2.38007,-0.926347,5.98563,2.38007,-0.923846,5.98612,2.38007,-0.921346,5.98754,2.38007,-0.919226,5.98966,2.38007,-0.91781,5.99216,2.38007,-0.917313,5.99466,2.38007,-0.91781,5.99678,2.38007,-0.919226,5.99456,2.3954,-0.922851,5.99476,2.3954,-0.923846,5.99456,2.3954,-0.924842,5.994,2.3954,-0.925686,5.99316,2.3954,-0.92625,5.99216,2.3954,-0.926449,5.99116,2.3954,-0.92625,5.99032,2.3954,-0.925686,5.98976,2.3954,-0.924842,5.98956,2.3954,-0.923846,5.98976,2.3954,-0.922851,5.99032,2.3954,-0.922006,5.99116,2.3954,-0.921442,5.99216,2.3954,-0.921244,5.99316,2.3954,-0.921442,5.994,2.3954,-0.922006,9.82925,-0.549476,5.67579,9.82925,-0.549476,5.48836,9.82511,-0.490724,5.48836,9.82511,-0.490724,5.67579,9.748,-0.543758,5.48058,9.748,-0.543758,5.65671,9.75214,-0.485005,5.65671,9.75214,-0.485005,5.48058,9.82925,-0.549476,7.09176,9.82925,-0.549476,6.90433,9.82511,-0.490724,6.90433,9.82511,-0.490724,7.09176,9.748,-0.543758,6.91664,9.748,-0.543758,7.09954,9.75214,-0.485005,7.09954,9.75214,-0.485005,6.91664});
			return Coordinate_6_1006_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #1007, 288 total numbers made up of 96 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 getNormal_6_1007_vector()
		{
			MFVec3f Normal_6_1007_vector = new MFVec3f(new double[] {0.890909,-0.454182,7.74013E-15,0.823093,-0.454182,0.340936,0.629968,-0.454182,0.629968,0.340936,-0.454182,0.823093,5.34497E-14,-0.454182,0.890909,-0.340936,-0.454182,0.823093,-0.629968,-0.454182,0.629968,-0.823093,-0.454182,0.340936,-0.890909,-0.454182,7.74013E-15,-0.823093,-0.454182,-0.340936,-0.629968,-0.454182,-0.629968,-0.340936,-0.454182,-0.823093,5.34497E-14,-0.454182,-0.890909,0.340936,-0.454182,-0.823093,0.629968,-0.454182,-0.629968,0.823093,-0.454182,-0.340936,0.992126,0.125242,7.8394E-17,0.916605,0.125242,0.37967,0.701539,0.125242,0.701539,0.37967,0.125242,0.916605,6.2031E-14,0.125242,0.992126,-0.37967,0.125242,0.916605,-0.701539,0.125242,0.701539,-0.916605,0.125242,0.37967,-0.992126,0.125242,7.8394E-17,-0.916605,0.125242,-0.37967,-0.701539,0.125242,-0.701539,-0.37967,0.125242,-0.916605,6.22021E-14,0.125242,-0.992126,0.37967,0.125242,-0.916605,0.701539,0.125242,-0.701539,0.916605,0.125242,-0.37967,0.916605,0.125242,0.37967,0.992126,0.125242,7.8394E-17,0.916605,0.125242,-0.37967,0.701539,0.125242,-0.701539,0.37967,0.125242,-0.916605,6.22876E-14,0.125242,-0.992126,-0.37967,0.125242,-0.916605,-0.701539,0.125242,-0.701539,-0.916605,0.125242,-0.37967,-0.992126,0.125242,7.8394E-17,-0.916605,0.125242,0.37967,-0.701539,0.125242,0.701539,-0.37967,0.125242,0.916605,6.21165E-14,0.125242,0.992126,0.37967,0.125242,0.916605,0.701539,0.125242,0.701539,0.916605,0.125242,0.37967,0.992126,0.125242,-4.74426E-14,0.916605,0.125242,-0.37967,0.701539,0.125242,-0.701539,0.37967,0.125242,-0.916605,6.59578E-14,0.125242,-0.992126,-0.37967,0.125242,-0.916605,-0.701539,0.125242,-0.701539,-0.916605,0.125242,-0.37967,-0.992126,0.125242,-4.74426E-14,-0.916605,0.125242,0.37967,-0.701539,0.125242,0.701539,-0.37967,0.125242,0.916605,6.59436E-14,0.125242,0.992126,0.37967,0.125242,0.916605,0.701539,0.125242,0.701539,0.72775,0.616045,0.301444,0.787711,0.616045,-9.6E-14,0.72775,0.616045,-0.301444,0.556996,0.616045,-0.556996,0.301444,0.616045,-0.72775,5.74989E-14,0.616045,-0.787711,-0.301444,0.616045,-0.72775,-0.556996,0.616045,-0.556996,-0.72775,0.616045,-0.301444,-0.787711,0.616045,-9.6E-14,-0.72775,0.616045,0.301444,-0.556996,0.616045,0.556996,-0.301444,0.616045,0.72775,5.74759E-14,0.616045,0.787711,0.301444,0.616045,0.72775,0.556996,0.616045,0.556996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0});
			return Normal_6_1007_vector;
		}
		/** Large attribute array: IndexedFaceSet colorIndex field, scene-graph level=5, element #1013, 10838 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 getIndexedFaceSet_5_1013_colorIndex()
		{
			MFInt32 IndexedFaceSet_5_1013_colorIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_1013_colorIndex_1()))
				.append(new MFInt32(getIndexedFaceSet_5_1013_colorIndex_2()))
				.append(new MFInt32(getIndexedFaceSet_5_1013_colorIndex_3()))
				.append(new MFInt32(getIndexedFaceSet_5_1013_colorIndex_4()))
				.append(new MFInt32(getIndexedFaceSet_5_1013_colorIndex_5()))
				.append(new MFInt32(getIndexedFaceSet_5_1013_colorIndex_6()))
				.append(new MFInt32(getIndexedFaceSet_5_1013_colorIndex_7()))
				.append(new MFInt32(getIndexedFaceSet_5_1013_colorIndex_8()))
				.append(new MFInt32(getIndexedFaceSet_5_1013_colorIndex_9()))
				.append(new MFInt32(getIndexedFaceSet_5_1013_colorIndex_10()))
				.append(new MFInt32(getIndexedFaceSet_5_1013_colorIndex_11()));
			return IndexedFaceSet_5_1013_colorIndex;
		}
		/** Large attribute array: IndexedFaceSet coordIndex field, scene-graph level=5, element #1013, 10838 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 getIndexedFaceSet_5_1013_coordIndex()
		{
			MFInt32 IndexedFaceSet_5_1013_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_1013_coordIndex_1()))
				.append(new MFInt32(getIndexedFaceSet_5_1013_coordIndex_2()))
				.append(new MFInt32(getIndexedFaceSet_5_1013_coordIndex_3()))
				.append(new MFInt32(getIndexedFaceSet_5_1013_coordIndex_4()))
				.append(new MFInt32(getIndexedFaceSet_5_1013_coordIndex_5()))
				.append(new MFInt32(getIndexedFaceSet_5_1013_coordIndex_6()))
				.append(new MFInt32(getIndexedFaceSet_5_1013_coordIndex_7()))
				.append(new MFInt32(getIndexedFaceSet_5_1013_coordIndex_8()))
				.append(new MFInt32(getIndexedFaceSet_5_1013_coordIndex_9()))
				.append(new MFInt32(getIndexedFaceSet_5_1013_coordIndex_10()))
				.append(new MFInt32(getIndexedFaceSet_5_1013_coordIndex_11()));
			return IndexedFaceSet_5_1013_coordIndex;
		}
		/** Large attribute array: IndexedFaceSet normalIndex field, scene-graph level=5, element #1013, 10838 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 getIndexedFaceSet_5_1013_normalIndex()
		{
			MFInt32 IndexedFaceSet_5_1013_normalIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_5_1013_normalIndex_1()))
				.append(new MFInt32(getIndexedFaceSet_5_1013_normalIndex_2()))
				.append(new MFInt32(getIndexedFaceSet_5_1013_normalIndex_3()))
				.append(new MFInt32(getIndexedFaceSet_5_1013_normalIndex_4()))
				.append(new MFInt32(getIndexedFaceSet_5_1013_normalIndex_5()))
				.append(new MFInt32(getIndexedFaceSet_5_1013_normalIndex_6()))
				.append(new MFInt32(getIndexedFaceSet_5_1013_normalIndex_7()))
				.append(new MFInt32(getIndexedFaceSet_5_1013_normalIndex_8()))
				.append(new MFInt32(getIndexedFaceSet_5_1013_normalIndex_9()))
				.append(new MFInt32(getIndexedFaceSet_5_1013_normalIndex_10()))
				.append(new MFInt32(getIndexedFaceSet_5_1013_normalIndex_11()));
			return IndexedFaceSet_5_1013_normalIndex;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=6, element #1014, 7134 total numbers made up of 2378 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 getCoordinate_6_1014_point()
		{
			MFVec3f Coordinate_6_1014_point = new MFVec3f()/*2.finalize*/
				.append(new MFVec3f(getCoordinate_6_1014_point_1()))
				.append(new MFVec3f(getCoordinate_6_1014_point_2()))
				.append(new MFVec3f(getCoordinate_6_1014_point_3()))
				.append(new MFVec3f(getCoordinate_6_1014_point_4()))
				.append(new MFVec3f(getCoordinate_6_1014_point_5()))
				.append(new MFVec3f(getCoordinate_6_1014_point_6()))
				.append(new MFVec3f(getCoordinate_6_1014_point_7()))
				.append(new MFVec3f(getCoordinate_6_1014_point_8()))
				.append(new MFVec3f(getCoordinate_6_1014_point_9()))
				.append(new MFVec3f(getCoordinate_6_1014_point_10()))
				.append(new MFVec3f(getCoordinate_6_1014_point_11()))
				.append(new MFVec3f(getCoordinate_6_1014_point_12()))
				.append(new MFVec3f(getCoordinate_6_1014_point_13()))
				.append(new MFVec3f(getCoordinate_6_1014_point_14()))
				.append(new MFVec3f(getCoordinate_6_1014_point_15()))
				.append(new MFVec3f(getCoordinate_6_1014_point_16()))
				.append(new MFVec3f(getCoordinate_6_1014_point_17()))
				.append(new MFVec3f(getCoordinate_6_1014_point_18()))
				.append(new MFVec3f(getCoordinate_6_1014_point_19()))
				.append(new MFVec3f(getCoordinate_6_1014_point_20()))
				.append(new MFVec3f(getCoordinate_6_1014_point_21()))
				.append(new MFVec3f(getCoordinate_6_1014_point_22()))
				.append(new MFVec3f(getCoordinate_6_1014_point_23()))
				.append(new MFVec3f(getCoordinate_6_1014_point_24()));
			return Coordinate_6_1014_point;
		}
		/** Large attribute array: Normal vector field, scene-graph level=6, element #1015, 7134 total numbers made up of 2378 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 getNormal_6_1015_vector()
		{
			MFVec3f Normal_6_1015_vector = new MFVec3f()/*2.finalize*/
				.append(new MFVec3f(getNormal_6_1015_vector_1()))
				.append(new MFVec3f(getNormal_6_1015_vector_2()))
				.append(new MFVec3f(getNormal_6_1015_vector_3()))
				.append(new MFVec3f(getNormal_6_1015_vector_4()))
				.append(new MFVec3f(getNormal_6_1015_vector_5()))
				.append(new MFVec3f(getNormal_6_1015_vector_6()))
				.append(new MFVec3f(getNormal_6_1015_vector_7()))
				.append(new MFVec3f(getNormal_6_1015_vector_8()))
				.append(new MFVec3f(getNormal_6_1015_vector_9()))
				.append(new MFVec3f(getNormal_6_1015_vector_10()))
				.append(new MFVec3f(getNormal_6_1015_vector_11()))
				.append(new MFVec3f(getNormal_6_1015_vector_12()))
				.append(new MFVec3f(getNormal_6_1015_vector_13()))
				.append(new MFVec3f(getNormal_6_1015_vector_14()))
				.append(new MFVec3f(getNormal_6_1015_vector_15()))
				.append(new MFVec3f(getNormal_6_1015_vector_16()))
				.append(new MFVec3f(getNormal_6_1015_vector_17()))
				.append(new MFVec3f(getNormal_6_1015_vector_18()))
				.append(new MFVec3f(getNormal_6_1015_vector_19()))
				.append(new MFVec3f(getNormal_6_1015_vector_20()))
				.append(new MFVec3f(getNormal_6_1015_vector_21()))
				.append(new MFVec3f(getNormal_6_1015_vector_22()))
				.append(new MFVec3f(getNormal_6_1015_vector_23()))
				.append(new MFVec3f(getNormal_6_1015_vector_24()));
			return Normal_6_1015_vector;
		}

	/** The initialized model object, created within initialize() method. */
	private X3D x3dModel;

	/** 
	 * Provide a 
	 * <a href="https://dzone.com/articles/java-copy-shallow-vs-deep-in-which-you-will-swim" target="_blank">shallow copy</a>
	 * of the X3D model.
	 * @see <a href="https://www.web3d.org/specifications/java/javadoc/org/web3d/x3d/jsail/Core/X3D.html">X3D</a>
	 * @return Seafighter model
	 */
	public X3D getX3dModel()
	{	  
		return x3dModel;
	}
	   
    /** 
     * Default main() method provided for test purposes, uses CommandLine to set global ConfigurationProperties for this object.
     * @param args array of input parameters, provided as arguments
     * @see <a href="https://www.web3d.org/specifications/java/javadoc/org/web3d/x3d/jsail/Core/X3D.html#handleArguments-java.lang.String:A-">X3D.handleArguments(args)</a>
     * @see <a href="https://www.web3d.org/specifications/java/javadoc/org/web3d/x3d/jsail/Core/X3D.html#validationReport--">X3D.validationReport()</a>
     * @see <a href="https://www.web3d.org/specifications/java/javadoc/org/web3d/x3d/jsail/CommandLine.html">CommandLine</a>
     * @see <a href="https://www.web3d.org/specifications/java/javadoc/org/web3d/x3d/jsail/CommandLine.html#USAGE">CommandLine.USAGE</a>
     * @see <a href="https://www.web3d.org/specifications/java/javadoc/org/web3d/x3d/jsail/ConfigurationProperties.html">ConfigurationProperties</a>
     */
    public static void main(String args[])
    {
        System.out.println("Build this X3D model, showing validation diagnostics...");
        X3D thisExampleX3dModel = new Seafighter().getX3dModel();
//      System.out.println("X3D model construction complete.");
	
        // next handle command line arguments
        boolean hasArguments = (args != null) && (args.length > 0);
        boolean validate = true; // default
        boolean argumentsLoadNewModel = false;
        String  fileName = new String();

        if (args != null)
        {
                for (String arg : args)
                {
                        if (arg.toLowerCase().startsWith("-v") || arg.toLowerCase().contains("validate"))
                        {
                                validate = true; // making sure
                        }
                        if (arg.toLowerCase().endsWith(X3D.FILE_EXTENSION_X3D) ||
                                arg.toLowerCase().endsWith(X3D.FILE_EXTENSION_CLASSICVRML) ||
                                arg.toLowerCase().endsWith(X3D.FILE_EXTENSION_X3DB) ||
                                arg.toLowerCase().endsWith(X3D.FILE_EXTENSION_VRML97) ||
                                arg.toLowerCase().endsWith(X3D.FILE_EXTENSION_EXI) ||
                                arg.toLowerCase().endsWith(X3D.FILE_EXTENSION_GZIP) ||
                                arg.toLowerCase().endsWith(X3D.FILE_EXTENSION_ZIP) ||
                                arg.toLowerCase().endsWith(X3D.FILE_EXTENSION_HTML) ||
                                arg.toLowerCase().endsWith(X3D.FILE_EXTENSION_XHTML))
                        {
                                argumentsLoadNewModel = true;
                                fileName = arg;
                        }
                }
        }
        if      (argumentsLoadNewModel)
                System.out.println("WARNING: \"Savage.ShipsMilitary.Seafighter.Seafighter\" model invocation is attempting to load file \"" + fileName + "\" instead of simply validating itself... file loading ignored.");
        else if (hasArguments) // if no arguments provided, this method produces usage warning
                thisExampleX3dModel.handleArguments(args);
	
        if (validate)
        {
            //  System.out.println("--- TODO fix duplicated outputs ---"); // omit when duplicated outputs problem is solved/refactored
		String validationResults = thisExampleX3dModel.validationReport();
            //  System.out.println("-----------------------------------"); // omit when duplicated outputs problem is solved/refactored
                System.out.print("Savage.ShipsMilitary.Seafighter.Seafighter self-validation test confirmation: ");
                if (!validationResults.equals("success"))
                    System.out.println();
                System.out.println(validationResults.trim());

                // experimental: test X3DJSAIL output files
                // ShipsMilitary/Seafighter/Seafighter_JavaExport.* file validation is checked when building X3D Example Archives
                String filenameX3D  = "ShipsMilitary/Seafighter/Seafighter_JavaExport.x3d"; 
                String filenameX3DV = "ShipsMilitary/Seafighter/Seafighter_JavaExport.x3dv"; 
                String filenameJSON = "ShipsMilitary/Seafighter/Seafighter_JavaExport.json";
                thisExampleX3dModel.toFileX3D        (filenameX3D);
                thisExampleX3dModel.toFileClassicVRML(filenameX3DV);
// TODO         thisExampleX3dModel.toFileJSON       (filenameJSON);
        }
    }
}
