initial commit
authorJohn Tsiombikas <nuclear@member.fsf.org>
Sat, 17 Feb 2024 10:46:38 +0000 (12:46 +0200)
committerJohn Tsiombikas <nuclear@member.fsf.org>
Sat, 17 Feb 2024 10:46:38 +0000 (12:46 +0200)
31 files changed:
.gitignore [new file with mode: 0644]
Makefile [new file with mode: 0644]
README.md [new file with mode: 0644]
bmp_alpha.cpp [new file with mode: 0644]
bmp_alpha.h [new file with mode: 0644]
digits.cpp [new file with mode: 0644]
digits.h [new file with mode: 0644]
ground2.cpp [new file with mode: 0644]
ground2.h [new file with mode: 0644]
j35_draken.cpp [new file with mode: 0644]
j35_draken.h [new file with mode: 0644]
license.txt [new file with mode: 0644]
menus.cpp [new file with mode: 0644]
menus.h [new file with mode: 0644]
resource.h [new file with mode: 0644]
run_irix.csh [new file with mode: 0755]
runway.cpp [new file with mode: 0644]
runway.h [new file with mode: 0644]
saf_bench.cpp [new file with mode: 0644]
saf_bench.dsp [new file with mode: 0644]
saf_bench.dsw [new file with mode: 0644]
saf_bench.rc [new file with mode: 0644]
saf_bench.sln [new file with mode: 0644]
saf_bench.vcproj [new file with mode: 0644]
skybox1.cpp [new file with mode: 0644]
skybox1.h [new file with mode: 0644]
skybox2.cpp [new file with mode: 0644]
skybox2.h [new file with mode: 0644]
tu_95.cpp [new file with mode: 0644]
tu_95.h [new file with mode: 0644]
wglext.h [new file with mode: 0644]

diff --git a/.gitignore b/.gitignore
new file mode 100644 (file)
index 0000000..22d3be1
--- /dev/null
@@ -0,0 +1,10 @@
+*.o
+*.swp
+*.suo
+*.ncb
+*.opt
+assets/
+misc/
+textures/
+*.sit
+score.txt
diff --git a/Makefile b/Makefile
new file mode 100644 (file)
index 0000000..4b469d6
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,14 @@
+obj = saf_bench.o j35_draken.o tu_95.o bmp_alpha.o runway.o skybox1.o \
+         skybox2.o ground2.o digits.o menus.o
+bin = saf_bench
+
+CXX = g++
+CXXFLAGS = -O3 -ffast-math
+LDFLAGS = -lGL -lGLU -lglut
+
+$(bin): $(obj)
+       $(CXX) -o $@ $(obj) $(LDFLAGS)
+
+.PHONY: clean
+clean:
+       rm -f $(obj) $(bin)
diff --git a/README.md b/README.md
new file mode 100644 (file)
index 0000000..04fa51f
--- /dev/null
+++ b/README.md
@@ -0,0 +1,9 @@
+SAF Bench - a portable 3D benchmark for old computers
+=====================================================
+
+It was written in c++ and uses glut or freeglut as its main dependency.
+
+It was created by Patrik.A also know as Nitton Attiofyra on Youtube.
+You can find my YouTube channel here: https://www.youtube.com/@NittonAttiofyra
+
+See `license.txt` for license information.
diff --git a/bmp_alpha.cpp b/bmp_alpha.cpp
new file mode 100644 (file)
index 0000000..a7fc55e
--- /dev/null
@@ -0,0 +1,78 @@
+// License information.
+// The Software "SAF BENCH" was written by Patrik.A, also known as Nitton Attiofyra
+// on YouTube. (https://www.youtube.com/@NittonAttiofyra)
+
+// The software is released in to the Public Domain and comes with no warranty and is used
+// at your own risk!
+
+// Simple 32bit BGRA BMP loader and converter to RGBA (compatible with Mac OS 9)
+
+#include <stdlib.h> // VS 2005 wont compile it if its noth placed here, need to investigate
+#ifdef macintosh
+#include <glut.h>
+#include <gl.h>
+#include <glu.h>
+#else
+#include <GL/glut.h>
+#include <GL/gl.h>
+#include <GL/glu.h>
+#endif
+#include <iostream>
+#include <stdio.h>
+#include <string>
+
+
+
+static int i;
+
+// borrowed code that will load BMP file to be used as texture
+// load BMP texture
+GLuint LoadTexture( const char * filename, int width, int height )
+{
+       GLuint texture;
+       unsigned char * data;
+       FILE * file;
+
+       //The following code will read in our RAW file
+       file = fopen( filename, "rb" );
+       if ( file == NULL ) {
+               fprintf(stderr, "failed to load texture: %s\n", filename);
+               return 0;
+       }
+       data = (unsigned char *)malloc( width * height * 4 );
+
+       fread(data, 138, 1, file);                              // strip BMP buffer and Color information befor reading 32bit BMP BGRA data
+       fread( data,1, width * height * 4, file );              // read BMP data
+       fclose( file );
+
+       // GL_BGR nor GL_BGR_EXT worked on my system, no texturs rendered so I have to make sure the textur data is in RGB format
+       // *.bmp files are BGR formated, this converts the data to RGB
+       for(i = 0; i < width * height * 4; i += 4)
+       {
+               // flip the order of every 3 bytes
+               unsigned char tmp = data[i];
+               data[i] = data[i+2];
+               data[i+2] = tmp;
+       }
+
+
+       glGenTextures( 1, &texture );
+       glBindTexture( GL_TEXTURE_2D, texture );
+       glTexEnvf( GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE );
+
+
+       //even better quality, but this will do for now.
+       glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER,GL_LINEAR );
+       glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER,GL_LINEAR );
+
+
+       //to the edge of our shape.
+       glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT );
+       glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_REPEAT );
+
+       //Generate the texture
+       glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, width, height, 0, GL_RGBA, GL_UNSIGNED_BYTE, data);
+
+       free( data ); //free the texture
+       return texture; //return whether it was successful
+}
diff --git a/bmp_alpha.h b/bmp_alpha.h
new file mode 100644 (file)
index 0000000..35f96c5
--- /dev/null
@@ -0,0 +1,12 @@
+#ifndef BMP_ALPHA_H_
+#define BMP_ALPHA_H_
+// License information.
+// The Software "SAF BENCH" was written by Patrik.A, also known as Nitton Attiofyra
+// on YouTube. (https://www.youtube.com/@NittonAttiofyra)
+
+// The software is released in to the Public Domain and comes with no warranty and is used
+// at your own risk!
+
+GLuint LoadTexture( const char * filename, int width, int height );
+
+#endif /* BMP_ALPHA_H_ */
diff --git a/digits.cpp b/digits.cpp
new file mode 100644 (file)
index 0000000..926cd9c
--- /dev/null
@@ -0,0 +1,238 @@
+// License information.
+// The Software "SAF BENCH" was written by Patrik.A, also known as Nitton Attiofyra
+// on YouTube. (https://www.youtube.com/@NittonAttiofyra)
+
+// The software is released in to the Public Domain and comes with no warranty and is used
+// at your own risk!
+
+#include <stdlib.h> // VS 2005 wont compile it if its noth placed here, need to investigate
+#ifdef macintosh
+#include <glut.h>
+#include <gl.h>
+#include <glu.h>
+#else
+#include <GL/glut.h>
+#include <GL/gl.h>
+#include <GL/glu.h>
+#endif
+#include <iostream>
+#include "digits.h"
+#include "bmp_alpha.h"
+#include <stdio.h>
+
+#define for if(0);else for     // C2374 VC6++ on Alpha bug
+
+#ifdef _WIN32
+#pragma warning( disable : 4305 )
+#define for if(0);else for     // VC6++ on Alpha bug
+#endif
+
+int draw_fps[5];                                               // array that holds up to 5 digits that represents etch digit in the FPS number
+int draw_score[8] = {                                  // array that holds up to 8 digits that represents etch digit in the Score number
+       0, 10, 10, 10,
+       10, 10, 10, 10
+};
+static GLuint textures_digits_1;               // Textures
+
+// Load textures
+void textures_digits()
+{
+#ifdef macintosh
+       textures_digits_1 = LoadTexture(":textures:menu:digits.bmp", 64, 64);
+#else
+       textures_digits_1 = LoadTexture("textures/menu/digits.bmp", 64, 64);
+#endif
+}
+
+// render fps counter on screen
+void render_fps()
+{
+       for (int i = 0; i < 5; ++i)
+       {
+               glEnable(GL_BLEND);
+               glBindTexture( GL_TEXTURE_2D, textures_digits_1 );
+               glEnable(GL_TEXTURE_2D);
+               glBegin(GL_QUADS);
+               glNormal3f(0, 0, 1);
+               glColor3f(1, 1, 1);
+
+               switch(draw_fps[i])
+               {
+                       // draw fps digit 0
+               case 0:
+                       glTexCoord2f(0,-.25);glVertex3f(3 - i, 10, -20);        // Top Left
+                       glTexCoord2f(.25,-.25);glVertex3f(4 - i,10, -20);       // Top Right
+                       glTexCoord2f(.25,0);glVertex3f(4 - i, 11, -20);         // Bottom Rigth
+                       glTexCoord2f(0,0);glVertex3f(3 - i, 11, -20);           // Bottom Left
+                       break;
+                       // draw fps digit 1
+               case 1:
+                       glTexCoord2f(.25,-.25);glVertex3f(3 - i, 10, -20);      // Top Left
+                       glTexCoord2f(.5,-.25);glVertex3f(4 - i,10, -20);        // Top Right
+                       glTexCoord2f(.5,0);glVertex3f(4 - i, 11, -20);          // Bottom Rigth
+                       glTexCoord2f(.25,0);glVertex3f(3 - i, 11, -20);         // Bottom Left
+                       break;
+                       // draw fps digit 2
+               case 2:
+                       glTexCoord2f(.5,-.25);glVertex3f(3 - i, 10, -20);       // Top Left
+                       glTexCoord2f(.75,-.25);glVertex3f(4 - i,10, -20);       // Top Right
+                       glTexCoord2f(.75,0);glVertex3f(4 - i, 11, -20);         // Bottom Rigth
+                       glTexCoord2f(.5,0);glVertex3f(3 - i, 11, -20);          // Bottom Left
+                       break;
+                       // draw fps digit 3
+               case 3:
+                       glTexCoord2f(.75,-.25);glVertex3f(3 - i, 10, -20);              // Top Left
+                       glTexCoord2f(1,-.25);glVertex3f(4 - i,10, -20); // Top Right
+                       glTexCoord2f(1,0);glVertex3f(4 - i, 11, -20);           // Bottom Rigth
+                       glTexCoord2f(.75,0);glVertex3f(3 - i, 11, -20);         // Bottom Left
+                       break;
+                       // draw fps digit 4
+               case 4:
+                       glTexCoord2f(0,-.5);glVertex3f(3 - i, 10, -20);         // Top Left
+                       glTexCoord2f(.25,-.5);glVertex3f(4 - i,10, -20);        // Top Right
+                       glTexCoord2f(.25,-.25);glVertex3f(4 - i, 11, -20);      // Bottom Rigth
+                       glTexCoord2f(0,-.25);glVertex3f(3 - i, 11, -20);        // Bottom Left
+                       break;
+                       // draw fps digit 5
+               case 5:
+                       glTexCoord2f(.25,-.5);glVertex3f(3 - i, 10, -20);       // Top Left
+                       glTexCoord2f(.5,-.5);glVertex3f(4 - i,10, -20);         // Top Right
+                       glTexCoord2f(.5,-.25);glVertex3f(4 - i, 11, -20);       // Bottom Rigth
+                       glTexCoord2f(.25,-.25);glVertex3f(3 - i, 11, -20);      // Bottom Left
+                       break;
+                       // draw fps digit 6
+               case 6:
+                       glTexCoord2f(.5,-.5);glVertex3f(3 - i, 10, -20);        // Top Left
+                       glTexCoord2f(.75,-.5);glVertex3f(4 - i,10, -20);        // Top Right
+                       glTexCoord2f(.75,-.25);glVertex3f(4 - i, 11, -20);      // Bottom Rigth
+                       glTexCoord2f(.5,-.25);glVertex3f(3 - i, 11, -20);       // Bottom Left
+                       break;
+                       // draw fps digit 7
+               case 7:
+                       glTexCoord2f(.75,-.5);glVertex3f(3 - i, 10, -20);       // Top Left
+                       glTexCoord2f(1,-.5);glVertex3f(4 - i,10, -20);          // Top Right
+                       glTexCoord2f(1,-.25);glVertex3f(4 - i, 11, -20);        // Bottom Rigth
+                       glTexCoord2f(.75,-.25);glVertex3f(3 - i, 11, -20);      // Bottom Left
+                       break;
+                       // draw fps digit 8
+               case 8:
+                       glTexCoord2f(0,-.75);glVertex3f(3 - i, 10, -20);        // Top Left
+                       glTexCoord2f(.25,-.75);glVertex3f(4 - i,10, -20);       // Top Right
+                       glTexCoord2f(.25,-.5);glVertex3f(4 - i, 11, -20);       // Bottom Rigth
+                       glTexCoord2f(0,-.5);glVertex3f(3 - i, 11, -20);         // Bottom Left
+                       break;
+                       // draw fps digit 9
+               case 9:
+                       glTexCoord2f(.25,-.75);glVertex3f(3 - i, 10, -20);      // Top Left
+                       glTexCoord2f(.5,-.75);glVertex3f(4 - i,10, -20);        // Top Right
+                       glTexCoord2f(.5,-.5);glVertex3f(4 - i, 11, -20);        // Bottom Rigth
+                       glTexCoord2f(.25,-.5);glVertex3f(3 - i, 11, -20);       // Bottom Left
+                       break;
+               }
+               glEnd();
+       }
+       // Draw the text "FPS" on screen
+       glBegin(GL_QUADS);
+       glNormal3f(0, 0, 1);
+       glColor3f(1, 1, 1);
+       glTexCoord2f(.5,-.75);glVertex3f(4 , 10, -20);  // Top Left
+       glTexCoord2f(1,-.75);glVertex3f(6 ,10, -20);    // Top Right
+       glTexCoord2f(1,-.5);glVertex3f(6 , 11, -20);    // Bottom Rigth
+       glTexCoord2f(.5,-.5);glVertex3f(4 , 11, -20);   // Bottom Left
+       glEnd();
+       glDisable(GL_BLEND);
+       // disable texture
+       glDisable(GL_TEXTURE_2D);
+}
+
+// render score counter on screen
+void render_score()
+{
+       for (int i = 0; i < 8; ++i)
+       {
+               glEnable(GL_BLEND);
+               glBindTexture( GL_TEXTURE_2D, textures_digits_1 );
+               glEnable(GL_TEXTURE_2D);
+               glBegin(GL_QUADS);
+               glNormal3f(0, 0, 1);
+               glColor3f(1, 1, 1);
+
+               switch(draw_score[i])
+               {
+                       // draw fps digit 0
+               case 0:
+                       glTexCoord2f(0,-.25);glVertex3f(5 - i, -2, -12);        // Top Left
+                       glTexCoord2f(.25,-.25);glVertex3f(6 - i, -2, -12);      // Top Right
+                       glTexCoord2f(.25,0);glVertex3f(6 - i, -1, -12);         // Bottom Rigth
+                       glTexCoord2f(0,0);glVertex3f(5 - i, -1, -12);           // Bottom Left
+                       break;
+                       // draw fps digit 1
+               case 1:
+                       glTexCoord2f(.25,-.25);glVertex3f(5 - i, -2, -12);      // Top Left
+                       glTexCoord2f(.5,-.25);glVertex3f(6 - i, -2, -12);       // Top Right
+                       glTexCoord2f(.5,0);glVertex3f(6 - i, -1, -12);          // Bottom Rigth
+                       glTexCoord2f(.25,0);glVertex3f(5 - i, -1, -12);         // Bottom Left
+                       break;
+                       // draw fps digit 2
+               case 2:
+                       glTexCoord2f(.5,-.25);glVertex3f(5 - i, -2, -12);       // Top Left
+                       glTexCoord2f(.75,-.25);glVertex3f(6 - i, -2, -12);      // Top Right
+                       glTexCoord2f(.75,0);glVertex3f(6 - i, -1, -12);         // Bottom Rigth
+                       glTexCoord2f(.5,0);glVertex3f(5 - i, -1, -12);          // Bottom Left
+                       break;
+                       // draw fps digit 3
+               case 3:
+                       glTexCoord2f(.75,-.25);glVertex3f(5 - i, -2, -12);      // Top Left
+                       glTexCoord2f(1,-.25);glVertex3f(6 - i, -2, -12);        // Top Right
+                       glTexCoord2f(1,0);glVertex3f(6 - i, -1, -12);           // Bottom Rigth
+                       glTexCoord2f(.75,0);glVertex3f(5 - i, -1, -12);         // Bottom Left
+                       break;
+                       // draw fps digit 4
+               case 4:
+                       glTexCoord2f(0,-.5);glVertex3f(5 - i, -2, -12);         // Top Left
+                       glTexCoord2f(.25,-.5);glVertex3f(6 - i, -2, -12);       // Top Right
+                       glTexCoord2f(.25,-.25);glVertex3f(6 - i, -1, -12);      // Bottom Rigth
+                       glTexCoord2f(0,-.25);glVertex3f(5 - i, -1, -12);        // Bottom Left
+                       break;
+                       // draw fps digit 5
+               case 5:
+                       glTexCoord2f(.25,-.5);glVertex3f(5 - i, -2, -12);       // Top Left
+                       glTexCoord2f(.5,-.5);glVertex3f(6 - i, -2, -12);        // Top Right
+                       glTexCoord2f(.5,-.25);glVertex3f(6 - i, -1, -12);       // Bottom Rigth
+                       glTexCoord2f(.25,-.25);glVertex3f(5 - i, -1, -12);      // Bottom Left
+                       break;
+                       // draw fps digit 6
+               case 6:
+                       glTexCoord2f(.5,-.5);glVertex3f(5 - i, -2, -12);        // Top Left
+                       glTexCoord2f(.75,-.5);glVertex3f(6 - i, -2, -12);       // Top Right
+                       glTexCoord2f(.75,-.25);glVertex3f(6 - i, -1, -12);      // Bottom Rigth
+                       glTexCoord2f(.5,-.25);glVertex3f(5 - i, -1, -12);       // Bottom Left
+                       break;
+                       // draw fps digit 7
+               case 7:
+                       glTexCoord2f(.75,-.5);glVertex3f(5 - i, -2, -12);       // Top Left
+                       glTexCoord2f(1,-.5);glVertex3f(6 - i, -2, -12);         // Top Right
+                       glTexCoord2f(1,-.25);glVertex3f(6 - i, -1, -12);        // Bottom Rigth
+                       glTexCoord2f(.75,-.25);glVertex3f(5 - i, -1, -12);      // Bottom Left
+                       break;
+                       // draw fps digit 8
+               case 8:
+                       glTexCoord2f(0,-.75);glVertex3f(5 - i, -2, -12);        // Top Left
+                       glTexCoord2f(.25,-.75);glVertex3f(6 - i, -2, -12);      // Top Right
+                       glTexCoord2f(.25,-.5);glVertex3f(6 - i, -1, -12);       // Bottom Rigth
+                       glTexCoord2f(0,-.5);glVertex3f(5 - i, -1, -12);         // Bottom Left
+                       break;
+                       // draw fps digit 9
+               case 9:
+                       glTexCoord2f(.25,-.75);glVertex3f(5 - i, -2, -12);      // Top Left
+                       glTexCoord2f(.5,-.75);glVertex3f(6 - i, -2, -12);       // Top Right
+                       glTexCoord2f(.5,-.5);glVertex3f(6 - i, -1, -12);        // Bottom Rigth
+                       glTexCoord2f(.25,-.5);glVertex3f(5 - i, -1, -12);       // Bottom Left
+                       break;
+               }
+               glEnd();
+               glDisable(GL_BLEND);
+               // disable texture
+               glDisable(GL_TEXTURE_2D);
+       }
+}
diff --git a/digits.h b/digits.h
new file mode 100644 (file)
index 0000000..bfe52a1
--- /dev/null
+++ b/digits.h
@@ -0,0 +1,15 @@
+#ifndef DIGITS_H_
+#define DIGITS_H_
+// License information.
+// The Software "SAF BENCH" was written by Patrik.A, also known as Nitton Attiofyra
+// on YouTube. (https://www.youtube.com/@NittonAttiofyra)
+
+// The software is released in to the Public Domain and comes with no warranty and is used
+// at your own risk!
+
+void textures_digits();                // load textures for the digits
+void render_fps();                     // render frame counter in the demo
+void render_score();           // render the sccore in the main menu
+extern int draw_fps[];         // array that holds up to 5 digits that represents etch digit in the FPS number
+
+#endif /* DIGITS_H_ */
diff --git a/ground2.cpp b/ground2.cpp
new file mode 100644 (file)
index 0000000..252243f
--- /dev/null
@@ -0,0 +1,167 @@
+// License information.
+// The Software "SAF BENCH" was written by Patrik.A, also known as Nitton Attiofyra
+// on YouTube. (https://www.youtube.com/@NittonAttiofyra)
+
+// The software is released in to the Public Domain and comes with no warranty and is used
+// at your own risk!
+
+#include <stdlib.h> // VS 2005 wont compile it if its noth placed here, need to investigate
+#ifdef macintosh
+#include <glut.h>
+#include <gl.h>
+#include <glu.h>
+#else
+#include <GL/glut.h>
+#include <GL/gl.h>
+#include <GL/glu.h>
+#include <iostream>
+#endif
+#include "bmp_alpha.h"
+#include "ground2.h"
+
+static GLuint texture_ground2_1,texture_ground2_2,texture_ground2_3,texture_ground2_4;
+static GLuint texture_ground3_1,texture_ground3_2,texture_ground3_3,texture_ground3_4;
+int draw_ground2 = 1;          // draw ground2 or ground3
+
+
+void textures_ground2()
+{
+#ifdef macintosh
+       texture_ground2_1 = LoadTexture(":textures:ground2:ground2_1.bmp" , 256, 256);
+       texture_ground2_2 = LoadTexture(":textures:ground2:ground2_2.bmp" , 256, 256);
+       texture_ground2_3 = LoadTexture(":textures:ground2:ground2_3.bmp" , 256, 256);
+       texture_ground2_4 = LoadTexture(":textures:ground2:ground2_4.bmp" , 256, 256);
+       texture_ground3_1 = LoadTexture(":textures:ground3:ground3_1.bmp" , 256, 256);
+       texture_ground3_2 = LoadTexture(":textures:ground3:ground3_2.bmp" , 256, 256);
+       texture_ground3_3 = LoadTexture(":textures:ground3:ground3_3.bmp" , 256, 256);
+       texture_ground3_4 = LoadTexture(":textures:ground3:ground3_4.bmp" , 256, 256);
+#else
+       texture_ground2_1 = LoadTexture("textures/ground2/ground2_1.bmp" , 256, 256);
+       texture_ground2_2 = LoadTexture("textures/ground2/ground2_2.bmp" , 256, 256);
+       texture_ground2_3 = LoadTexture("textures/ground2/ground2_3.bmp" , 256, 256);
+       texture_ground2_4 = LoadTexture("textures/ground2/ground2_4.bmp" , 256, 256);
+       texture_ground3_1 = LoadTexture("textures/ground3/ground3_1.bmp" , 256, 256);
+       texture_ground3_2 = LoadTexture("textures/ground3/ground3_2.bmp" , 256, 256);
+       texture_ground3_3 = LoadTexture("textures/ground3/ground3_3.bmp" , 256, 256);
+       texture_ground3_4 = LoadTexture("textures/ground3/ground3_4.bmp" , 256, 256);
+#endif
+
+}
+
+void ground2()
+{
+       // enable blending
+       glEnable(GL_BLEND);
+
+       // Enable culling. Remove one side of the polygons, back or front.
+       glEnable(GL_CULL_FACE);
+       glCullFace(GL_BACK);
+
+       if ( draw_ground2 == 1 )
+       {
+               //draw texture
+               glBindTexture( GL_TEXTURE_2D, texture_ground2_1 );
+               glEnable(GL_TEXTURE_2D);
+
+               glBegin(GL_QUADS);
+               glNormal3f(0, 1, 0);
+               glTexCoord2f(.002,0);glVertex3f(0, 0, 700);
+               glTexCoord2f(.998,0);glVertex3f(0, 0, 0);
+               glTexCoord2f(.998,1);glVertex3f(-700, 0, 0);
+               glTexCoord2f(.002,1);glVertex3f(-700, 0, 700);
+               glEnd();
+
+               //draw texture
+               glBindTexture( GL_TEXTURE_2D, texture_ground2_2 );
+
+               glBegin(GL_QUADS);
+               glNormal3f(0, 1, 0);
+               glTexCoord2f(.002,0);glVertex3f(0, 0, 0);
+               glTexCoord2f(.998,0);glVertex3f(0, 0, -700);
+               glTexCoord2f(.998,1);glVertex3f(-700, 0, -700);
+               glTexCoord2f(.002,1);glVertex3f(-700, 0, 0);
+               glEnd();
+
+               //draw texture
+               glBindTexture( GL_TEXTURE_2D, texture_ground2_3 );
+
+               glBegin(GL_QUADS);
+               glNormal3f(0, 1, 0);
+               glTexCoord2f(.002,0);glVertex3f(700, 0, 700);
+               glTexCoord2f(.998,0);glVertex3f(700, 0, 0);
+               glTexCoord2f(.998,1);glVertex3f(0, 0, 0);
+               glTexCoord2f(.002,1);glVertex3f(0, 0, 700);
+               glEnd();
+
+               //draw texture
+               glBindTexture( GL_TEXTURE_2D, texture_ground2_4 );
+
+               glBegin(GL_QUADS);
+               glNormal3f(0, 1, 0);
+               glTexCoord2f(.002,0);glVertex3f(700, 0, 0);
+               glTexCoord2f(.998,0);glVertex3f(700, 0, -700);
+               glTexCoord2f(.998,1);glVertex3f(0, 0, -700);
+               glTexCoord2f(.002,1);glVertex3f(0, 0, 0);
+               glEnd();
+
+       }
+
+       else if ( draw_ground2 == 0 )
+       {
+               //draw texture
+               glBindTexture( GL_TEXTURE_2D, texture_ground3_1 );
+               glEnable(GL_TEXTURE_2D);
+
+               glBegin(GL_QUADS);
+               glNormal3f(0, 1, 0);
+               glTexCoord2f(.002,0);glVertex3f(0, 0, 2100);
+               glTexCoord2f(.998,0);glVertex3f(0, 0, 0);
+               glTexCoord2f(.998,1);glVertex3f(-2100, 0, 0);
+               glTexCoord2f(.002,1);glVertex3f(-2100, 0, 2100);
+               glEnd();
+
+               //draw texture
+               glBindTexture( GL_TEXTURE_2D, texture_ground3_2 );
+
+               glBegin(GL_QUADS);
+               glNormal3f(0, 1, 0);
+               glTexCoord2f(.002,0);glVertex3f(0, 0, 0);
+               glTexCoord2f(.998,0);glVertex3f(0, 0, -2100);
+               glTexCoord2f(.998,1);glVertex3f(-2100, 0, -2100);
+               glTexCoord2f(.002,1);glVertex3f(-2100, 0, 0);
+               glEnd();
+
+               //draw texture
+               glBindTexture( GL_TEXTURE_2D, texture_ground3_3 );
+               glEnable(GL_TEXTURE_2D);
+
+               glBegin(GL_QUADS);
+               glNormal3f(0, 1, 0);
+               glTexCoord2f(.002,0);glVertex3f(2100, 0, 2100);
+               glTexCoord2f(.998,0);glVertex3f(2100, 0, 0);
+               glTexCoord2f(.998,1);glVertex3f(00, 0, 0);
+               glTexCoord2f(.002,1);glVertex3f(0, 0, 2100);
+               glEnd();
+
+               //draw texture
+               glBindTexture( GL_TEXTURE_2D, texture_ground3_4 );
+               glEnable(GL_TEXTURE_2D);
+
+               glBegin(GL_QUADS);
+               glNormal3f(0, 1, 0);
+               glTexCoord2f(.002,0);glVertex3f(2100, 0, 0);
+               glTexCoord2f(.998,0);glVertex3f(2100, 0, -2100);
+               glTexCoord2f(.998,1);glVertex3f(0, 0, -2100);
+               glTexCoord2f(.002,1);glVertex3f(0, 0, 0);
+               glEnd();
+       }
+
+       // disable texture
+       glDisable(GL_TEXTURE_2D);
+
+       // disable culling
+       glDisable(GL_CULL_FACE);
+
+       // disable blending
+       glDisable (GL_BLEND);
+}
diff --git a/ground2.h b/ground2.h
new file mode 100644 (file)
index 0000000..7afa5e6
--- /dev/null
+++ b/ground2.h
@@ -0,0 +1,14 @@
+#ifndef GROUND2_H_
+#define GROUND2_H_
+// License information.
+// The Software "SAF BENCH" was written by Patrik.A, also known as Nitton Attiofyra
+// on YouTube. (https://www.youtube.com/@NittonAttiofyra)
+
+// The software is released in to the Public Domain and comes with no warranty and is used
+// at your own risk!
+
+void textures_ground2();
+void ground2();
+extern int draw_ground2;
+
+#endif /* GROUND2_H_ */
diff --git a/j35_draken.cpp b/j35_draken.cpp
new file mode 100644 (file)
index 0000000..b15ff70
--- /dev/null
@@ -0,0 +1,415 @@
+// License information.
+// The Software "SAF BENCH" was written by Patrik.A, also known as Nitton Attiofyra
+// on YouTube. (https://www.youtube.com/@NittonAttiofyra)
+
+// The software is released in to the Public Domain and comes with no warranty and is used
+// at your own risk!
+
+#include <stdlib.h> // VS 2005 wont compile it if its noth placed here, need to investigate
+#ifdef macintosh
+#include <glut.h>
+#include <gl.h>
+#include <glu.h>
+#else
+#include <GL/glut.h>
+#include <GL/gl.h>
+#include <GL/glu.h>
+#endif
+#include <iostream>
+#include "j35_draken.h"
+#include "bmp_alpha.h"
+#include <stdio.h>
+
+#define for if(0);else for     // C2374 VC6++ on Alpha bug
+
+#ifdef _WIN32
+#pragma warning( disable : 4305 )
+#endif
+static GLuint texture_draken_1, texture_draken_2, texture_draken_3, texture_contrail_draken;           // Textures
+
+int draken_wheels = 1;                 // toggle landing gear visible or hidden
+int draken_ab_on = 1;                  // toggle after burner on and off
+int draken_contrail = 0;               // toggle contrail visible or hidden
+
+// x position of contrail smoke puffs
+GLfloat contrail_draken_x[50];
+
+float modelview_contrail_draken[16];           // used for billboarding
+
+// Load textures
+void textures_draken()
+{
+#ifdef macintosh
+       texture_draken_1 = LoadTexture(":textures:draken:j35_draken.bmp", 256, 256);
+       texture_draken_2 = LoadTexture(":textures:draken:j35_draken_w.bmp", 256, 256);
+       texture_draken_3 = LoadTexture(":textures:draken:j35_draken_sw.bmp", 128, 128);
+       texture_contrail_draken = LoadTexture(":textures:draken:contrail2.bmp", 128, 128);
+#else
+       texture_draken_1 = LoadTexture("textures/draken/j35_draken.bmp", 256, 256);
+       texture_draken_2 = LoadTexture("textures/draken/j35_draken_w.bmp", 256, 256);
+       texture_draken_3 = LoadTexture("textures/draken/j35_draken_sw.bmp", 128, 128);
+       texture_contrail_draken = LoadTexture("textures/draken/contrail2.bmp", 128, 128);
+#endif
+}
+
+// draw the geometry of the J 35 Draken Plane
+void j35_draken()
+{
+       // Enable culling. Remove one side of the polygons, back or front.
+       glEnable(GL_CULL_FACE);
+       glCullFace(GL_BACK);
+
+       // Drawing is done by specifying a sequence of vertices.  The way these
+       // vertices are connected (or not connected) depends on the argument to
+       // glBegin.  GL_POLYGON constructs a filled polygon.
+
+
+       //------------------------------------------------------------------------------------------------------------------------------------------------------------------//
+
+       // draw texture_draken_1
+       glBindTexture( GL_TEXTURE_2D, texture_draken_1 );
+       glEnable(GL_TEXTURE_2D);
+
+       // enable blending
+       //      glEnable(GL_BLEND);
+
+       //       Set color
+       //      glColor3f(.5, .3, 1);
+
+       // set vertices for Draken plane
+       static GLfloat j_35_draken_vertices[] = {-2.866523, 1.151904, -0.83094, -5.753829, 0.937475, -0.366076, -5.74397, 1.203261, -0.452495, -2.897654, 1.858814, -0.256775, -5.728313, 1.639982, 0.139827, -2.897654, 1.858814, 0.256774, -2.866524, 1.151904, 0.830939, -5.753829, 0.937475, 0.366074, -2.847283, 0.71501, 0.672244, -2.847283, 0.71501, -0.672245, -5.759922, 0.77321, -0.139829, -5.753829, 0.937475, -0.366076, -2.897654, 1.858814, -0.256775, -5.734113, 1.469047, -0.366076, -5.72802, 1.633312, -0.139829, -2.885763, 1.588798, 0.672244, -5.74397, 1.203261, 0.452493, -2.866524, 1.151904, 0.830939, -2.835392, 0.444995, -0.256775, -5.759922, 0.77321, 0.139827, -5.759922, 0.77321, -0.139829, -2.885763, 1.588798, -0.672245, -5.74397, 1.203261, -0.452495, -5.734113, 1.469047, -0.366076, -2.897654, 1.858814, 0.256774, -5.734113, 1.469048, 0.366074, -2.885763, 1.588798, 0.672244, -2.847283, 0.71501, 0.672244, -5.759922, 0.77321, 0.139827, -2.835392, 0.444995, 0.256774, 2.803409, 0.797688, 0.570297, 6.63912, 1.203691, 0.400755, 2.784208, 1.233681, 0.704925, -0.664545, 0.746947, -0.7103, 2.784209, 1.233681, -0.704924, 2.803409, 0.797688, -0.570295, -0.714875, 1.889839, 0.271311, 2.753142, 1.939132, -0.217833, -0.714875, 1.889839, -0.271311, -0.664545, 0.746947, 0.7103, 2.784208, 1.233681, 0.704925, -0.683769, 1.183493, 0.877979, -0.652663, 0.477147, -0.271311, 2.803409, 0.797688, -0.570295, 2.815275, 0.52823, -0.217833, -0.714875, 1.889839, -0.271311, 2.763227, 1.710122, -0.570295, -0.703682, 1.635663, -0.7103, -0.683769, 1.183493, 0.877979, 2.763227, 1.710122, 0.570297, -0.703682, 1.635663, 0.7103, -0.652663, 0.477147, 0.27131, 2.815275, 0.52823, -0.217833, 2.815275, 0.52823, 0.217834, -0.683769, 1.183493, -0.877979, 2.763227, 1.710122, -0.570295, 2.784209, 1.233681, -0.704924, -0.714875, 1.889839, 0.271311, 2.763227, 1.710122, 0.570297, 2.753142, 1.939132, 0.217834, 7.505599, 0.93903, -0.082576, 7.509434, 1.03603, -0.216189, 8.286513, 1.13648, 1e-06, 2.815275, 0.52823, -0.217833, 6.630013, 0.963845, -0.324216, 6.624384, 0.815613, -0.123839, 2.763227, 1.710122, -0.570295, 6.653854, 1.591768, -0.123839, 6.647461, 1.460872, -0.324216, 2.784208, 1.233681, 0.704925, 6.647462, 1.460872, 0.324218, 2.763227, 1.710122, 0.570297, 2.815275, 0.52823, 0.217834, 6.624384, 0.815613, -0.123839, 6.624384, 0.815613, 0.123841, 2.784209, 1.233681, -0.704924, 6.647461, 1.460872, -0.324216, 6.63912, 1.203691, -0.400753, 2.763227, 1.710122, 0.570297, 6.653854, 1.591768, 0.123841, 2.753142, 1.939132, 0.217834, 2.815275, 0.52823, 0.217834, 6.630013, 0.963845, 0.324218, 2.803409, 0.797688, 0.570297, 2.803409, 0.797688, -0.570295, 6.63912, 1.203691, -0.400753, 6.630013, 0.963845, -0.324216, 2.753142, 1.939132, 0.217834, 6.653854, 1.591768, -0.123839, 2.753142, 1.939132, -0.217833, 7.521842, 1.349927, -0.216189, 7.525676, 1.446927, -0.082576, 8.288769, 1.193526, 1e-06, 7.521842, 1.349927, 0.216191, 8.287642, 1.165003, 0.030016, 8.288769, 1.193526, 1e-06, 7.505599, 0.93903, 0.082579, 7.505599, 0.93903, -0.082576, 8.286513, 1.13648, 1e-06, 7.521842, 1.349927, -0.216189, 8.287642, 1.165003, -0.030013, 7.515638, 1.192978, -0.267224, 7.525676, 1.446927, 0.082579, 7.521842, 1.349927, 0.216191, 8.288769, 1.193526, 1e-06, 7.509434, 1.03603, 0.216191, 7.505599, 0.93903, 0.082579, 8.286513, 1.13648, 1e-06, 7.509434, 1.03603, -0.216189, 8.287642, 1.165003, -0.030013, 8.286513, 1.13648, 1e-06, 7.525676, 1.446927, -0.082576, 7.525676, 1.446927, 0.082579, 8.288769, 1.193526, 1e-06, 7.509434, 1.03603, 0.216191, 8.287642, 1.165003, 0.030016, 7.515638, 1.192978, 0.267227, 6.647462, 1.460872, 0.324218, 7.515638, 1.192978, 0.267227, 7.521842, 1.349927, 0.216191, 6.624384, 0.815613, 0.123841, 7.505599, 0.93903, -0.082576, 7.505599, 0.93903, 0.082579, 6.647461, 1.460872, -0.324216, 7.515638, 1.192978, -0.267224, 6.63912, 1.203691, -0.400753, 6.653854, 1.591768, 0.123841, 7.521842, 1.349927, 0.216191, 7.525676, 1.446927, 0.082579, 6.630013, 0.963845, 0.324218, 7.505599, 0.93903, 0.082579, 7.509434, 1.03603, 0.216191, 6.63912, 1.203691, -0.400753, 7.509434, 1.03603, -0.216189, 6.630013, 0.963845, -0.324216, 6.653854, 1.591768, 0.123841, 7.525676, 1.446927, -0.082576, 6.653854, 1.591768, -0.123839, 6.63912, 1.203691, 0.400755, 7.509434, 1.03603, 0.216191, 7.515638, 1.192978, 0.267227, 6.653854, 1.591768, -0.123839, 7.521842, 1.349927, -0.216189, 6.647461, 1.460872, -0.324216, 6.630013, 0.963845, -0.324216, 7.505599, 0.93903, -0.082576, 6.624384, 0.815613, -0.123839, -0.652663, 0.477147, 0.27131, 2.803409, 0.797688, 0.570297, -0.664545, 0.746947, 0.7103, -2.835392, 0.444995, 0.256774, -0.664545, 0.746947, 0.7103, -2.847283, 0.71501, 0.672244, -2.885763, 1.588798, 0.672244, -0.714875, 1.889839, 0.271311, -2.897654, 1.858814, 0.256774, -2.866523, 1.151904, -0.83094, -0.703682, 1.635663, -0.7103, -0.683769, 1.183493, -0.877979, -2.835392, 0.444995, 0.256774, -0.652663, 0.477147, -0.271311, -0.652663, 0.477147, 0.27131, -2.866524, 1.151904, 0.830939, -0.703682, 1.635663, 0.7103, -2.885763, 1.588798, 0.672244, -2.885763, 1.588798, -0.672245, -0.714875, 1.889839, -0.271311, -0.703682, 1.635663, -0.7103, -2.835392, 0.444995, -0.256775, -0.664545, 0.746947, -0.7103, -0.652663, 0.477147, -0.271311, -2.847283, 0.71501, 0.672244, -0.683769, 1.183493, 0.877979, -2.866524, 1.151904, 0.830939, -2.897654, 1.858814, 0.256774, -0.714875, 1.889839, -0.271311, -2.897654, 1.858814, -0.256775, -2.847283, 0.71501, -0.672245, -0.683769, 1.183493, -0.877979, -0.664545, 0.746947, -0.7103, -5.75736, 0.842518, 0.117327, -5.824749, 0.982742, 0.307168, -5.829863, 0.844909, 0.117327, -5.752247, 0.980351, -0.30717, -5.816478, 1.20576, -0.379682, -5.743975, 1.203369, -0.379682, -5.730837, 1.569815, 0.117327, -5.803093, 1.56661, -0.117329, -5.80334, 1.572206, 0.117327, -5.752247, 0.980351, 0.307168, -5.816478, 1.20576, 0.379681, -5.824749, 0.982742, 0.307168, -5.75736, 0.842518, -0.117329, -5.824749, 0.982742, -0.30717, -5.752247, 0.980351, -0.30717, -5.735704, 1.426386, -0.30717, -5.803093, 1.56661, -0.117329, -5.730591, 1.564219, -0.117329, -5.743975, 1.203369, 0.379681, -5.808206, 1.428777, 0.307168, -5.816478, 1.20576, 0.379681, -5.75736, 0.842518, -0.117329, -5.829863, 0.844909, 0.117327, -5.829863, 0.844909, -0.117329, -5.743975, 1.203369, -0.379682, -5.808206, 1.428777, -0.30717, -5.735704, 1.426386, -0.30717, -5.735704, 1.426386, 0.307168, -5.80334, 1.572206, 0.117327, -5.808206, 1.428777, 0.307168, -5.803625, 1.55236, -0.112689, -5.65364, 1.548995, 0.112687, -5.803862, 1.557735, 0.112687, -5.824421, 0.991585, 0.295019, -5.666257, 1.197041, 0.364664, -5.674199, 0.982844, 0.295019, -5.829336, 0.859203, -0.112689, -5.674199, 0.982844, -0.295021, -5.824421, 0.991585, -0.295021, -5.808536, 1.419979, -0.295021, -5.653403, 1.54362, -0.112689, -5.803625, 1.55236, -0.112689, -5.816478, 1.205782, 0.364664, -5.658314, 1.411238, 0.295019, -5.666257, 1.197041, 0.364664, -5.829336, 0.859203, 0.112687, -5.679114, 0.850463, -0.112689, -5.829336, 0.859203, -0.112689, -5.816478, 1.205782, -0.364666, -5.658314, 1.411238, -0.295021, -5.808536, 1.419979, -0.295021, -5.808536, 1.419979, 0.295019, -5.65364, 1.548995, 0.112687, -5.658314, 1.411238, 0.295019, -5.829336, 0.859203, 0.112687, -5.674199, 0.982844, 0.295019, -5.679114, 0.850463, 0.112687, -5.824421, 0.991585, -0.295021, -5.666257, 1.197041, -0.364666, -5.816478, 1.205782, -0.364666, -5.74397, 1.203261, 0.452493, -5.752247, 0.980351, 0.307168, -5.753829, 0.937475, 0.366074, -5.753829, 0.937475, -0.366076, -5.75736, 0.842518, -0.117329, -5.752247, 0.980351, -0.30717, -5.72802, 1.633312, -0.139829, -5.735704, 1.426386, -0.30717, -5.730591, 1.564219, -0.117329, -5.734113, 1.469048, 0.366074, -5.743975, 1.203369, 0.379681, -5.74397, 1.203261, 0.452493, -5.759922, 0.77321, 0.139827, -5.75736, 0.842518, -0.117329, -5.759922, 0.77321, -0.139829, -5.734113, 1.469047, -0.366076, -5.743975, 1.203369, -0.379682, -5.735704, 1.426386, -0.30717, -5.734113, 1.469048, 0.366074, -5.730837, 1.569815, 0.117327, -5.735704, 1.426386, 0.307168, -5.753829, 0.937475, 0.366074, -5.75736, 0.842518, 0.117327, -5.759922, 0.77321, 0.139827, -5.74397, 1.203261, -0.452495, -5.752247, 0.980351, -0.30717, -5.743975, 1.203369, -0.379682, -5.72802, 1.633312, -0.139829, -5.730837, 1.569815, 0.117327, -5.728313, 1.639982, 0.139827, -5.679114, 0.850463, 0.112687, -5.666281, 1.197579, -1e-06, -5.679114, 0.850463, -0.112689, -5.658314, 1.411238, -0.295021, -5.666281, 1.197579, -1e-06, -5.653403, 1.54362, -0.112689, -5.65364, 1.548995, 0.112687, -5.666281, 1.197579, -1e-06, -5.658314, 1.411238, 0.295019, -5.674199, 0.982844, -0.295021, -5.666281, 1.197579, -1e-06, -5.666257, 1.197041, -0.364666, -5.666257, 1.197041, 0.364664, -5.666281, 1.197579, -1e-06, -5.674199, 0.982844, 0.295019, -5.816478, 1.20576, -0.379682, -5.824421, 0.991585, -0.295021, -5.816478, 1.205782, -0.364666, -5.803093, 1.56661, -0.117329, -5.803862, 1.557735, 0.112687, -5.80334, 1.572206, 0.117327, -5.816478, 1.20576, 0.379681, -5.824421, 0.991585, 0.295019, -5.824749, 0.982742, 0.307168, -5.824749, 0.982742, -0.30717, -5.829336, 0.859203, -0.112689, -5.824421, 0.991585, -0.295021, -5.803093, 1.56661, -0.117329, -5.808536, 1.419979, -0.295021, -5.803625, 1.55236, -0.112689, -5.808206, 1.428777, 0.307168, -5.816478, 1.205782, 0.364664, -5.816478, 1.20576, 0.379681, -5.829863, 0.844909, -0.117329, -5.829336, 0.859203, 0.112687, -5.829336, 0.859203, -0.112689, -5.808206, 1.428777, -0.30717, -5.816478, 1.205782, -0.364666, -5.808536, 1.419979, -0.295021, -5.808206, 1.428777, 0.307168, -5.803862, 1.557735, 0.112687, -5.808536, 1.419979, 0.295019, -5.824749, 0.982742, 0.307168, -5.829336, 0.859203, 0.112687, -5.829863, 0.844909, 0.117327, 8.287642, 1.165003, 0.030016, 8.286513, 1.13648, 1e-06, 9.27657, 1.141859, 2e-06, 8.287642, 1.165003, -0.030013, 8.288769, 1.193526, 1e-06, 9.27657, 1.141859, 2e-06, 8.286513, 1.13648, 1e-06, 8.287642, 1.165003, -0.030013, 9.27657, 1.141859, 2e-06, 8.288769, 1.193526, 1e-06, 8.287642, 1.165003, 0.030016, 9.27657, 1.141859, 2e-06, -3.467997, 0.331185, -0.141961, -4.110527, 0.328942, 0.14196, -4.110527, 0.328942, -0.141961, -4.110527, 0.328942, -0.141961, -4.729508, 0.449314, 0.126578, -4.729508, 0.449314, -0.126579, -4.729508, 0.449314, -0.126579, -5.590106, 0.666151, 0.100147, -5.590106, 0.666151, -0.100148, -5.590106, 0.666151, -0.100148, -5.632627, 0.777173, 0.100147, -5.632627, 0.777173, -0.100148, -4.729508, 0.449314, -0.126579, -4.123545, 0.624553, -0.225209, -4.110527, 0.328942, -0.141961, -3.476769, 0.530383, -0.189576, -2.771752, 0.466606, -0.108226, -3.467997, 0.331185, -0.141961, -5.590106, 0.666151, -0.100148, -4.741275, 0.716498, -0.205316, -4.729508, 0.449314, -0.126579, -4.110527, 0.328942, -0.141961, -3.476769, 0.530383, -0.189576, -3.467997, 0.331185, -0.141961, -5.632627, 0.777173, -0.100148, -5.596455, 0.810342, -0.137615, -5.590106, 0.666151, -0.100148, -4.729508, 0.449314, 0.126578, -4.123545, 0.624553, 0.225208, -4.741275, 0.716498, 0.205315, -2.771752, 0.466606, 0.108225, -3.476769, 0.530383, 0.189576, -3.467997, 0.331185, 0.14196, -5.590106, 0.666151, 0.100147, -4.741275, 0.716498, 0.205315, -5.596455, 0.810342, 0.137613, -4.110527, 0.328942, 0.14196, -3.476769, 0.530383, 0.189576, -4.123545, 0.624553, 0.225208, -5.632627, 0.777173, 0.100147, -5.596455, 0.810342, 0.137613, -5.635414, 0.840466, 0.120957, -2.771752, 0.466606, -0.108226, -3.467997, 0.331185, 0.14196, -3.467997, 0.331185, -0.141961, 2.870295, 2.094299, 0.0, -3.882923, 1.946169, -0.093246, -3.884271, 1.976773, -1e-06, 2.871579, 2.065141, -0.132035, -3.879241, 1.862557, -0.161507, -3.882923, 1.946169, -0.093246, 2.875087, 1.985479, -0.228692, -3.874211, 1.748342, -0.186492, -3.879241, 1.862557, -0.161507, -3.874211, 1.748342, 0.186491, 2.875087, 1.985479, 0.228693, -3.879241, 1.862557, 0.161506, -3.879241, 1.862557, 0.161506, 2.871579, 2.065141, 0.132036, -3.882923, 1.946169, 0.093246, -3.882923, 1.946169, 0.093246, 2.870295, 2.094299, 0.0, -3.884271, 1.976773, -1e-06, 2.871579, 2.065141, 0.132036, 4.355356, 2.131386, 0.0, 2.870295, 2.094299, 0.0, 2.875087, 1.985479, -0.228692, 4.357831, 2.075186, -0.155332, 4.364592, 1.921643, -0.269043, 2.871579, 2.065141, -0.132035, 4.355356, 2.131386, 0.0, 4.357831, 2.075186, -0.155332, 2.879879, 1.876659, 0.264072, 4.364592, 1.921643, 0.269044, 2.875087, 1.985479, 0.228693, 2.879879, 1.876659, -0.264071, 4.364592, 1.921643, -0.269043, 4.375865, 1.665675, -0.29535, 2.875087, 1.985479, 0.228693, 4.357831, 2.075186, 0.155333, 2.871579, 2.065141, 0.132036, 4.355356, 2.131386, 0.0, 4.82426, 2.113887, 0.155333, 4.850295, 2.182007, 0.0, 4.364592, 1.921643, 0.269044, 4.658138, 1.624434, 0.295351, 4.753134, 1.927778, 0.269044, 4.357831, 2.075186, -0.155332, 4.753134, 1.927778, -0.269043, 4.364592, 1.921643, -0.269043, 4.357831, 2.075186, 0.155333, 4.753134, 1.927778, 0.269044, 4.82426, 2.113887, 0.155333, 4.364592, 1.921643, -0.269043, 4.658138, 1.624434, -0.29535, 4.375865, 1.665675, -0.29535, 4.355356, 2.131386, 0.0, 4.82426, 2.113887, -0.155332, 4.357831, 2.075186, -0.155332, -3.882923, 1.946169, 0.093246, -5.173563, 1.878312, -1e-06, -5.456889, 1.835171, 0.032031, -3.879241, 1.862557, -0.161507, -5.456889, 1.835171, -0.032032, -3.882923, 1.946169, -0.093246, -3.882923, 1.946169, -0.093246, -5.173563, 1.878312, -1e-06, -3.884271, 1.976773, -1e-06, -3.874211, 1.748342, 0.186491, -5.47006, 1.750817, 0.042365, -5.46503, 1.636602, 0.048919, -3.874211, 1.748342, -0.186492, -5.47006, 1.750818, -0.042367, -3.879241, 1.862557, -0.161507, -3.879241, 1.862557, 0.161506, -5.456889, 1.835171, 0.032031, -5.47006, 1.750817, 0.042365, -5.173563, 1.878312, -1e-06, -5.456889, 1.835171, -0.032032, -5.456889, 1.835171, 0.032031, -5.47006, 1.750818, -0.042367, -5.456889, 1.835171, 0.032031, -5.456889, 1.835171, -0.032032, -5.46503, 1.636602, -0.048921, -5.47006, 1.750817, 0.042365, -5.47006, 1.750818, -0.042367, -0.210443, 1.980484, -0.090731, -4.023537, 3.623317, -0.0, 0.029999, 1.991073, -0.0, -4.26398, 3.612728, -0.039704, -4.408911, 1.795593, -0.013919, -5.130715, 3.574559, -0.007441, -0.210443, 1.980484, 0.090731, -4.023537, 3.623317, -0.0, -4.26398, 3.612728, 0.039703, -4.26398, 3.612728, 0.039703, -4.408911, 1.795593, 0.013918, -0.210443, 1.980484, 0.090731, -4.26398, 3.612728, -0.039704, -5.130715, 3.574559, 0.00744, -4.26398, 3.612728, 0.039703, -4.023537, 3.623317, -0.0, -4.26398, 3.612728, -0.039704, -4.26398, 3.612728, 0.039703, -5.130715, 3.574559, -0.007441, -4.408911, 1.795593, 0.013918, -5.130715, 3.574559, 0.00744, -3.548063, 3.617257, -0.0, -4.018157, 3.586363, 0.010181, -3.547615, 3.607085, 0.010181, -4.018157, 3.586363, -0.010182, -3.547167, 3.596912, -0.0, -4.017709, 3.576191, -0.0, -3.547615, 3.607085, -0.010182, -3.547615, 3.607085, 0.010181, -3.547167, 3.596912, -0.0, -4.018157, 3.586363, 0.010181, -3.547167, 3.596912, -0.0, -3.547615, 3.607085, 0.010181, -4.018157, 3.586363, -0.010182, -3.548063, 3.617257, -0.0, -3.547615, 3.607085, -0.010182, 0.489317, 1.17064, -2.094471, 2.728156, 1.230057, -1.801172, 0.492004, 1.109609, -2.195389, -3.795464, 0.953671, -2.195389, 0.500177, 0.909478, -1.35704, -4.149508, 0.93808, -1.35704, 0.476273, 1.470539, -0.518691, 2.717323, 1.487674, -1.161437, 0.481758, 1.327729, -1.35704, 0.494692, 1.048578, -2.094471, -3.014883, 0.979118, -4.57695, 0.492004, 1.109609, -2.195389, -3.795464, 0.953671, -2.195389, -3.137354, 0.944164, -4.620153, 0.494692, 1.048578, -2.094471, 4.612971, 1.030247, -0.974134, 5.22289, 1.201881, -1.163158, 5.215414, 1.127407, -0.938829, 4.590385, 1.561489, -0.974134, 5.248537, 1.452744, -0.700171, 5.251583, 1.483119, -0.938829, 4.592871, 1.448442, -1.312637, 5.233507, 1.305399, -1.281311, 4.598861, 1.312439, -1.417348, 0.500177, 0.909478, -1.35704, 2.731657, 1.15057, -1.745648, 2.740011, 0.972486, -1.161437, 3.78503, 1.437567, -1.499099, 4.598861, 1.312439, -1.417348, 3.790891, 1.304479, -1.58263, 3.781424, 1.577991, -1.039728, 4.591673, 1.570506, -0.618094, 4.590385, 1.561489, -0.974134, 3.807721, 0.98084, -1.05479, 4.605513, 1.161389, -1.312637, 4.612971, 1.030247, -0.974134, 3.797201, 1.16118, -1.499099, 4.598861, 1.312439, -1.417348, 4.605513, 1.161389, -1.312637, 4.605513, 1.161389, -1.312637, 5.233507, 1.305399, -1.281311, 5.22289, 1.201881, -1.163158, 0.489317, 1.17064, -2.094471, -3.014883, 0.979118, -4.57695, -3.139779, 0.999237, -4.620153, 0.494692, 1.048578, -2.094471, 2.728156, 1.230057, -1.801172, 2.731657, 1.15057, -1.745648, 3.807721, 0.98084, -1.05479, 4.61384, 1.048785, -0.646545, 3.8121, 0.939938, -0.508631, 3.781424, 1.577991, -1.039728, 4.592871, 1.448442, -1.312637, 3.78503, 1.437567, -1.499099, 0.506708, 0.77942, -0.518691, 2.740011, 0.972486, -1.161437, 2.745991, 0.848304, -0.480846, 4.590385, 1.561489, -0.974134, 5.244503, 1.412697, -1.211423, 4.592871, 1.448442, -1.312637, 4.612971, 1.030247, -0.974134, 5.219202, 1.165071, -0.71463, 4.61384, 1.048785, -0.646545, 0.481758, 1.327729, -1.35704, 2.724656, 1.309544, -1.745648, 0.489317, 1.17064, -2.094471, -4.149508, 0.93808, -1.35704, 0.506708, 0.77942, -0.518691, -4.503555, 0.922488, -0.518691, 4.610616, 1.121984, -0.53609, 4.610616, 1.121984, -0.455911, 3.8121, 0.939938, -0.508631, 3.782388, 1.614644, -0.492431, 4.597436, 1.421265, -0.44587, 4.597952, 1.409562, -0.526048, 4.61384, 1.048785, -0.646545, 4.610616, 1.121984, -0.53609, 3.8121, 0.939938, -0.508631, 4.597952, 1.409562, -0.526048, 4.591673, 1.570506, -0.618094, 3.782388, 1.614644, -0.492431, 5.102211, 1.307846, -0.547114, 5.248537, 1.452744, -0.700171, 4.591673, 1.570506, -0.618094, 5.219202, 1.165071, -0.71463, 5.102211, 1.307846, -0.547114, 4.61384, 1.048785, -0.646545, 5.22289, 1.201881, -1.163158, 5.24252, 1.30255, -1.259644, 5.231511, 1.207906, -1.149143, 5.244503, 1.412697, -1.211423, 5.24252, 1.30255, -1.259644, 5.233507, 1.305399, -1.281311, 5.219202, 1.165071, -0.71463, 5.241079, 1.29175, -0.646756, 5.232111, 1.293587, -0.625976, 5.215414, 1.127407, -0.938829, 5.231511, 1.207906, -1.149143, 5.223754, 1.139816, -0.939345, 5.215414, 1.127407, -0.938829, 5.227685, 1.174251, -0.729668, 5.219202, 1.165071, -0.71463, 5.251583, 1.483119, -0.938829, 5.258105, 1.437266, -0.716145, 5.261266, 1.465036, -0.939345, 5.251583, 1.483119, -0.938829, 5.253921, 1.400651, -1.194283, 5.244503, 1.412697, -1.211423, 5.248537, 1.452744, -0.700171, 5.241079, 1.29175, -0.646756, 5.258105, 1.437266, -0.716145, 5.20816, 1.156318, -0.940208, 3.479629, 1.198701, -0.741486, 5.211674, 1.187311, -0.751498, 5.235131, 1.391084, -1.169652, 3.491081, 1.491195, -0.951163, 3.488635, 1.426438, -1.206101, 5.20816, 1.156318, -0.940208, 3.480895, 1.232549, -1.160962, 3.478319, 1.164068, -0.951163, 2.717323, 1.487674, -1.161437, 3.78503, 1.437567, -1.499099, 2.724656, 1.309544, -1.745648, 2.745991, 0.848304, -0.480846, 3.807721, 0.98084, -1.05479, 3.8121, 0.939938, -0.508631, 2.731657, 1.15057, -1.745648, 3.790891, 1.304479, -1.58263, 3.797201, 1.16118, -1.499099, 2.740011, 0.972486, -1.161437, 3.797201, 1.16118, -1.499099, 3.807721, 0.98084, -1.05479, 2.713848, 1.578195, -0.480846, 3.781424, 1.577991, -1.039728, 2.717323, 1.487674, -1.161437, 2.724656, 1.309544, -1.745648, 3.790891, 1.304479, -1.58263, 2.728156, 1.230057, -1.801172, 5.102211, 1.307846, -0.547114, 4.591673, 1.570506, -0.618094, 4.597952, 1.409562, -0.526048, 4.610616, 1.121984, -0.53609, 4.61384, 1.048785, -0.646545, 5.102211, 1.307846, -0.547114, 5.102211, 1.307846, -0.468132, 4.597952, 1.409562, -0.526048, 4.597436, 1.421265, -0.44587, 4.610616, 1.121984, -0.53609, 5.102211, 1.307846, -0.468132, 4.610616, 1.121984, -0.455911, 0.476273, 1.470539, -0.518691, -4.149837, 0.945526, -1.35704, -4.503883, 0.929935, -0.518691, 0.481758, 1.327729, -1.35704, -3.795792, 0.961118, -2.195389, -4.149837, 0.945526, -1.35704, -3.139779, 0.999237, -4.620153, -3.795792, 0.961118, -2.195389, 0.489317, 1.17064, -2.094471, -3.014883, 0.979118, -4.57695, -3.137354, 0.944164, -4.620153, -3.139779, 0.999237, -4.620153, -3.795463, 0.953671, -4.756935, -3.139779, 0.999237, -4.620153, -3.137354, 0.944164, -4.620153, 5.224938, 1.302788, -1.228477, 3.488635, 1.426438, -1.206101, 3.4847, 1.327756, -1.271462, 3.480895, 1.232549, -1.160962, 3.33486, 1.316068, -0.958609, 3.478319, 1.164068, -0.951163, 3.479629, 1.198701, -0.741486, 3.33486, 1.316068, -0.958609, 3.484082, 1.316878, -0.658574, 3.488635, 1.426438, -1.206101, 3.33486, 1.316068, -0.958609, 3.4847, 1.327756, -1.271462, 3.490032, 1.463265, -0.727963, 3.33486, 1.316068, -0.958609, 3.491081, 1.491195, -0.951163, 5.238872, 1.424039, -0.739327, 3.491081, 1.491195, -0.951163, 5.241698, 1.449034, -0.940208, 5.215095, 1.217602, -1.129026, 3.4847, 1.327756, -1.271462, 3.480895, 1.232549, -1.160962, 5.223648, 1.293067, -0.676877, 3.490032, 1.463265, -0.727963, 5.238872, 1.424039, -0.739327, -3.795792, 0.961118, -2.195389, -3.795463, 0.953671, -4.756935, -3.795464, 0.953671, -2.195389, -4.149508, 0.93808, -1.35704, -3.795792, 0.961118, -2.195389, -3.795464, 0.953671, -2.195389, -4.503555, 0.922488, -0.518691, -4.149837, 0.945526, -1.35704, -4.149508, 0.93808, -1.35704, 2.728156, 1.230057, 1.801172, 0.489316, 1.17064, 2.094471, 0.492004, 1.109609, 2.195389, 0.500177, 0.909478, 1.35704, -3.795464, 0.953671, 2.195388, -4.149509, 0.93808, 1.357039, 2.717323, 1.487674, 1.161437, 0.476273, 1.470539, 0.518691, 0.481758, 1.327729, 1.35704, -3.014884, 0.979118, 4.57695, 0.494691, 1.048578, 2.094471, 0.492004, 1.109609, 2.195389, -3.137355, 0.944164, 4.620153, -3.795464, 0.953671, 2.195388, 0.494691, 1.048578, 2.094471, 4.612971, 1.030247, 0.974134, 5.22289, 1.201881, 1.163158, 4.605512, 1.161389, 1.312637, 4.590385, 1.561489, 0.974134, 5.248537, 1.452744, 0.700172, 4.591673, 1.570506, 0.618095, 5.233506, 1.305398, 1.281312, 4.59287, 1.448442, 1.312637, 4.59886, 1.312439, 1.417349, 0.500177, 0.909478, 1.35704, 2.731657, 1.15057, 1.745648, 0.494691, 1.048578, 2.094471, 4.59886, 1.312439, 1.417349, 3.78503, 1.437567, 1.499099, 3.790891, 1.304479, 1.58263, 4.591673, 1.570506, 0.618095, 3.781424, 1.577991, 1.039728, 4.590385, 1.561489, 0.974134, 3.807721, 0.98084, 1.05479, 4.605512, 1.161389, 1.312637, 3.797201, 1.16118, 1.499099, 3.797201, 1.16118, 1.499099, 4.59886, 1.312439, 1.417349, 3.790891, 1.304479, 1.58263, 4.605512, 1.161389, 1.312637, 5.233506, 1.305398, 1.281312, 4.59886, 1.312439, 1.417349, 0.489316, 1.17064, 2.094471, -3.014884, 0.979118, 4.57695, 0.492004, 1.109609, 2.195389, 0.494691, 1.048578, 2.094471, 2.728156, 1.230057, 1.801172, 0.492004, 1.109609, 2.195389, 4.61384, 1.048785, 0.646545, 3.807721, 0.98084, 1.05479, 3.8121, 0.939938, 0.508631, 4.59287, 1.448442, 1.312637, 3.781424, 1.577991, 1.039728, 3.78503, 1.437567, 1.499099, 0.506708, 0.77942, 0.518691, 2.74001, 0.972486, 1.161437, 0.500177, 0.909478, 1.35704, 5.244503, 1.412697, 1.211424, 4.590385, 1.561489, 0.974134, 4.59287, 1.448442, 1.312637, 5.219202, 1.165071, 0.714631, 4.612971, 1.030247, 0.974134, 4.61384, 1.048785, 0.646545, 2.724656, 1.309544, 1.745648, 0.481758, 1.327729, 1.35704, 0.489316, 1.17064, 2.094471, 0.506708, 0.77942, 0.518691, -4.149509, 0.93808, 1.357039, -4.503555, 0.922488, 0.51869, 4.610616, 1.121984, 0.53609, 3.8121, 0.939938, 0.508631, 4.610616, 1.121984, 0.455911, 3.782388, 1.614644, 0.492432, 4.597952, 1.409562, 0.526049, 4.597436, 1.421265, 0.44587, 4.61384, 1.048785, 0.646545, 3.8121, 0.939938, 0.508631, 4.610616, 1.121984, 0.53609, 4.597952, 1.409562, 0.526049, 3.782388, 1.614644, 0.492432, 4.591673, 1.570506, 0.618095, 5.248537, 1.452744, 0.700172, 5.102211, 1.307846, 0.547115, 4.591673, 1.570506, 0.618095, 5.102211, 1.307846, 0.547115, 5.219202, 1.165071, 0.714631, 4.61384, 1.048785, 0.646545, 5.22289, 1.201881, 1.163158, 5.242519, 1.30255, 1.259644, 5.233506, 1.305398, 1.281312, 5.242519, 1.30255, 1.259644, 5.244503, 1.412697, 1.211424, 5.233506, 1.305398, 1.281312, 5.241079, 1.29175, 0.646756, 5.219202, 1.165071, 0.714631, 5.232111, 1.293587, 0.625977, 5.215414, 1.127407, 0.93883, 5.231511, 1.207906, 1.149144, 5.22289, 1.201881, 1.163158, 5.227685, 1.174251, 0.729668, 5.215414, 1.127407, 0.93883, 5.219202, 1.165071, 0.714631, 5.251583, 1.483119, 0.93883, 5.258105, 1.437266, 0.716145, 5.248537, 1.452744, 0.700172, 5.253921, 1.400651, 1.194283, 5.251583, 1.483119, 0.93883, 5.244503, 1.412697, 1.211424, 5.248537, 1.452744, 0.700172, 5.241079, 1.29175, 0.646756, 5.232111, 1.293587, 0.625977, 3.484082, 1.316878, 0.658575, 5.211674, 1.187311, 0.751499, 5.223648, 1.293067, 0.676878, 3.479629, 1.198701, 0.741486, 5.20816, 1.156318, 0.940208, 5.211674, 1.187311, 0.751499, 3.78503, 1.437567, 1.499099, 2.717323, 1.487674, 1.161437, 2.724656, 1.309544, 1.745648, 2.745991, 0.848304, 0.480846, 3.807721, 0.98084, 1.05479, 2.74001, 0.972486, 1.161437, 2.731657, 1.15057, 1.745648, 3.790891, 1.304479, 1.58263, 2.728156, 1.230057, 1.801172, 2.74001, 0.972486, 1.161437, 3.797201, 1.16118, 1.499099, 2.731657, 1.15057, 1.745648, 3.781424, 1.577991, 1.039728, 2.713848, 1.578195, 0.480846, 2.717323, 1.487674, 1.161437, 3.790891, 1.304479, 1.58263, 2.724656, 1.309544, 1.745648, 2.728156, 1.230057, 1.801172, 5.102211, 1.307846, 0.547115, 4.597952, 1.409562, 0.526049, 4.591673, 1.570506, 0.618095, 4.610616, 1.121984, 0.53609, 5.102211, 1.307846, 0.547115, 4.61384, 1.048785, 0.646545, 4.597952, 1.409562, 0.526049, 5.102211, 1.307846, 0.468132, 4.597436, 1.421265, 0.44587, 5.102211, 1.307846, 0.468132, 4.610616, 1.121984, 0.53609, 4.610616, 1.121984, 0.455911, 0.476273, 1.470539, 0.518691, -4.149837, 0.945526, 1.357039, 0.481758, 1.327729, 1.35704, 0.481758, 1.327729, 1.35704, -3.795792, 0.961118, 2.195388, 0.489316, 1.17064, 2.094471, -3.795792, 0.961118, 2.195388, -3.13978, 0.999237, 4.620153, 0.489316, 1.17064, 2.094471, -3.014884, 0.979118, 4.57695, -3.13978, 0.999237, 4.620153, -3.137355, 0.944164, 4.620153, -3.795464, 0.953671, 4.756934, -3.13978, 0.999237, 4.620153, -3.795792, 0.961118, 4.756934, 5.235131, 1.391084, 1.169652, 3.491081, 1.491195, 0.951164, 5.241698, 1.449034, 0.940208, 3.480894, 1.232549, 1.160962, 3.334859, 1.316068, 0.95861, 3.484699, 1.327756, 1.271462, 3.479629, 1.198701, 0.741486, 3.334859, 1.316068, 0.95861, 3.478318, 1.164068, 0.951164, 3.334859, 1.316068, 0.95861, 3.488635, 1.426438, 1.206101, 3.484699, 1.327756, 1.271462, 3.334859, 1.316068, 0.95861, 3.490032, 1.463265, 0.727963, 3.491081, 1.491195, 0.951164, 5.20816, 1.156318, 0.940208, 3.480894, 1.232549, 1.160962, 5.215095, 1.217602, 1.129027, 5.224937, 1.302788, 1.228477, 3.488635, 1.426438, 1.206101, 5.235131, 1.391084, 1.169652, 3.491081, 1.491195, 0.951164, 5.238872, 1.424039, 0.739328, 5.241698, 1.449034, 0.940208, 5.215095, 1.217602, 1.129027, 3.484699, 1.327756, 1.271462, 5.224937, 1.302788, 1.228477, -3.795464, 0.953671, 4.756934, -3.795792, 0.961118, 2.195388, -3.795464, 0.953671, 2.195388, -4.149509, 0.93808, 1.357039, -3.795792, 0.961118, 2.195388, -4.149837, 0.945526, 1.357039, -4.503555, 0.922488, 0.51869, -4.149837, 0.945526, 1.357039, -4.503883, 0.929935, 0.51869, 0.885077, 2.452009, 0.028236, 0.702818, 2.44479, -0.000766, 0.702818, 2.44479, 0.000765, 0.885077, 2.452009, 0.028236, 0.776541, 2.009571, 0.0009, 1.328512, 2.023376, 0.059275, 1.328512, 2.023376, -0.059275, 0.944294, 2.454617, -0.0, 1.464773, 2.029376, -0.0, 0.944294, 2.454617, -0.0, 1.328512, 2.023376, 0.059275, 1.464773, 2.029376, -0.0, 0.885077, 2.452009, -0.028236, 0.776541, 2.009571, -0.0009, 0.702818, 2.44479, -0.000766, 0.885077, 2.452009, -0.028236, 0.885077, 2.452009, 0.028236, 0.944294, 2.454617, -0.0, 0.702818, 2.44479, -0.000766, 0.776541, 2.009571, 0.0009, 0.702818, 2.44479, 0.000765, 2.825529, 1.094465, 1.46769, 2.533545, 0.844308, 1.544029, 2.980371, 0.835566, 1.495045, 2.522906, 1.091284, 1.518555, 1.649483, 0.841567, 1.540303, 2.533545, 0.844308, 1.544029, 1.180404, 0.829985, 1.487459, 1.171639, 1.020556, 1.46107, 1.180562, 0.828916, 1.480839, 1.639965, 1.052401, 1.518555, 1.180404, 0.829985, 1.487459, 1.649483, 0.841567, 1.540303, 2.534594, 0.822988, 1.435679, 2.825688, 1.093396, 1.46107, 2.980528, 0.834498, 1.488425, 2.523955, 1.069963, 1.410205, 1.650533, 0.820246, 1.431953, 1.641015, 1.03108, 1.410205, 1.641015, 1.03108, 1.410205, 1.180562, 0.828916, 1.480839, 1.171639, 1.020556, 1.46107, 2.980371, 0.835566, 1.495045, 2.825688, 1.093396, 1.46107, 2.825529, 1.094465, 1.46769, 2.534594, 0.822988, 1.435679, 2.980371, 0.835566, 1.495045, 2.533545, 0.844308, 1.544029, 1.650533, 0.820246, 1.431953, 2.533545, 0.844308, 1.544029, 1.649483, 0.841567, 1.540303, 1.180562, 0.828916, 1.480839, 1.649483, 0.841567, 1.540303, 1.180404, 0.829985, 1.487459, 2.533545, 0.844308, -1.544028, 2.825529, 1.094465, -1.46769, 2.980371, 0.835566, -1.495044, 1.649484, 0.841567, -1.540303, 2.522906, 1.091284, -1.518555, 2.533545, 0.844308, -1.544028, 1.180405, 0.829985, -1.487459, 1.171639, 1.020556, -1.46107, 1.171482, 1.021624, -1.46769, 1.180405, 0.829985, -1.487459, 1.639966, 1.052401, -1.518555, 1.649484, 0.841567, -1.540303, 2.534594, 0.822988, -1.435678, 2.825688, 1.093396, -1.46107, 2.523955, 1.069963, -1.410205, 2.523955, 1.069963, -1.410205, 1.650533, 0.820246, -1.431953, 2.534594, 0.822988, -1.435678, 1.641015, 1.03108, -1.410205, 1.180562, 0.828916, -1.480839, 1.650533, 0.820246, -1.431953, 2.825688, 1.093396, -1.46107, 2.980371, 0.835566, -1.495044, 2.825529, 1.094465, -1.46769, 2.980371, 0.835566, -1.495044, 2.534594, 0.822988, -1.435678, 2.533545, 0.844308, -1.544028, 2.533545, 0.844308, -1.544028, 1.650533, 0.820246, -1.431953, 1.649484, 0.841567, -1.540303, 1.180562, 0.828916, -1.480839, 1.649484, 0.841567, -1.540303, 1.650533, 0.820246, -1.431953, 5.223648, 1.293067, 0.676878, 5.227685, 1.174251, 0.729668, 5.241079, 1.29175, 0.646756, 5.211674, 1.187311, 0.751499, 5.223754, 1.139816, 0.939345, 5.227685, 1.174251, 0.729668, 5.235131, 1.391084, 1.169652, 5.261266, 1.465036, 0.939345, 5.253921, 1.400651, 1.194283, 5.223754, 1.139816, 0.939345, 5.215095, 1.217602, 1.129027, 5.231511, 1.207906, 1.149144, 5.224937, 1.302788, 1.228477, 5.253921, 1.400651, 1.194283, 5.242519, 1.30255, 1.259644, 5.261266, 1.465036, 0.939345, 5.238872, 1.424039, 0.739328, 5.258105, 1.437266, 0.716145, 5.231511, 1.207906, 1.149144, 5.224937, 1.302788, 1.228477, 5.242519, 1.30255, 1.259644, 5.258105, 1.437266, 0.716145, 5.223648, 1.293067, 0.676878, 5.241079, 1.29175, 0.646756, 3.490032, 1.463265, 0.727963, 5.223648, 1.293067, 0.676878, 5.238872, 1.424039, 0.739328, 5.231511, 1.207906, -1.149143, 5.224938, 1.302788, -1.228477, 5.215095, 1.217602, -1.129026, 5.261266, 1.465036, -0.939345, 5.238872, 1.424039, -0.739327, 5.241698, 1.449034, -0.940208, 5.253921, 1.400651, -1.194283, 5.224938, 1.302788, -1.228477, 5.24252, 1.30255, -1.259644, 5.223754, 1.139816, -0.939345, 5.215095, 1.217602, -1.129026, 5.20816, 1.156318, -0.940208, 5.261266, 1.465036, -0.939345, 5.235131, 1.391084, -1.169652, 5.253921, 1.400651, -1.194283, 5.223754, 1.139816, -0.939345, 5.211674, 1.187311, -0.751498, 5.227685, 1.174251, -0.729668, 5.227685, 1.174251, -0.729668, 5.223648, 1.293067, -0.676877, 5.241079, 1.29175, -0.646756, 5.258105, 1.437266, -0.716145, 5.223648, 1.293067, -0.676877, 5.238872, 1.424039, -0.739327, 5.211674, 1.187311, -0.751498, 3.484082, 1.316878, -0.658574, 5.223648, 1.293067, -0.676877, 4.658138, 1.624434, -0.29535, 4.753134, 1.927778, 0.269044, 4.658138, 1.624434, 0.295351, 4.753134, 1.927778, -0.269043, 4.82426, 2.113887, 0.155333, 4.753134, 1.927778, 0.269044, 4.850295, 2.182007, 0.0, 4.82426, 2.113887, 0.155333, 4.82426, 2.113887, -0.155332, -2.866523, 1.151904, -0.83094, -2.847283, 0.71501, -0.672245, -5.753829, 0.937475, -0.366076, -2.897654, 1.858814, -0.256775, -5.72802, 1.633312, -0.139829, -5.728313, 1.639982, 0.139827, -2.866524, 1.151904, 0.830939, -5.74397, 1.203261, 0.452493, -5.753829, 0.937475, 0.366074, -2.847283, 0.71501, -0.672245, -2.835392, 0.444995, -0.256775, -5.759922, 0.77321, -0.139829, -2.897654, 1.858814, -0.256775, -2.885763, 1.588798, -0.672245, -5.734113, 1.469047, -0.366076, -2.885763, 1.588798, 0.672244, -5.734113, 1.469048, 0.366074, -5.74397, 1.203261, 0.452493, -2.835392, 0.444995, -0.256775, -2.835392, 0.444995, 0.256774, -5.759922, 0.77321, 0.139827, -2.885763, 1.588798, -0.672245, -2.866523, 1.151904, -0.83094, -5.74397, 1.203261, -0.452495, -2.897654, 1.858814, 0.256774, -5.728313, 1.639982, 0.139827, -5.734113, 1.469048, 0.366074, -2.847283, 0.71501, 0.672244, -5.753829, 0.937475, 0.366074, -5.759922, 0.77321, 0.139827, 2.803409, 0.797688, 0.570297, 6.630013, 0.963845, 0.324218, 6.63912, 1.203691, 0.400755, -0.664545, 0.746947, -0.7103, -0.683769, 1.183493, -0.877979, 2.784209, 1.233681, -0.704924, -0.714875, 1.889839, 0.271311, 2.753142, 1.939132, 0.217834, 2.753142, 1.939132, -0.217833, -0.664545, 0.746947, 0.7103, 2.803409, 0.797688, 0.570297, 2.784208, 1.233681, 0.704925, -0.652663, 0.477147, -0.271311, -0.664545, 0.746947, -0.7103, 2.803409, 0.797688, -0.570295, -0.714875, 1.889839, -0.271311, 2.753142, 1.939132, -0.217833, 2.763227, 1.710122, -0.570295, -0.683769, 1.183493, 0.877979, 2.784208, 1.233681, 0.704925, 2.763227, 1.710122, 0.570297, -0.652663, 0.477147, 0.27131, -0.652663, 0.477147, -0.271311, 2.815275, 0.52823, -0.217833, -0.683769, 1.183493, -0.877979, -0.703682, 1.635663, -0.7103, 2.763227, 1.710122, -0.570295, -0.714875, 1.889839, 0.271311, -0.703682, 1.635663, 0.7103, 2.763227, 1.710122, 0.570297, 2.815275, 0.52823, -0.217833, 2.803409, 0.797688, -0.570295, 6.630013, 0.963845, -0.324216, 2.763227, 1.710122, -0.570295, 2.753142, 1.939132, -0.217833, 6.653854, 1.591768, -0.123839, 2.784208, 1.233681, 0.704925, 6.63912, 1.203691, 0.400755, 6.647462, 1.460872, 0.324218, 2.815275, 0.52823, 0.217834, 2.815275, 0.52823, -0.217833, 6.624384, 0.815613, -0.123839, 2.784209, 1.233681, -0.704924, 2.763227, 1.710122, -0.570295, 6.647461, 1.460872, -0.324216, 2.763227, 1.710122, 0.570297, 6.647462, 1.460872, 0.324218, 6.653854, 1.591768, 0.123841, 2.815275, 0.52823, 0.217834, 6.624384, 0.815613, 0.123841, 6.630013, 0.963845, 0.324218, 2.803409, 0.797688, -0.570295, 2.784209, 1.233681, -0.704924, 6.63912, 1.203691, -0.400753, 2.753142, 1.939132, 0.217834, 6.653854, 1.591768, 0.123841, 6.653854, 1.591768, -0.123839, 7.521842, 1.349927, 0.216191, 7.515638, 1.192978, 0.267227, 8.287642, 1.165003, 0.030016, 7.521842, 1.349927, -0.216189, 8.288769, 1.193526, 1e-06, 8.287642, 1.165003, -0.030013, 7.509434, 1.03603, -0.216189, 7.515638, 1.192978, -0.267224, 8.287642, 1.165003, -0.030013, 7.509434, 1.03603, 0.216191, 8.286513, 1.13648, 1e-06, 8.287642, 1.165003, 0.030016, 6.647462, 1.460872, 0.324218, 6.63912, 1.203691, 0.400755, 7.515638, 1.192978, 0.267227, 6.624384, 0.815613, 0.123841, 6.624384, 0.815613, -0.123839, 7.505599, 0.93903, -0.082576, 6.647461, 1.460872, -0.324216, 7.521842, 1.349927, -0.216189, 7.515638, 1.192978, -0.267224, 6.653854, 1.591768, 0.123841, 6.647462, 1.460872, 0.324218, 7.521842, 1.349927, 0.216191, 6.630013, 0.963845, 0.324218, 6.624384, 0.815613, 0.123841, 7.505599, 0.93903, 0.082579, 6.63912, 1.203691, -0.400753, 7.515638, 1.192978, -0.267224, 7.509434, 1.03603, -0.216189, 6.653854, 1.591768, 0.123841, 7.525676, 1.446927, 0.082579, 7.525676, 1.446927, -0.082576, 6.63912, 1.203691, 0.400755, 6.630013, 0.963845, 0.324218, 7.509434, 1.03603, 0.216191, 6.653854, 1.591768, -0.123839, 7.525676, 1.446927, -0.082576, 7.521842, 1.349927, -0.216189, 6.630013, 0.963845, -0.324216, 7.509434, 1.03603, -0.216189, 7.505599, 0.93903, -0.082576, -0.652663, 0.477147, 0.27131, 2.815275, 0.52823, 0.217834, 2.803409, 0.797688, 0.570297, -2.835392, 0.444995, 0.256774, -0.652663, 0.477147, 0.27131, -0.664545, 0.746947, 0.7103, -2.885763, 1.588798, 0.672244, -0.703682, 1.635663, 0.7103, -0.714875, 1.889839, 0.271311, -2.866523, 1.151904, -0.83094, -2.885763, 1.588798, -0.672245, -0.703682, 1.635663, -0.7103, -2.835392, 0.444995, 0.256774, -2.835392, 0.444995, -0.256775, -0.652663, 0.477147, -0.271311, -2.866524, 1.151904, 0.830939, -0.683769, 1.183493, 0.877979, -0.703682, 1.635663, 0.7103, -2.885763, 1.588798, -0.672245, -2.897654, 1.858814, -0.256775, -0.714875, 1.889839, -0.271311, -2.835392, 0.444995, -0.256775, -2.847283, 0.71501, -0.672245, -0.664545, 0.746947, -0.7103, -2.847283, 0.71501, 0.672244, -0.664545, 0.746947, 0.7103, -0.683769, 1.183493, 0.877979, -2.897654, 1.858814, 0.256774, -0.714875, 1.889839, 0.271311, -0.714875, 1.889839, -0.271311, -2.847283, 0.71501, -0.672245, -2.866523, 1.151904, -0.83094, -0.683769, 1.183493, -0.877979, -5.75736, 0.842518, 0.117327, -5.752247, 0.980351, 0.307168, -5.824749, 0.982742, 0.307168, -5.752247, 0.980351, -0.30717, -5.824749, 0.982742, -0.30717, -5.816478, 1.20576, -0.379682, -5.730837, 1.569815, 0.117327, -5.730591, 1.564219, -0.117329, -5.803093, 1.56661, -0.117329, -5.752247, 0.980351, 0.307168, -5.743975, 1.203369, 0.379681, -5.816478, 1.20576, 0.379681, -5.75736, 0.842518, -0.117329, -5.829863, 0.844909, -0.117329, -5.824749, 0.982742, -0.30717, -5.735704, 1.426386, -0.30717, -5.808206, 1.428777, -0.30717, -5.803093, 1.56661, -0.117329, -5.743975, 1.203369, 0.379681, -5.735704, 1.426386, 0.307168, -5.808206, 1.428777, 0.307168, -5.75736, 0.842518, -0.117329, -5.75736, 0.842518, 0.117327, -5.829863, 0.844909, 0.117327, -5.743975, 1.203369, -0.379682, -5.816478, 1.20576, -0.379682, -5.808206, 1.428777, -0.30717, -5.735704, 1.426386, 0.307168, -5.730837, 1.569815, 0.117327, -5.80334, 1.572206, 0.117327, -5.803625, 1.55236, -0.112689, -5.653403, 1.54362, -0.112689, -5.65364, 1.548995, 0.112687, -5.824421, 0.991585, 0.295019, -5.816478, 1.205782, 0.364664, -5.666257, 1.197041, 0.364664, -5.829336, 0.859203, -0.112689, -5.679114, 0.850463, -0.112689, -5.674199, 0.982844, -0.295021, -5.808536, 1.419979, -0.295021, -5.658314, 1.411238, -0.295021, -5.653403, 1.54362, -0.112689, -5.816478, 1.205782, 0.364664, -5.808536, 1.419979, 0.295019, -5.658314, 1.411238, 0.295019, -5.829336, 0.859203, 0.112687, -5.679114, 0.850463, 0.112687, -5.679114, 0.850463, -0.112689, -5.816478, 1.205782, -0.364666, -5.666257, 1.197041, -0.364666, -5.658314, 1.411238, -0.295021, -5.808536, 1.419979, 0.295019, -5.803862, 1.557735, 0.112687, -5.65364, 1.548995, 0.112687, -5.829336, 0.859203, 0.112687, -5.824421, 0.991585, 0.295019, -5.674199, 0.982844, 0.295019, -5.824421, 0.991585, -0.295021, -5.674199, 0.982844, -0.295021, -5.666257, 1.197041, -0.364666, -5.74397, 1.203261, 0.452493, -5.743975, 1.203369, 0.379681, -5.752247, 0.980351, 0.307168, -5.753829, 0.937475, -0.366076, -5.759922, 0.77321, -0.139829, -5.75736, 0.842518, -0.117329, -5.72802, 1.633312, -0.139829, -5.734113, 1.469047, -0.366076, -5.735704, 1.426386, -0.30717, -5.734113, 1.469048, 0.366074, -5.735704, 1.426386, 0.307168, -5.743975, 1.203369, 0.379681, -5.759922, 0.77321, 0.139827, -5.75736, 0.842518, 0.117327, -5.75736, 0.842518, -0.117329, -5.734113, 1.469047, -0.366076, -5.74397, 1.203261, -0.452495, -5.743975, 1.203369, -0.379682, -5.734113, 1.469048, 0.366074, -5.728313, 1.639982, 0.139827, -5.730837, 1.569815, 0.117327, -5.753829, 0.937475, 0.366074, -5.752247, 0.980351, 0.307168, -5.75736, 0.842518, 0.117327, -5.74397, 1.203261, -0.452495, -5.753829, 0.937475, -0.366076, -5.752247, 0.980351, -0.30717, -5.72802, 1.633312, -0.139829, -5.730591, 1.564219, -0.117329, -5.730837, 1.569815, 0.117327, -5.679114, 0.850463, 0.112687, -5.674199, 0.982844, 0.295019, -5.666281, 1.197579, -1e-06, -5.658314, 1.411238, -0.295021, -5.666257, 1.197041, -0.364666, -5.666281, 1.197579, -1e-06, -5.65364, 1.548995, 0.112687, -5.653403, 1.54362, -0.112689, -5.666281, 1.197579, -1e-06, -5.674199, 0.982844, -0.295021, -5.679114, 0.850463, -0.112689, -5.666281, 1.197579, -1e-06, -5.666257, 1.197041, 0.364664, -5.658314, 1.411238, 0.295019, -5.666281, 1.197579, -1e-06, -5.816478, 1.20576, -0.379682, -5.824749, 0.982742, -0.30717, -5.824421, 0.991585, -0.295021, -5.803093, 1.56661, -0.117329, -5.803625, 1.55236, -0.112689, -5.803862, 1.557735, 0.112687, -5.816478, 1.20576, 0.379681, -5.816478, 1.205782, 0.364664, -5.824421, 0.991585, 0.295019, -5.824749, 0.982742, -0.30717, -5.829863, 0.844909, -0.117329, -5.829336, 0.859203, -0.112689, -5.803093, 1.56661, -0.117329, -5.808206, 1.428777, -0.30717, -5.808536, 1.419979, -0.295021, -5.808206, 1.428777, 0.307168, -5.808536, 1.419979, 0.295019, -5.816478, 1.205782, 0.364664, -5.829863, 0.844909, -0.117329, -5.829863, 0.844909, 0.117327, -5.829336, 0.859203, 0.112687, -5.808206, 1.428777, -0.30717, -5.816478, 1.20576, -0.379682, -5.816478, 1.205782, -0.364666, -5.808206, 1.428777, 0.307168, -5.80334, 1.572206, 0.117327, -5.803862, 1.557735, 0.112687, -5.824749, 0.982742, 0.307168, -5.824421, 0.991585, 0.295019, -5.829336, 0.859203, 0.112687, -3.467997, 0.331185, -0.141961, -3.467997, 0.331185, 0.14196, -4.110527, 0.328942, 0.14196, -4.110527, 0.328942, -0.141961, -4.110527, 0.328942, 0.14196, -4.729508, 0.449314, 0.126578, -4.729508, 0.449314, -0.126579, -4.729508, 0.449314, 0.126578, -5.590106, 0.666151, 0.100147, -5.590106, 0.666151, -0.100148, -5.590106, 0.666151, 0.100147, -5.632627, 0.777173, 0.100147, -4.729508, 0.449314, -0.126579, -4.741275, 0.716498, -0.205316, -4.123545, 0.624553, -0.225209, -3.476769, 0.530383, -0.189576, -2.772793, 0.49024, -0.102418, -2.771752, 0.466606, -0.108226, -5.590106, 0.666151, -0.100148, -5.596455, 0.810342, -0.137615, -4.741275, 0.716498, -0.205316, -4.110527, 0.328942, -0.141961, -4.123545, 0.624553, -0.225209, -3.476769, 0.530383, -0.189576, -5.632627, 0.777173, -0.100148, -5.635414, 0.840466, -0.120959, -5.596455, 0.810342, -0.137615, -4.729508, 0.449314, 0.126578, -4.110527, 0.328942, 0.14196, -4.123545, 0.624553, 0.225208, -2.771752, 0.466606, 0.108225, -2.772793, 0.49024, 0.102417, -3.476769, 0.530383, 0.189576, -5.590106, 0.666151, 0.100147, -4.729508, 0.449314, 0.126578, -4.741275, 0.716498, 0.205315, -4.110527, 0.328942, 0.14196, -3.467997, 0.331185, 0.14196, -3.476769, 0.530383, 0.189576, -5.632627, 0.777173, 0.100147, -5.590106, 0.666151, 0.100147, -5.596455, 0.810342, 0.137613, -2.771752, 0.466606, -0.108226, -2.771752, 0.466606, 0.108225, -3.467997, 0.331185, 0.14196, 2.870295, 2.094299, 0.0, 2.871579, 2.065141, -0.132035, -3.882923, 1.946169, -0.093246, 2.871579, 2.065141, -0.132035, 2.875087, 1.985479, -0.228692, -3.879241, 1.862557, -0.161507, 2.875087, 1.985479, -0.228692, 2.879879, 1.876659, -0.264071, -3.874211, 1.748342, -0.186492, -3.874211, 1.748342, 0.186491, 2.879879, 1.876659, 0.264072, 2.875087, 1.985479, 0.228693, -3.879241, 1.862557, 0.161506, 2.875087, 1.985479, 0.228693, 2.871579, 2.065141, 0.132036, -3.882923, 1.946169, 0.093246, 2.871579, 2.065141, 0.132036, 2.870295, 2.094299, 0.0, 2.871579, 2.065141, 0.132036, 4.357831, 2.075186, 0.155333, 4.355356, 2.131386, 0.0, 2.875087, 1.985479, -0.228692, 2.871579, 2.065141, -0.132035, 4.357831, 2.075186, -0.155332, 2.871579, 2.065141, -0.132035, 2.870295, 2.094299, 0.0, 4.355356, 2.131386, 0.0, 2.879879, 1.876659, 0.264072, 4.375865, 1.665675, 0.295351, 4.364592, 1.921643, 0.269044, 2.879879, 1.876659, -0.264071, 2.875087, 1.985479, -0.228692, 4.364592, 1.921643, -0.269043, 2.875087, 1.985479, 0.228693, 4.364592, 1.921643, 0.269044, 4.357831, 2.075186, 0.155333, 4.355356, 2.131386, 0.0, 4.357831, 2.075186, 0.155333, 4.82426, 2.113887, 0.155333, 4.364592, 1.921643, 0.269044, 4.375865, 1.665675, 0.295351, 4.658138, 1.624434, 0.295351, 4.357831, 2.075186, -0.155332, 4.82426, 2.113887, -0.155332, 4.753134, 1.927778, -0.269043, 4.357831, 2.075186, 0.155333, 4.364592, 1.921643, 0.269044, 4.753134, 1.927778, 0.269044, 4.364592, 1.921643, -0.269043, 4.753134, 1.927778, -0.269043, 4.658138, 1.624434, -0.29535, 4.355356, 2.131386, 0.0, 4.850295, 2.182007, 0.0, 4.82426, 2.113887, -0.155332, -3.882923, 1.946169, 0.093246, -3.884271, 1.976773, -1e-06, -5.173563, 1.878312, -1e-06, -3.879241, 1.862557, -0.161507, -5.47006, 1.750818, -0.042367, -5.456889, 1.835171, -0.032032, -3.882923, 1.946169, -0.093246, -5.456889, 1.835171, -0.032032, -5.173563, 1.878312, -1e-06, -3.874211, 1.748342, 0.186491, -3.879241, 1.862557, 0.161506, -5.47006, 1.750817, 0.042365, -3.874211, 1.748342, -0.186492, -5.46503, 1.636602, -0.048921, -5.47006, 1.750818, -0.042367, -3.879241, 1.862557, 0.161506, -3.882923, 1.946169, 0.093246, -5.456889, 1.835171, 0.032031, -5.47006, 1.750818, -0.042367, -5.47006, 1.750817, 0.042365, -5.456889, 1.835171, 0.032031, -5.46503, 1.636602, -0.048921, -5.46503, 1.636602, 0.048919, -5.47006, 1.750817, 0.042365, -0.210443, 1.980484, -0.090731, -4.26398, 3.612728, -0.039704, -4.023537, 3.623317, -0.0, -4.26398, 3.612728, -0.039704, -0.210443, 1.980484, -0.090731, -4.408911, 1.795593, -0.013919, -0.210443, 1.980484, 0.090731, 0.029999, 1.991073, -0.0, -4.023537, 3.623317, -0.0, -4.26398, 3.612728, 0.039703, -5.130715, 3.574559, 0.00744, -4.408911, 1.795593, 0.013918, -4.26398, 3.612728, -0.039704, -5.130715, 3.574559, -0.007441, -5.130715, 3.574559, 0.00744, -5.130715, 3.574559, -0.007441, -4.408911, 1.795593, -0.013919, -4.408911, 1.795593, 0.013918, -3.548063, 3.617257, -0.0, -4.018605, 3.596535, -0.0, -4.018157, 3.586363, 0.010181, -4.018157, 3.586363, -0.010182, -3.547615, 3.607085, -0.010182, -3.547167, 3.596912, -0.0, -3.547615, 3.607085, -0.010182, -3.548063, 3.617257, -0.0, -3.547615, 3.607085, 0.010181, -4.018157, 3.586363, 0.010181, -4.017709, 3.576191, -0.0, -3.547167, 3.596912, -0.0, -4.018157, 3.586363, -0.010182, -4.018605, 3.596535, -0.0, -3.548063, 3.617257, -0.0, 0.489317, 1.17064, -2.094471, 2.724656, 1.309544, -1.745648, 2.728156, 1.230057, -1.801172, -3.795464, 0.953671, -2.195389, 0.494692, 1.048578, -2.094471, 0.500177, 0.909478, -1.35704, 0.476273, 1.470539, -0.518691, 2.713848, 1.578195, -0.480846, 2.717323, 1.487674, -1.161437, 0.494692, 1.048578, -2.094471, -3.137354, 0.944164, -4.620153, -3.014883, 0.979118, -4.57695, -3.795464, 0.953671, -2.195389, -3.795463, 0.953671, -4.756935, -3.137354, 0.944164, -4.620153, 4.612971, 1.030247, -0.974134, 4.605513, 1.161389, -1.312637, 5.22289, 1.201881, -1.163158, 4.590385, 1.561489, -0.974134, 4.591673, 1.570506, -0.618094, 5.248537, 1.452744, -0.700171, 4.592871, 1.448442, -1.312637, 5.244503, 1.412697, -1.211423, 5.233507, 1.305399, -1.281311, 0.500177, 0.909478, -1.35704, 0.494692, 1.048578, -2.094471, 2.731657, 1.15057, -1.745648, 3.78503, 1.437567, -1.499099, 4.592871, 1.448442, -1.312637, 4.598861, 1.312439, -1.417348, 3.781424, 1.577991, -1.039728, 3.782388, 1.614644, -0.492431, 4.591673, 1.570506, -0.618094, 3.807721, 0.98084, -1.05479, 3.797201, 1.16118, -1.499099, 4.605513, 1.161389, -1.312637, 3.797201, 1.16118, -1.499099, 3.790891, 1.304479, -1.58263, 4.598861, 1.312439, -1.417348, 4.605513, 1.161389, -1.312637, 4.598861, 1.312439, -1.417348, 5.233507, 1.305399, -1.281311, 0.489317, 1.17064, -2.094471, 0.492004, 1.109609, -2.195389, -3.014883, 0.979118, -4.57695, 0.494692, 1.048578, -2.094471, 0.492004, 1.109609, -2.195389, 2.728156, 1.230057, -1.801172, 3.807721, 0.98084, -1.05479, 4.612971, 1.030247, -0.974134, 4.61384, 1.048785, -0.646545, 3.781424, 1.577991, -1.039728, 4.590385, 1.561489, -0.974134, 4.592871, 1.448442, -1.312637, 0.506708, 0.77942, -0.518691, 0.500177, 0.909478, -1.35704, 2.740011, 0.972486, -1.161437, 4.590385, 1.561489, -0.974134, 5.251583, 1.483119, -0.938829, 5.244503, 1.412697, -1.211423, 4.612971, 1.030247, -0.974134, 5.215414, 1.127407, -0.938829, 5.219202, 1.165071, -0.71463, 0.481758, 1.327729, -1.35704, 2.717323, 1.487674, -1.161437, 2.724656, 1.309544, -1.745648, -4.149508, 0.93808, -1.35704, 0.500177, 0.909478, -1.35704, 0.506708, 0.77942, -0.518691, 5.102211, 1.307846, -0.547114, 5.232111, 1.293587, -0.625976, 5.248537, 1.452744, -0.700171, 5.219202, 1.165071, -0.71463, 5.232111, 1.293587, -0.625976, 5.102211, 1.307846, -0.547114, 5.22289, 1.201881, -1.163158, 5.233507, 1.305399, -1.281311, 5.24252, 1.30255, -1.259644, 5.244503, 1.412697, -1.211423, 5.253921, 1.400651, -1.194283, 5.24252, 1.30255, -1.259644, 5.219202, 1.165071, -0.71463, 5.227685, 1.174251, -0.729668, 5.241079, 1.29175, -0.646756, 5.215414, 1.127407, -0.938829, 5.22289, 1.201881, -1.163158, 5.231511, 1.207906, -1.149143, 5.215414, 1.127407, -0.938829, 5.223754, 1.139816, -0.939345, 5.227685, 1.174251, -0.729668, 5.251583, 1.483119, -0.938829, 5.248537, 1.452744, -0.700171, 5.258105, 1.437266, -0.716145, 5.251583, 1.483119, -0.938829, 5.261266, 1.465036, -0.939345, 5.253921, 1.400651, -1.194283, 5.248537, 1.452744, -0.700171, 5.232111, 1.293587, -0.625976, 5.241079, 1.29175, -0.646756, 5.20816, 1.156318, -0.940208, 3.478319, 1.164068, -0.951163, 3.479629, 1.198701, -0.741486, 5.235131, 1.391084, -1.169652, 5.241698, 1.449034, -0.940208, 3.491081, 1.491195, -0.951163, 5.20816, 1.156318, -0.940208, 5.215095, 1.217602, -1.129026, 3.480895, 1.232549, -1.160962, 2.717323, 1.487674, -1.161437, 3.781424, 1.577991, -1.039728, 3.78503, 1.437567, -1.499099, 2.745991, 0.848304, -0.480846, 2.740011, 0.972486, -1.161437, 3.807721, 0.98084, -1.05479, 2.731657, 1.15057, -1.745648, 2.728156, 1.230057, -1.801172, 3.790891, 1.304479, -1.58263, 2.740011, 0.972486, -1.161437, 2.731657, 1.15057, -1.745648, 3.797201, 1.16118, -1.499099, 2.713848, 1.578195, -0.480846, 3.782388, 1.614644, -0.492431, 3.781424, 1.577991, -1.039728, 2.724656, 1.309544, -1.745648, 3.78503, 1.437567, -1.499099, 3.790891, 1.304479, -1.58263, 5.102211, 1.307846, -0.468132, 5.102211, 1.307846, -0.547114, 4.597952, 1.409562, -0.526048, 4.610616, 1.121984, -0.53609, 5.102211, 1.307846, -0.547114, 5.102211, 1.307846, -0.468132, 0.476273, 1.470539, -0.518691, 0.481758, 1.327729, -1.35704, -4.149837, 0.945526, -1.35704, 0.481758, 1.327729, -1.35704, 0.489317, 1.17064, -2.094471, -3.795792, 0.961118, -2.195389, -3.139779, 0.999237, -4.620153, -3.795791, 0.961118, -4.756935, -3.795792, 0.961118, -2.195389, -3.795463, 0.953671, -4.756935, -3.795791, 0.961118, -4.756935, -3.139779, 0.999237, -4.620153, 5.224938, 1.302788, -1.228477, 5.235131, 1.391084, -1.169652, 3.488635, 1.426438, -1.206101, 3.480895, 1.232549, -1.160962, 3.4847, 1.327756, -1.271462, 3.33486, 1.316068, -0.958609, 3.479629, 1.198701, -0.741486, 3.478319, 1.164068, -0.951163, 3.33486, 1.316068, -0.958609, 3.488635, 1.426438, -1.206101, 3.491081, 1.491195, -0.951163, 3.33486, 1.316068, -0.958609, 3.490032, 1.463265, -0.727963, 3.484082, 1.316878, -0.658574, 3.33486, 1.316068, -0.958609, 5.238872, 1.424039, -0.739327, 3.490032, 1.463265, -0.727963, 3.491081, 1.491195, -0.951163, 5.215095, 1.217602, -1.129026, 5.224938, 1.302788, -1.228477, 3.4847, 1.327756, -1.271462, 5.223648, 1.293067, -0.676877, 3.484082, 1.316878, -0.658574, 3.490032, 1.463265, -0.727963, -3.795792, 0.961118, -2.195389, -3.795791, 0.961118, -4.756935, -3.795463, 0.953671, -4.756935, -4.149508, 0.93808, -1.35704, -4.149837, 0.945526, -1.35704, -3.795792, 0.961118, -2.195389, -4.503555, 0.922488, -0.518691, -4.503883, 0.929935, -0.518691, -4.149837, 0.945526, -1.35704, 2.728156, 1.230057, 1.801172, 2.724656, 1.309544, 1.745648, 0.489316, 1.17064, 2.094471, 0.500177, 0.909478, 1.35704, 0.494691, 1.048578, 2.094471, -3.795464, 0.953671, 2.195388, 2.717323, 1.487674, 1.161437, 2.713848, 1.578195, 0.480846, 0.476273, 1.470539, 0.518691, -3.014884, 0.979118, 4.57695, -3.137355, 0.944164, 4.620153, 0.494691, 1.048578, 2.094471, -3.137355, 0.944164, 4.620153, -3.795464, 0.953671, 4.756934, -3.795464, 0.953671, 2.195388, 4.612971, 1.030247, 0.974134, 5.215414, 1.127407, 0.93883, 5.22289, 1.201881, 1.163158, 4.590385, 1.561489, 0.974134, 5.251583, 1.483119, 0.93883, 5.248537, 1.452744, 0.700172, 5.233506, 1.305398, 1.281312, 5.244503, 1.412697, 1.211424, 4.59287, 1.448442, 1.312637, 0.500177, 0.909478, 1.35704, 2.74001, 0.972486, 1.161437, 2.731657, 1.15057, 1.745648, 4.59886, 1.312439, 1.417349, 4.59287, 1.448442, 1.312637, 3.78503, 1.437567, 1.499099, 4.591673, 1.570506, 0.618095, 3.782388, 1.614644, 0.492432, 3.781424, 1.577991, 1.039728, 3.807721, 0.98084, 1.05479, 4.612971, 1.030247, 0.974134, 4.605512, 1.161389, 1.312637, 3.797201, 1.16118, 1.499099, 4.605512, 1.161389, 1.312637, 4.59886, 1.312439, 1.417349, 4.605512, 1.161389, 1.312637, 5.22289, 1.201881, 1.163158, 5.233506, 1.305398, 1.281312, 0.489316, 1.17064, 2.094471, -3.13978, 0.999237, 4.620153, -3.014884, 0.979118, 4.57695, 0.494691, 1.048578, 2.094471, 2.731657, 1.15057, 1.745648, 2.728156, 1.230057, 1.801172, 4.61384, 1.048785, 0.646545, 4.612971, 1.030247, 0.974134, 3.807721, 0.98084, 1.05479, 4.59287, 1.448442, 1.312637, 4.590385, 1.561489, 0.974134, 3.781424, 1.577991, 1.039728, 0.506708, 0.77942, 0.518691, 2.745991, 0.848304, 0.480846, 2.74001, 0.972486, 1.161437, 5.244503, 1.412697, 1.211424, 5.251583, 1.483119, 0.93883, 4.590385, 1.561489, 0.974134, 5.219202, 1.165071, 0.714631, 5.215414, 1.127407, 0.93883, 4.612971, 1.030247, 0.974134, 2.724656, 1.309544, 1.745648, 2.717323, 1.487674, 1.161437, 0.481758, 1.327729, 1.35704, 0.506708, 0.77942, 0.518691, 0.500177, 0.909478, 1.35704, -4.149509, 0.93808, 1.357039, 5.248537, 1.452744, 0.700172, 5.232111, 1.293587, 0.625977, 5.102211, 1.307846, 0.547115, 5.102211, 1.307846, 0.547115, 5.232111, 1.293587, 0.625977, 5.219202, 1.165071, 0.714631, 5.22289, 1.201881, 1.163158, 5.231511, 1.207906, 1.149144, 5.242519, 1.30255, 1.259644, 5.242519, 1.30255, 1.259644, 5.253921, 1.400651, 1.194283, 5.244503, 1.412697, 1.211424, 5.241079, 1.29175, 0.646756, 5.227685, 1.174251, 0.729668, 5.219202, 1.165071, 0.714631, 5.215414, 1.127407, 0.93883, 5.223754, 1.139816, 0.939345, 5.231511, 1.207906, 1.149144, 5.227685, 1.174251, 0.729668, 5.223754, 1.139816, 0.939345, 5.215414, 1.127407, 0.93883, 5.251583, 1.483119, 0.93883, 5.261266, 1.465036, 0.939345, 5.258105, 1.437266, 0.716145, 5.253921, 1.400651, 1.194283, 5.261266, 1.465036, 0.939345, 5.251583, 1.483119, 0.93883, 5.248537, 1.452744, 0.700172, 5.258105, 1.437266, 0.716145, 5.241079, 1.29175, 0.646756, 3.484082, 1.316878, 0.658575, 3.479629, 1.198701, 0.741486, 5.211674, 1.187311, 0.751499, 3.479629, 1.198701, 0.741486, 3.478318, 1.164068, 0.951164, 5.20816, 1.156318, 0.940208, 3.78503, 1.437567, 1.499099, 3.781424, 1.577991, 1.039728, 2.717323, 1.487674, 1.161437, 2.745991, 0.848304, 0.480846, 3.8121, 0.939938, 0.508631, 3.807721, 0.98084, 1.05479, 2.731657, 1.15057, 1.745648, 3.797201, 1.16118, 1.499099, 3.790891, 1.304479, 1.58263, 2.74001, 0.972486, 1.161437, 3.807721, 0.98084, 1.05479, 3.797201, 1.16118, 1.499099, 3.781424, 1.577991, 1.039728, 3.782388, 1.614644, 0.492432, 2.713848, 1.578195, 0.480846, 3.790891, 1.304479, 1.58263, 3.78503, 1.437567, 1.499099, 2.724656, 1.309544, 1.745648, 4.597952, 1.409562, 0.526049, 5.102211, 1.307846, 0.547115, 5.102211, 1.307846, 0.468132, 5.102211, 1.307846, 0.468132, 5.102211, 1.307846, 0.547115, 4.610616, 1.121984, 0.53609, 0.476273, 1.470539, 0.518691, -4.503883, 0.929935, 0.51869, -4.149837, 0.945526, 1.357039, 0.481758, 1.327729, 1.35704, -4.149837, 0.945526, 1.357039, -3.795792, 0.961118, 2.195388, -3.795792, 0.961118, 2.195388, -3.795792, 0.961118, 4.756934, -3.13978, 0.999237, 4.620153, -3.795464, 0.953671, 4.756934, -3.137355, 0.944164, 4.620153, -3.13978, 0.999237, 4.620153, 5.235131, 1.391084, 1.169652, 3.488635, 1.426438, 1.206101, 3.491081, 1.491195, 0.951164, 3.480894, 1.232549, 1.160962, 3.478318, 1.164068, 0.951164, 3.334859, 1.316068, 0.95861, 3.479629, 1.198701, 0.741486, 3.484082, 1.316878, 0.658575, 3.334859, 1.316068, 0.95861, 3.334859, 1.316068, 0.95861, 3.491081, 1.491195, 0.951164, 3.488635, 1.426438, 1.206101, 3.334859, 1.316068, 0.95861, 3.484082, 1.316878, 0.658575, 3.490032, 1.463265, 0.727963, 5.20816, 1.156318, 0.940208, 3.478318, 1.164068, 0.951164, 3.480894, 1.232549, 1.160962, 5.224937, 1.302788, 1.228477, 3.484699, 1.327756, 1.271462, 3.488635, 1.426438, 1.206101, 3.491081, 1.491195, 0.951164, 3.490032, 1.463265, 0.727963, 5.238872, 1.424039, 0.739328, 5.215095, 1.217602, 1.129027, 3.480894, 1.232549, 1.160962, 3.484699, 1.327756, 1.271462, -3.795464, 0.953671, 4.756934, -3.795792, 0.961118, 4.756934, -3.795792, 0.961118, 2.195388, -4.149509, 0.93808, 1.357039, -3.795464, 0.953671, 2.195388, -3.795792, 0.961118, 2.195388, -4.503555, 0.922488, 0.51869, -4.149509, 0.93808, 1.357039, -4.149837, 0.945526, 1.357039, 0.885077, 2.452009, 0.028236, 0.885077, 2.452009, -0.028236, 0.702818, 2.44479, -0.000766, 0.885077, 2.452009, 0.028236, 0.702818, 2.44479, 0.000765, 0.776541, 2.009571, 0.0009, 1.328512, 2.023376, -0.059275, 0.885077, 2.452009, -0.028236, 0.944294, 2.454617, -0.0, 0.944294, 2.454617, -0.0, 0.885077, 2.452009, 0.028236, 1.328512, 2.023376, 0.059275, 0.885077, 2.452009, -0.028236, 1.328512, 2.023376, -0.059275, 0.776541, 2.009571, -0.0009, 0.702818, 2.44479, -0.000766, 0.776541, 2.009571, -0.0009, 0.776541, 2.009571, 0.0009, 2.825529, 1.094465, 1.46769, 2.522906, 1.091284, 1.518555, 2.533545, 0.844308, 1.544029, 2.522906, 1.091284, 1.518555, 1.639965, 1.052401, 1.518555, 1.649483, 0.841567, 1.540303, 1.180404, 0.829985, 1.487459, 1.171481, 1.021624, 1.46769, 1.171639, 1.020556, 1.46107, 1.639965, 1.052401, 1.518555, 1.171481, 1.021624, 1.46769, 1.180404, 0.829985, 1.487459, 2.534594, 0.822988, 1.435679, 2.523955, 1.069963, 1.410205, 2.825688, 1.093396, 1.46107, 2.523955, 1.069963, 1.410205, 2.534594, 0.822988, 1.435679, 1.650533, 0.820246, 1.431953, 1.641015, 1.03108, 1.410205, 1.650533, 0.820246, 1.431953, 1.180562, 0.828916, 1.480839, 2.980371, 0.835566, 1.495045, 2.980528, 0.834498, 1.488425, 2.825688, 1.093396, 1.46107, 2.534594, 0.822988, 1.435679, 2.980528, 0.834498, 1.488425, 2.980371, 0.835566, 1.495045, 1.650533, 0.820246, 1.431953, 2.534594, 0.822988, 1.435679, 2.533545, 0.844308, 1.544029, 1.180562, 0.828916, 1.480839, 1.650533, 0.820246, 1.431953, 1.649483, 0.841567, 1.540303, 2.533545, 0.844308, -1.544028, 2.522906, 1.091284, -1.518555, 2.825529, 1.094465, -1.46769, 1.649484, 0.841567, -1.540303, 1.639966, 1.052401, -1.518555, 2.522906, 1.091284, -1.518555, 1.180405, 0.829985, -1.487459, 1.180562, 0.828916, -1.480839, 1.171639, 1.020556, -1.46107, 1.180405, 0.829985, -1.487459, 1.171482, 1.021624, -1.46769, 1.639966, 1.052401, -1.518555, 2.534594, 0.822988, -1.435678, 2.980528, 0.834498, -1.488425, 2.825688, 1.093396, -1.46107, 2.523955, 1.069963, -1.410205, 1.641015, 1.03108, -1.410205, 1.650533, 0.820246, -1.431953, 1.641015, 1.03108, -1.410205, 1.171639, 1.020556, -1.46107, 1.180562, 0.828916, -1.480839, 2.825688, 1.093396, -1.46107, 2.980528, 0.834498, -1.488425, 2.980371, 0.835566, -1.495044, 2.980371, 0.835566, -1.495044, 2.980528, 0.834498, -1.488425, 2.534594, 0.822988, -1.435678, 2.533545, 0.844308, -1.544028, 2.534594, 0.822988, -1.435678, 1.650533, 0.820246, -1.431953, 1.180562, 0.828916, -1.480839, 1.180405, 0.829985, -1.487459, 1.649484, 0.841567, -1.540303, 5.223648, 1.293067, 0.676878, 5.211674, 1.187311, 0.751499, 5.227685, 1.174251, 0.729668, 5.211674, 1.187311, 0.751499, 5.20816, 1.156318, 0.940208, 5.223754, 1.139816, 0.939345, 5.235131, 1.391084, 1.169652, 5.241698, 1.449034, 0.940208, 5.261266, 1.465036, 0.939345, 5.223754, 1.139816, 0.939345, 5.20816, 1.156318, 0.940208, 5.215095, 1.217602, 1.129027, 5.224937, 1.302788, 1.228477, 5.235131, 1.391084, 1.169652, 5.253921, 1.400651, 1.194283, 5.261266, 1.465036, 0.939345, 5.241698, 1.449034, 0.940208, 5.238872, 1.424039, 0.739328, 5.231511, 1.207906, 1.149144, 5.215095, 1.217602, 1.129027, 5.224937, 1.302788, 1.228477, 5.258105, 1.437266, 0.716145, 5.238872, 1.424039, 0.739328, 5.223648, 1.293067, 0.676878, 3.490032, 1.463265, 0.727963, 3.484082, 1.316878, 0.658575, 5.223648, 1.293067, 0.676878, 5.231511, 1.207906, -1.149143, 5.24252, 1.30255, -1.259644, 5.224938, 1.302788, -1.228477, 5.261266, 1.465036, -0.939345, 5.258105, 1.437266, -0.716145, 5.238872, 1.424039, -0.739327, 5.253921, 1.400651, -1.194283, 5.235131, 1.391084, -1.169652, 5.224938, 1.302788, -1.228477, 5.223754, 1.139816, -0.939345, 5.231511, 1.207906, -1.149143, 5.215095, 1.217602, -1.129026, 5.261266, 1.465036, -0.939345, 5.241698, 1.449034, -0.940208, 5.235131, 1.391084, -1.169652, 5.223754, 1.139816, -0.939345, 5.20816, 1.156318, -0.940208, 5.211674, 1.187311, -0.751498, 5.227685, 1.174251, -0.729668, 5.211674, 1.187311, -0.751498, 5.223648, 1.293067, -0.676877, 5.258105, 1.437266, -0.716145, 5.241079, 1.29175, -0.646756, 5.223648, 1.293067, -0.676877, 5.211674, 1.187311, -0.751498, 3.479629, 1.198701, -0.741486, 3.484082, 1.316878, -0.658574, 4.658138, 1.624434, -0.29535, 4.753134, 1.927778, -0.269043, 4.753134, 1.927778, 0.269044, 4.753134, 1.927778, -0.269043, 4.82426, 2.113887, -0.155332, 4.82426, 2.113887, 0.155333};
+
+       // set normals for Draken plane
+       static GLfloat j_35_draken_normals[] = {-0.073977, -0.005341, -0.997223, -0.132298, -0.586322, -0.799158, -0.128483, 0.002197, -0.991699, -0.052278, 0.956603, -0.28663, -0.087924, 0.948302, 0.304849, -0.052187, 0.956603, 0.28663, -0.073977, -0.005341, 0.997223, -0.132298, -0.586322, 0.799158, -0.06531, -0.623585, 0.778985, -0.06531, -0.623585, -0.778985, -0.122654, -0.945341, -0.302072, -0.132298, -0.586322, -0.799158, -0.052278, 0.956603, -0.28663, -0.106967, 0.589282, -0.800775, -0.088321, 0.944121, -0.317454, -0.066225, 0.617298, 0.783929, -0.128483, 0.002197, 0.991699, -0.073977, -0.005341, 0.997223, -0.053255, -0.957945, -0.281838, -0.122654, -0.945341, 0.302072, -0.122654, -0.945341, -0.302072, -0.066225, 0.617298, -0.783929, -0.128483, 0.002197, -0.991699, -0.106967, 0.589282, -0.800775, -0.052187, 0.956603, 0.28663, -0.105686, 0.582446, 0.805933, -0.066225, 0.617298, 0.783929, -0.06531, -0.623585, 0.778985, -0.122654, -0.945341, 0.302072, -0.053255, -0.957945, 0.281838, 0.055269, -0.572405, 0.818079, 0.114505, -0.012879, 0.993316, 0.062136, -0.00885, 0.998016, 0.02179, -0.633686, -0.773247, 0.062136, -0.00885, -0.998016, 0.055269, -0.572405, -0.818079, -0.013703, 0.964415, 0.263924, 0.040559, 0.958647, -0.281594, -0.013703, 0.964415, -0.263924, 0.02179, -0.633686, 0.773247, 0.062136, -0.00885, 0.998016, 0.012268, -0.006409, 0.999878, 0.018586, -0.960967, -0.275979, 0.055269, -0.572405, -0.818079, 0.048616, -0.946287, -0.319559, -0.013703, 0.964415, -0.263924, 0.054323, 0.601001, -0.797357, -0.005463, 0.641285, -0.767235, 0.012268, -0.006409, 0.999878, 0.054323, 0.601001, 0.797357, -0.005463, 0.641285, 0.767235, 0.018586, -0.960967, 0.275979, 0.048616, -0.946287, -0.319559, 0.048616, -0.946287, 0.319559, 0.012268, -0.006409, -0.999878, 0.054323, 0.601001, -0.797357, 0.062136, -0.00885, -0.998016, -0.013703, 0.964415, 0.263924, 0.054323, 0.601001, 0.797357, 0.040559, 0.958647, 0.281594, 0.201819, -0.931547, -0.302377, 0.208228, -0.578997, -0.788263, 0.198798, -0.98001, 0.0, 0.048616, -0.946287, -0.319559, 0.111759, -0.580737, -0.80636, 0.111667, -0.944121, -0.310068, 0.054323, 0.601001, -0.797357, 0.132694, 0.949095, -0.285592, 0.128208, 0.591388, -0.796106, 0.062136, -0.00885, 0.998016, 0.128208, 0.591388, 0.796106, 0.054323, 0.601001, 0.797357, 0.048616, -0.946287, 0.319559, 0.111667, -0.944121, -0.310068, 0.111667, -0.944121, 0.310068, 0.062136, -0.00885, -0.998016, 0.128208, 0.591388, -0.796106, 0.114505, -0.012879, -0.993316, 0.054323, 0.601001, 0.797357, 0.132694, 0.949095, 0.285592, 0.040559, 0.958647, 0.281594, 0.048616, -0.946287, 0.319559, 0.111759, -0.580737, 0.80636, 0.055269, -0.572405, 0.818079, 0.055269, -0.572405, -0.818079, 0.114505, -0.012879, -0.993316, 0.111759, -0.580737, -0.80636, 0.040559, 0.958647, 0.281594, 0.132694, 0.949095, -0.285592, 0.040559, 0.958647, -0.281594, 0.239265, 0.567309, -0.787957, 0.247475, 0.920469, -0.302408, 0.25721, 0.966338, 0.0, 0.239265, 0.567309, 0.787957, 0.239204, -0.01175, 0.970885, 0.25721, 0.966338, 0.0, 0.201819, -0.931547, 0.302377, 0.201819, -0.931547, -0.302377, 0.198798, -0.98001, 0.0, 0.239265, 0.567309, -0.787957, 0.239204, -0.01175, -0.970885, 0.221015, -0.007355, -0.975219, 0.247475, 0.920469, 0.302408, 0.239265, 0.567309, 0.787957, 0.25721, 0.966338, 0.0, 0.208228, -0.578997, 0.788263, 0.201819, -0.931547, 0.302377, 0.198798, -0.98001, 0.0, 0.208228, -0.578997, -0.788263, 0.239204, -0.01175, -0.970885, 0.198798, -0.98001, 0.0, 0.247475, 0.920469, -0.302408, 0.247475, 0.920469, 0.302408, 0.25721, 0.966338, 0.0, 0.208228, -0.578997, 0.788263, 0.239204, -0.01175, 0.970885, 0.221015, -0.007355, 0.975219, 0.128208, 0.591388, 0.796106, 0.221015, -0.007355, 0.975219, 0.239265, 0.567309, 0.787957, 0.111667, -0.944121, 0.310068, 0.201819, -0.931547, -0.302377, 0.201819, -0.931547, 0.302377, 0.128208, 0.591388, -0.796106, 0.221015, -0.007355, -0.975219, 0.114505, -0.012879, -0.993316, 0.132694, 0.949095, 0.285592, 0.239265, 0.567309, 0.787957, 0.247475, 0.920469, 0.302408, 0.111759, -0.580737, 0.80636, 0.201819, -0.931547, 0.302377, 0.208228, -0.578997, 0.788263, 0.114505, -0.012879, -0.993316, 0.208228, -0.578997, -0.788263, 0.111759, -0.580737, -0.80636, 0.132694, 0.949095, 0.285592, 0.247475, 0.920469, -0.302408, 0.132694, 0.949095, -0.285592, 0.114505, -0.012879, 0.993316, 0.208228, -0.578997, 0.788263, 0.221015, -0.007355, 0.975219, 0.132694, 0.949095, -0.285592, 0.239265, 0.567309, -0.787957, 0.128208, 0.591388, -0.796106, 0.111759, -0.580737, -0.80636, 0.201819, -0.931547, -0.302377, 0.111667, -0.944121, -0.310068, 0.018586, -0.960967, 0.275979, 0.055269, -0.572405, 0.818079, 0.02179, -0.633686, 0.773247, -0.053255, -0.957945, 0.281838, 0.02179, -0.633686, 0.773247, -0.06531, -0.623585, 0.778985, -0.066225, 0.617298, 0.783929, -0.013703, 0.964415, 0.263924, -0.052187, 0.956603, 0.28663, -0.073977, -0.005341, -0.997223, -0.005463, 0.641285, -0.767235, 0.012268, -0.006409, -0.999878, -0.053255, -0.957945, 0.281838, 0.018586, -0.960967, -0.275979, 0.018586, -0.960967, 0.275979, -0.073977, -0.005341, 0.997223, -0.005463, 0.641285, 0.767235, -0.066225, 0.617298, 0.783929, -0.066225, 0.617298, -0.783929, -0.013703, 0.964415, -0.263924, -0.005463, 0.641285, -0.767235, -0.053255, -0.957945, -0.281838, 0.02179, -0.633686, -0.773247, 0.018586, -0.960967, -0.275979, -0.06531, -0.623585, 0.778985, 0.012268, -0.006409, 0.999878, -0.073977, -0.005341, 0.997223, -0.052187, 0.956603, 0.28663, -0.013703, 0.964415, -0.263924, -0.052278, 0.956603, -0.28663, -0.06531, -0.623585, -0.778985, 0.012268, -0.006409, -0.999878, 0.02179, -0.633686, -0.773247, -0.031343, -0.950438, 0.309244, -0.019379, -0.58797, 0.808618, -0.031343, -0.950591, 0.308756, -0.019349, -0.586932, -0.809381, 0.0, -0.000793, -0.999969, 0.0, 0.000793, -0.999969, 0.031343, 0.951353, 0.306467, 0.03122, 0.946776, -0.320353, 0.031343, 0.95117, 0.306986, -0.019349, -0.586932, 0.809381, 0.0, -0.000793, 0.999969, -0.019379, -0.58797, 0.808618, -0.031343, -0.950438, -0.309244, -0.019379, -0.58797, -0.808618, -0.019349, -0.586932, -0.809381, 0.019379, 0.58797, -0.808618, 0.03122, 0.946776, -0.320353, 0.03122, 0.946806, -0.320231, 0.0, 0.000793, 0.999969, 0.019105, 0.579394, 0.814814, 0.0, -0.000793, 0.999969, -0.031343, -0.950438, -0.309244, -0.031343, -0.950591, 0.308756, -0.031343, -0.950591, -0.308756, 0.0, 0.000793, -0.999969, 0.019349, 0.586932, -0.809381, 0.019379, 0.58797, -0.808618, 0.019105, 0.580126, 0.814295, 0.031343, 0.95117, 0.306986, 0.019105, 0.579394, 0.814814, -0.055025, -0.946196, 0.318827, -0.055239, -0.949767, -0.307962, -0.0553, -0.950591, -0.305368, 0.033967, 0.584155, -0.810907, 0.000214, 0.00412, -0.999969, 0.034303, 0.589557, -0.80697, 0.055208, 0.949065, 0.31016, 0.034303, 0.589557, 0.80697, 0.033967, 0.584155, 0.810907, -0.034303, -0.589557, 0.80697, -0.054994, -0.94525, 0.321604, -0.055025, -0.946196, 0.318827, -0.000214, -0.00412, -0.999969, -0.033509, -0.576342, -0.816492, 0.000214, 0.00412, -0.999969, 0.055208, 0.949065, -0.31016, 0.055239, 0.949858, 0.307749, 0.055208, 0.949065, 0.31016, -0.000214, -0.00412, 0.999969, -0.033967, -0.584155, 0.810907, -0.034303, -0.589557, 0.80697, -0.033845, -0.581988, -0.812464, -0.055239, -0.949767, -0.307962, -0.033509, -0.576342, -0.816492, 0.055208, 0.949065, -0.31016, 0.034303, 0.589557, -0.80697, 0.055239, 0.949858, -0.307749, 0.033967, 0.584155, 0.810907, 0.000214, 0.00412, 0.999969, -0.000214, -0.00412, 0.999969, -0.999298, 0.037049, 9.2e-05, -0.999298, 0.036988, 9.2e-05, -0.999298, 0.036988, 9.2e-05, -0.999298, 0.036988, -9.2e-05, -0.999298, 0.036958, -3.1e-05, -0.999298, 0.036988, -9.2e-05, -0.999298, 0.036836, -0.000977, -0.999298, 0.037111, -9.2e-05, -0.999298, 0.036836, -0.000977, -0.999329, 0.036317, 0.000671, -0.999298, 0.037049, 9.2e-05, -0.999298, 0.037049, 9.2e-05, -0.999298, 0.036927, 3.1e-05, -0.999298, 0.036958, -3.1e-05, -0.999298, 0.036958, -3.1e-05, -0.999298, 0.037141, -9.2e-05, -0.999298, 0.037049, -9.2e-05, -0.999298, 0.037111, -9.2e-05, -0.999329, 0.036317, 0.000671, -0.999329, 0.036042, -0.000336, -0.999329, 0.036317, 0.000671, -0.999298, 0.036988, 9.2e-05, -0.999298, 0.036927, 3.1e-05, -0.999298, 0.036927, 3.1e-05, -0.999298, 0.037049, -9.2e-05, -0.999298, 0.036988, -9.2e-05, -0.999298, 0.037049, -9.2e-05, -0.999298, 0.036836, -0.000977, -0.999329, 0.036042, -0.000336, -0.999329, 0.036042, -0.000336, -0.999298, 0.036958, 3.1e-05, -0.999298, 0.036836, -6.1e-05, -0.999298, 0.036958, -3.1e-05, -0.999298, 0.037111, -9.2e-05, -0.999298, 0.036836, -6.1e-05, -0.999298, 0.036836, -0.000977, -0.999329, 0.036042, -0.000336, -0.999298, 0.036836, -6.1e-05, -0.999329, 0.036287, 0.000671, -0.999298, 0.036988, -9.2e-05, -0.999298, 0.036836, -6.1e-05, -0.999298, 0.037049, -9.2e-05, -0.999298, 0.037049, 9.2e-05, -0.999298, 0.036836, -6.1e-05, -0.999298, 0.036988, 9.2e-05, -0.999298, 0.037049, -3.1e-05, -0.999298, 0.037049, 0.0, -0.999298, 0.037049, -3.1e-05, -0.999298, 0.036927, -0.001007, -0.999329, 0.036134, -0.000305, -0.999329, 0.036134, -0.000305, -0.999298, 0.037049, 3.1e-05, -0.999298, 0.03708, 0.0, -0.999298, 0.03708, 0.0, -0.999298, 0.037049, 0.0, -0.999298, 0.036836, -6.1e-05, -0.999298, 0.037049, 0.0, -0.999298, 0.036927, -0.001007, -0.999298, 0.037202, -0.000183, -0.999298, 0.036927, -0.001007, -0.999329, 0.036348, 0.000763, -0.999298, 0.037049, 3.1e-05, -0.999298, 0.037049, 3.1e-05, -0.999298, 0.036836, -6.1e-05, -0.999298, 0.036897, 6.1e-05, -0.999298, 0.036836, -6.1e-05, -0.999298, 0.037202, -0.000183, -0.999298, 0.037049, -3.1e-05, -0.999298, 0.037202, -0.000183, -0.999329, 0.036348, 0.000763, -0.999329, 0.036134, -0.000305, -0.999329, 0.036348, 0.000763, -0.999298, 0.03708, 0.0, -0.999298, 0.036897, 6.1e-05, -0.999298, 0.036897, 6.1e-05, 0.239204, -0.01175, 0.970885, 0.198798, -0.98001, 0.0, 0.999695, -0.023835, 0.0, 0.239204, -0.01175, -0.970885, 0.25721, 0.966338, 0.0, 0.999695, -0.023835, 0.0, 0.198798, -0.98001, 0.0, 0.239204, -0.01175, -0.970885, 0.999695, -0.023835, 0.0, 0.25721, 0.966338, 0.0, 0.239204, -0.01175, 0.970885, 0.999695, -0.023835, 0.0, 0.090274, -0.789422, -0.607135, -0.077792, -0.803797, 0.58974, -0.077792, -0.803797, -0.58974, -0.077792, -0.803797, -0.58974, -0.188696, -0.785577, 0.589251, -0.188696, -0.785577, -0.589251, -0.188696, -0.785577, -0.589251, -0.558641, -0.655049, 0.508682, -0.558641, -0.655049, -0.508682, -0.558641, -0.655049, -0.508682, -0.781182, -0.314188, 0.539415, -0.781182, -0.314188, -0.539415, -0.188696, -0.785577, -0.589251, -0.036561, -0.274026, -0.960997, -0.077792, -0.803797, -0.58974, 0.043947, -0.231391, -0.971831, 0.24131, -0.59093, -0.769768, 0.090274, -0.789422, -0.607135, -0.558641, -0.655049, -0.508682, -0.088687, -0.283395, -0.954863, -0.188696, -0.785577, -0.589251, -0.077792, -0.803797, -0.58974, 0.043947, -0.231391, -0.971831, 0.090274, -0.789422, -0.607135, -0.781182, -0.314188, -0.539415, -0.392529, -0.265572, -0.880551, -0.558641, -0.655049, -0.508682, -0.188696, -0.785577, 0.589251, -0.036561, -0.274026, 0.960997, -0.088687, -0.283395, 0.954863, 0.24131, -0.59093, 0.769768, 0.043947, -0.231391, 0.971831, 0.090274, -0.789422, 0.607135, -0.558641, -0.655049, 0.508682, -0.088687, -0.283395, 0.954863, -0.392529, -0.265572, 0.880551, -0.077792, -0.803797, 0.58974, 0.043947, -0.231391, 0.971831, -0.036561, -0.274026, 0.960997, -0.781182, -0.314188, 0.539415, -0.392529, -0.265572, 0.880551, -0.553209, -0.282052, 0.783807, 0.24131, -0.59093, -0.769768, 0.090274, -0.789422, 0.607135, 0.090274, -0.789422, -0.607135, -0.021882, 0.999756, 0.0, -0.046602, 0.822626, -0.566637, -0.046754, 0.998901, 0.0, -0.019929, 0.897855, -0.439772, -0.049165, 0.430616, -0.901181, -0.046602, 0.822626, -0.566637, -0.01648, 0.562487, -0.826624, -0.050508, 0.20835, -0.976745, -0.049165, 0.430616, -0.901181, -0.050508, 0.20835, 0.976745, -0.01648, 0.562487, 0.826624, -0.049165, 0.430616, 0.901181, -0.049165, 0.430616, 0.901181, -0.019929, 0.897855, 0.439772, -0.046602, 0.822626, 0.566637, -0.046602, 0.822626, 0.566637, -0.021882, 0.999756, 0.0, -0.046754, 0.998901, 0.0, -0.019929, 0.897855, 0.439772, -0.05005, 0.998718, 0.0, -0.021882, 0.999756, 0.0, -0.01648, 0.562487, -0.826624, -0.027741, 0.796442, -0.604053, -0.00174, 0.356975, -0.93408, -0.019929, 0.897855, -0.439772, -0.05005, 0.998718, 0.0, -0.027741, 0.796442, -0.604053, -0.014222, 0.298166, 0.954405, -0.00174, 0.356975, 0.93408, -0.01648, 0.562487, 0.826624, -0.014222, 0.298166, -0.954405, -0.00174, 0.356975, -0.93408, 0.005554, 0.102451, -0.99469, -0.01648, 0.562487, 0.826624, -0.027741, 0.796411, 0.604053, -0.019929, 0.897855, 0.439772, -0.05005, 0.998718, 0.0, -0.075442, 0.801599, 0.593066, -0.101718, 0.994781, 0.0, -0.00174, 0.356975, 0.93408, 0.004761, 0.092837, 0.995666, -0.022858, 0.375774, 0.926389, -0.027741, 0.796442, -0.604053, -0.022858, 0.375774, -0.926389, -0.00174, 0.356975, -0.93408, -0.027741, 0.796411, 0.604053, -0.022858, 0.375774, 0.926389, -0.075442, 0.801599, 0.593066, -0.00174, 0.356975, -0.93408, 0.004761, 0.092837, -0.995666, 0.005554, 0.102451, -0.99469, -0.05005, 0.998718, 0.0, -0.075442, 0.801599, -0.593066, -0.027741, 0.796442, -0.604053, -0.046602, 0.822626, 0.566637, -0.093051, 0.995636, 0.0, -0.589343, 0.610706, 0.528825, -0.049165, 0.430616, -0.901181, -0.589343, 0.610706, -0.528825, -0.046602, 0.822626, -0.566637, -0.046602, 0.822626, -0.566637, -0.093051, 0.995636, 0.0, -0.046754, 0.998901, 0.0, -0.050508, 0.20835, 0.976745, -0.746513, 0.096805, 0.658254, -0.730979, 0.006958, 0.682333, -0.050508, 0.20835, -0.976745, -0.746513, 0.096805, -0.658254, -0.049165, 0.430616, -0.901181, -0.049165, 0.430616, 0.901181, -0.589343, 0.610706, 0.528825, -0.746513, 0.096805, 0.658254, -0.093051, 0.995636, 0.0, -0.589343, 0.610706, -0.528825, -0.589343, 0.610706, 0.528825, -0.746513, 0.096805, -0.658254, -0.589343, 0.610706, 0.528825, -0.589343, 0.610706, -0.528825, -0.730979, 0.006958, -0.682333, -0.746513, 0.096805, 0.658254, -0.746513, 0.096805, -0.658254, 0.219794, 0.550676, -0.805231, 0.298654, 0.954344, 0.0, 0.373516, 0.92761, 0.0, -0.032411, 0.699576, -0.713797, -0.02234, -0.012391, -0.999664, -0.057497, 0.79046, -0.60979, 0.219794, 0.550676, 0.805231, 0.298654, 0.954344, 0.0, -0.032411, 0.699576, 0.713797, -0.032411, 0.699576, 0.713797, -0.02234, -0.012391, 0.999664, 0.219794, 0.550676, 0.805231, -0.032411, 0.699576, -0.713797, -0.057497, 0.79046, 0.60979, -0.032411, 0.699576, 0.713797, 0.298654, 0.954344, 0.0, -0.032411, 0.699576, -0.713797, -0.032411, 0.699576, 0.713797, -0.926603, -0.375958, 0.0, -0.926603, -0.375958, 0.0, -0.926603, -0.375958, 0.0, 0.54088, 0.84109, 0.0, 0.0, 0.0, 1.0, 0.576769, 0.025361, 0.816492, 0.0, 0.0, -1.0, 0.61269, -0.790307, 0.0, 0.043977, -0.999023, 0.0, 0.576769, 0.025361, -0.816492, 0.576769, 0.025361, 0.816492, 0.61269, -0.790307, 0.0, 0.0, 0.0, 1.0, 0.61269, -0.790307, 0.0, 0.576769, 0.025361, 0.816492, 0.0, 0.0, -1.0, 0.54088, 0.84109, 0.0, 0.576769, 0.025361, -0.816492, 0.042024, 0.943327, -0.329173, 0.173345, 0.005799, -0.984832, 0.423292, 0.013886, -0.90585, 0.00531, -0.999847, -0.015931, 0.032228, -0.984985, -0.169561, -0.018891, -0.999237, -0.03415, -0.06885, 0.985229, -0.156652, -0.051546, 0.975127, -0.215461, -0.053499, 0.980956, -0.186682, 0.125187, -0.940001, -0.317362, 0.53737, 0.068209, -0.840571, 0.423292, 0.013886, -0.90585, 0.00531, -0.999847, -0.015931, 0.210852, -0.694357, -0.68804, 0.125187, -0.940001, -0.317362, 0.122959, -0.981994, -0.143315, 0.50969, -0.755333, -0.411878, 0.508438, -0.85931, -0.055177, 0.083651, 0.983856, -0.158055, 0.600238, 0.665365, 0.443831, 0.543199, 0.838069, -0.050203, 0.125614, 0.815973, -0.564257, 0.556749, -0.117985, -0.82223, 0.214148, 0.034364, -0.976196, 0.032228, -0.984985, -0.169561, 0.132145, -0.798517, -0.587268, 0.045991, -0.96942, -0.241005, 0.076327, 0.800653, -0.594226, 0.214148, 0.034364, -0.976196, 0.196142, 0.033753, -0.97998, -0.000977, 0.982879, -0.184179, 0.145604, 0.876888, 0.458052, 0.083651, 0.983856, -0.158055, 0.076327, -0.970336, -0.229316, 0.153661, -0.781549, -0.604572, 0.122959, -0.981994, -0.143315, 0.137242, -0.753899, -0.642445, 0.214148, 0.034364, -0.976196, 0.153661, -0.781549, -0.604572, 0.153661, -0.781549, -0.604572, 0.556749, -0.117985, -0.82223, 0.50969, -0.755333, -0.411878, 0.042024, 0.943327, -0.329173, 0.53737, 0.068209, -0.840571, 0.167211, 0.703726, -0.690481, 0.125187, -0.940001, -0.317362, 0.173345, 0.005799, -0.984832, 0.132145, -0.798517, -0.587268, 0.076327, -0.970336, -0.229316, 0.196936, -0.931852, 0.304636, 0.111118, -0.992889, -0.042451, -0.000977, 0.982879, -0.184179, 0.125614, 0.815973, -0.564257, 0.076327, 0.800653, -0.594226, 0.015748, -0.988678, -0.149052, 0.045991, -0.96942, -0.241005, 0.03824, -0.985717, -0.163976, 0.083651, 0.983856, -0.158055, 0.56209, 0.651631, -0.509262, 0.125614, 0.815973, -0.564257, 0.122959, -0.981994, -0.143315, 0.554338, -0.727775, 0.403699, 0.196936, -0.931852, 0.304636, -0.053499, 0.980956, -0.186682, 0.038148, 0.80633, -0.590197, 0.042024, 0.943327, -0.329173, -0.018891, -0.999237, -0.03415, 0.015748, -0.988678, -0.149052, -0.028504, -0.999115, -0.03061, 0.286752, -0.91464, 0.284921, 0.289499, -0.957152, 0.0, 0.111118, -0.992889, -0.042451, 0.0206, 0.999756, -0.007324, 0.223914, 0.964568, -0.139348, 0.220771, 0.875668, 0.429487, 0.196936, -0.931852, 0.304636, 0.286752, -0.91464, 0.284921, 0.111118, -0.992889, -0.042451, 0.220771, 0.875668, 0.429487, 0.145604, 0.876888, 0.458052, 0.0206, 0.999756, -0.007324, 0.501724, -0.022889, 0.864711, 0.600238, 0.665365, 0.443831, 0.145604, 0.876888, 0.458052, 0.554338, -0.727775, 0.403699, 0.501724, -0.022889, 0.864711, 0.196936, -0.931852, 0.304636, 0.50969, -0.755333, -0.411878, 0.969665, -0.194159, -0.148289, 0.992065, -0.111423, 0.057802, 0.56209, 0.651631, -0.509262, 0.969665, -0.194159, -0.148289, 0.556749, -0.117985, -0.82223, 0.554338, -0.727775, 0.403699, 0.986389, -0.134404, 0.094516, 0.693838, -0.137242, 0.70687, 0.508438, -0.85931, -0.055177, 0.992065, -0.111423, 0.057802, 0.999908, -0.012757, -0.003723, 0.508438, -0.85931, -0.055177, 0.98529, -0.16538, -0.042909, 0.554338, -0.727775, 0.403699, 0.543199, 0.838069, -0.050203, 0.99939, 0.013855, 0.032044, 0.992615, -0.120945, -0.007172, 0.543199, 0.838069, -0.050203, 0.999969, -0.007508, -0.001404, 0.56209, 0.651631, -0.509262, 0.600238, 0.665365, 0.443831, 0.986389, -0.134404, 0.094516, 0.99939, 0.013855, 0.032044, 0.412336, 0.907559, 0.078982, 0.441939, 0.741783, -0.504379, 0.493881, 0.749413, -0.440901, 0.41731, -0.788568, 0.451643, 0.378399, -0.924009, 0.054231, 0.422437, -0.72982, 0.537431, 0.412336, 0.907559, 0.078982, 0.415357, 0.777673, 0.471847, 0.378216, 0.923246, 0.067263, -0.051546, 0.975127, -0.215461, 0.076327, 0.800653, -0.594226, 0.038148, 0.80633, -0.590197, 0.03824, -0.985717, -0.163976, 0.076327, -0.970336, -0.229316, 0.111118, -0.992889, -0.042451, 0.132145, -0.798517, -0.587268, 0.196142, 0.033753, -0.97998, 0.137242, -0.753899, -0.642445, 0.045991, -0.96942, -0.241005, 0.137242, -0.753899, -0.642445, 0.076327, -0.970336, -0.229316, -0.051973, 0.99115, -0.122044, -0.000977, 0.982879, -0.184179, -0.051546, 0.975127, -0.215461, 0.038148, 0.80633, -0.590197, 0.196142, 0.033753, -0.97998, 0.173345, 0.005799, -0.984832, 0.501724, -0.022889, 0.864711, 0.145604, 0.876888, 0.458052, 0.220771, 0.875668, 0.429487, 0.286752, -0.91464, 0.284921, 0.196936, -0.931852, 0.304636, 0.501724, -0.022889, 0.864711, 0.994507, 0.101535, -0.024598, 0.220771, 0.875668, 0.429487, 0.223914, 0.964568, -0.139348, 0.286752, -0.91464, 0.284921, 0.994507, 0.101535, -0.024598, 0.289499, -0.957152, 0.0, -0.06885, 0.985229, -0.156652, -0.096835, 0.994812, -0.031129, -0.107852, 0.993774, -0.02707, -0.053499, 0.980956, -0.186682, -0.066042, 0.99765, -0.017396, -0.096835, 0.994812, -0.031129, 0.167211, 0.703726, -0.690481, -0.066042, 0.99765, -0.017396, 0.042024, 0.943327, -0.329173, 0.53737, 0.068209, -0.840571, 0.210852, -0.694357, -0.68804, 0.167211, 0.703726, -0.690481, 0.147557, -0.639546, -0.754448, 0.167211, 0.703726, -0.690481, 0.210852, -0.694357, -0.68804, 0.616199, 0.077395, 0.783746, 0.422437, -0.72982, 0.537431, 0.442824, 0.101169, 0.890866, 0.415357, 0.777673, 0.471847, 0.999298, 0.026612, 0.026093, 0.378216, 0.923246, 0.067263, 0.441939, 0.741783, -0.504379, 0.999298, 0.026612, 0.026093, 0.459609, 0.057253, -0.886258, 0.422437, -0.72982, 0.537431, 0.999298, 0.026612, 0.026093, 0.442824, 0.101169, 0.890866, 0.4232, -0.727958, -0.539354, 0.999298, 0.026612, 0.026093, 0.378399, -0.924009, 0.054231, 0.468429, -0.768517, -0.435835, 0.378399, -0.924009, 0.054231, 0.340678, -0.938292, 0.059114, 0.419111, 0.794519, 0.439314, 0.442824, 0.101169, 0.890866, 0.415357, 0.777673, 0.471847, 0.579424, 0.004608, -0.814966, 0.4232, -0.727958, -0.539354, 0.468429, -0.768517, -0.435835, -0.979095, -0.043153, -0.198614, -0.999023, -0.043947, 0.0, -0.979095, -0.043153, -0.198614, -0.920164, -0.040498, -0.389355, -0.979095, -0.043153, -0.198614, -0.979095, -0.043153, -0.198614, -0.920164, -0.040529, -0.389355, -0.920164, -0.040498, -0.389355, -0.920164, -0.040498, -0.389355, 0.173315, 0.005799, 0.984832, 0.042024, 0.943327, 0.329173, 0.423292, 0.013886, 0.90585, 0.032228, -0.984985, 0.169561, 0.00531, -0.999847, 0.015931, -0.018891, -0.999237, 0.03415, -0.051546, 0.975127, 0.215461, -0.06885, 0.985229, 0.156652, -0.053499, 0.980956, 0.186682, 0.53737, 0.068209, 0.840571, 0.125187, -0.940001, 0.317362, 0.423292, 0.013886, 0.90585, 0.210852, -0.694357, 0.68804, 0.00531, -0.999847, 0.015931, 0.125187, -0.940001, 0.317362, 0.122959, -0.981994, 0.143315, 0.50969, -0.755333, 0.411878, 0.153661, -0.781549, 0.604572, 0.083651, 0.983856, 0.158055, 0.600238, 0.665365, -0.443831, 0.145604, 0.876888, -0.458052, 0.556749, -0.117985, 0.82223, 0.125614, 0.815973, 0.564257, 0.214148, 0.034364, 0.976196, 0.032228, -0.984985, 0.169561, 0.132145, -0.798517, 0.587268, 0.125187, -0.940001, 0.317362, 0.214148, 0.034364, 0.976196, 0.076327, 0.800653, 0.594226, 0.196142, 0.033753, 0.97998, 0.145604, 0.876888, -0.458052, -0.000977, 0.982879, 0.184179, 0.083651, 0.983856, 0.158055, 0.076327, -0.970336, 0.229316, 0.153661, -0.781549, 0.604572, 0.137242, -0.753899, 0.642445, 0.137242, -0.753899, 0.642445, 0.214148, 0.034364, 0.976196, 0.196142, 0.033753, 0.97998, 0.153661, -0.781549, 0.604572, 0.556749, -0.117985, 0.82223, 0.214148, 0.034364, 0.976196, 0.042024, 0.943327, 0.329173, 0.53737, 0.068209, 0.840571, 0.423292, 0.013886, 0.90585, 0.125187, -0.940001, 0.317362, 0.173315, 0.005799, 0.984832, 0.423292, 0.013886, 0.90585, 0.196936, -0.931852, -0.304636, 0.076327, -0.970336, 0.229316, 0.111118, -0.992889, 0.042451, 0.125614, 0.815973, 0.564257, -0.000977, 0.982879, 0.184179, 0.076327, 0.800653, 0.594226, 0.015748, -0.988678, 0.149052, 0.045991, -0.96942, 0.241005, 0.032228, -0.984985, 0.169561, 0.56209, 0.651631, 0.509262, 0.083651, 0.983856, 0.158055, 0.125614, 0.815973, 0.564257, 0.554338, -0.727775, -0.403699, 0.122959, -0.981994, 0.143315, 0.196936, -0.931852, -0.304636, 0.038148, 0.80633, 0.590197, -0.053499, 0.980956, 0.186682, 0.042024, 0.943327, 0.329173, 0.015748, -0.988678, 0.149052, -0.018891, -0.999237, 0.03415, -0.028504, -0.999115, 0.03061, 0.286752, -0.914609, -0.284921, 0.111118, -0.992889, 0.042451, 0.289499, -0.957152, 0.0, 0.0206, 0.999756, 0.007324, 0.220771, 0.875668, -0.429487, 0.223914, 0.964568, 0.139348, 0.196936, -0.931852, -0.304636, 0.111118, -0.992889, 0.042451, 0.286752, -0.914609, -0.284921, 0.220771, 0.875668, -0.429487, 0.0206, 0.999756, 0.007324, 0.145604, 0.876888, -0.458052, 0.600238, 0.665365, -0.443831, 0.501694, -0.022889, -0.864711, 0.145604, 0.876888, -0.458052, 0.501694, -0.022889, -0.864711, 0.554338, -0.727775, -0.403699, 0.196936, -0.931852, -0.304636, 0.50969, -0.755333, 0.411878, 0.969665, -0.194159, 0.148289, 0.556749, -0.117985, 0.82223, 0.969665, -0.194159, 0.148289, 0.56209, 0.651631, 0.509262, 0.556749, -0.117985, 0.82223, 0.986389, -0.134404, -0.094516, 0.554338, -0.727775, -0.403699, 0.693838, -0.137242, -0.70687, 0.508408, -0.85931, 0.055177, 0.992065, -0.111423, -0.057802, 0.50969, -0.755333, 0.411878, 0.98529, -0.16538, 0.042909, 0.508408, -0.85931, 0.055177, 0.554338, -0.727775, -0.403699, 0.543199, 0.838069, 0.050203, 0.99939, 0.013825, -0.032044, 0.600238, 0.665365, -0.443831, 0.999969, -0.007508, 0.001404, 0.543199, 0.838069, 0.050203, 0.56209, 0.651631, 0.509262, 0.600238, 0.665365, -0.443831, 0.986389, -0.134404, -0.094516, 0.693838, -0.137242, -0.70687, 0.459609, 0.057253, 0.886258, 0.493881, 0.749413, 0.440901, 0.579424, 0.004608, 0.814966, 0.441939, 0.741783, 0.504379, 0.412336, 0.90759, -0.078982, 0.493881, 0.749413, 0.440901, 0.076327, 0.800653, 0.594226, -0.051546, 0.975127, 0.215461, 0.038148, 0.80633, 0.590197, 0.03824, -0.985717, 0.163976, 0.076327, -0.970336, 0.229316, 0.045991, -0.96942, 0.241005, 0.132145, -0.798517, 0.587268, 0.196142, 0.033753, 0.97998, 0.173315, 0.005799, 0.984832, 0.045991, -0.96942, 0.241005, 0.137242, -0.753899, 0.642445, 0.132145, -0.798517, 0.587268, -0.000977, 0.982879, 0.184179, -0.051973, 0.99115, 0.122044, -0.051546, 0.975127, 0.215461, 0.196142, 0.033753, 0.97998, 0.038148, 0.80633, 0.590197, 0.173315, 0.005799, 0.984832, 0.501694, -0.022889, -0.864711, 0.220771, 0.875668, -0.429487, 0.145604, 0.876888, -0.458052, 0.286752, -0.914609, -0.284921, 0.501694, -0.022889, -0.864711, 0.196936, -0.931852, -0.304636, 0.220771, 0.875668, -0.429487, 0.994507, 0.101535, 0.024598, 0.223914, 0.964568, 0.139348, 0.994507, 0.101535, 0.024598, 0.286752, -0.914609, -0.284921, 0.289499, -0.957152, 0.0, -0.06885, 0.985229, 0.156652, -0.096835, 0.994812, 0.031129, -0.053499, 0.980956, 0.186682, -0.053499, 0.980956, 0.186682, -0.066042, 0.99765, 0.017396, 0.042024, 0.943327, 0.329173, -0.066042, 0.99765, 0.017396, 0.167211, 0.703726, 0.690481, 0.042024, 0.943327, 0.329173, 0.53737, 0.068209, 0.840571, 0.167211, 0.703726, 0.690481, 0.210852, -0.694357, 0.68804, 0.147557, -0.639546, 0.754448, 0.167211, 0.703726, 0.690481, 0.11652, 0.659444, 0.742637, 0.41731, -0.788568, -0.451643, 0.378399, -0.924009, -0.054231, 0.340678, -0.938292, -0.059114, 0.415357, 0.777673, -0.471847, 0.999298, 0.026612, -0.026093, 0.442824, 0.101169, -0.890866, 0.441939, 0.741783, 0.504379, 0.999298, 0.026612, -0.026093, 0.378216, 0.923246, -0.067263, 0.999298, 0.026612, -0.026093, 0.422437, -0.72982, -0.537431, 0.442824, 0.101169, -0.890866, 0.999298, 0.026612, -0.026093, 0.4232, -0.727958, 0.539354, 0.378399, -0.924009, -0.054231, 0.412336, 0.90759, -0.078982, 0.415357, 0.777673, -0.471847, 0.419111, 0.794519, -0.439314, 0.616199, 0.077395, -0.783746, 0.422437, -0.72982, -0.537431, 0.41731, -0.788568, -0.451643, 0.378399, -0.924009, -0.054231, 0.468398, -0.768517, 0.435835, 0.340678, -0.938292, -0.059114, 0.419111, 0.794519, -0.439314, 0.442824, 0.101169, -0.890866, 0.616199, 0.077395, -0.783746, -0.999023, -0.044038, 0.0, -0.979095, -0.043153, 0.198614, -0.979095, -0.043153, 0.198614, -0.920164, -0.040529, 0.389355, -0.979095, -0.043153, 0.198614, -0.920164, -0.040529, 0.389355, -0.920164, -0.040468, 0.389355, -0.920164, -0.040529, 0.389355, -0.920164, -0.040468, 0.389355, -0.014527, 0.684774, 0.728599, -0.126652, 0.756462, -0.641621, -0.126652, 0.756462, 0.641621, -0.014527, 0.684774, 0.728599, -0.11478, -0.033174, 0.992828, 0.238685, 0.316965, 0.917875, 0.238685, 0.316965, -0.917875, 0.494095, 0.869381, 0.0, 0.632679, 0.774377, 0.0, 0.494095, 0.869381, 0.0, 0.238685, 0.316965, 0.917875, 0.632679, 0.774377, 0.0, -0.014527, 0.684744, -0.728599, -0.11478, -0.033174, -0.992828, -0.126652, 0.756462, -0.641621, -0.014527, 0.684744, -0.728599, -0.014527, 0.684774, 0.728599, 0.494095, 0.869381, 0.0, -0.985931, -0.166997, -0.000122, -0.985931, -0.166997, 0.0, -0.985931, -0.166997, -0.000122, 0.576525, 0.39668, 0.714316, 0.070101, 0.119877, 0.990295, 0.745933, 0.493362, 0.44734, 0.07947, 0.105655, 0.991211, -0.057924, 0.099826, 0.993286, 0.070101, 0.119877, 0.990295, -0.756981, 0.032075, 0.652608, -0.748589, -0.10242, -0.655049, -0.713858, -0.104617, -0.692404, -0.059053, 0.099765, 0.993225, -0.756981, 0.032075, 0.652608, -0.057924, 0.099826, 0.993286, 0.078158, -0.084475, -0.993347, 0.600269, 0.256478, -0.75753, 0.725211, 0.372539, -0.578967, 0.089328, -0.098361, -0.991119, -0.048555, -0.104648, -0.993316, -0.050417, -0.10474, -0.993194, -0.050417, -0.10474, -0.993194, -0.713858, -0.104617, -0.692404, -0.748589, -0.10242, -0.655049, 0.745933, 0.493362, 0.44734, 0.600269, 0.256478, -0.75753, 0.576525, 0.39668, 0.714316, 0.002106, -0.981201, 0.192907, 0.005921, -0.986358, 0.164342, 0.002075, -0.98117, 0.193091, 0.002106, -0.98117, 0.193091, 0.002075, -0.98117, 0.193091, 0.002106, -0.981201, 0.192907, 0.005799, -0.986419, 0.164098, 0.002106, -0.981201, 0.192907, 0.006378, -0.987152, 0.159459, 0.070101, 0.119877, -0.990295, 0.576525, 0.39668, -0.714316, 0.745933, 0.493362, -0.447371, -0.057924, 0.099826, -0.993286, 0.07947, 0.105655, -0.991211, 0.070101, 0.119877, -0.990295, -0.756981, 0.032075, -0.652608, -0.748589, -0.10242, 0.655049, -0.739402, 0.034913, -0.672323, -0.756981, 0.032075, -0.652608, -0.059053, 0.099765, -0.993225, -0.057924, 0.099826, -0.993286, 0.078158, -0.084475, 0.993347, 0.600269, 0.256447, 0.75753, 0.089328, -0.098361, 0.991119, 0.089328, -0.098361, 0.991119, -0.048555, -0.104648, 0.993316, 0.078158, -0.084475, 0.993347, -0.050417, -0.10474, 0.993194, -0.713858, -0.104617, 0.692404, -0.048555, -0.104648, 0.993316, 0.600269, 0.256447, 0.75753, 0.745933, 0.493362, -0.447371, 0.576525, 0.39668, -0.714316, 0.005921, -0.986358, -0.164342, 0.002106, -0.981201, -0.192907, 0.002075, -0.98117, -0.193091, 0.002075, -0.98117, -0.193091, 0.002106, -0.98117, -0.193091, 0.002106, -0.981201, -0.192907, 0.005799, -0.986419, -0.164098, 0.002106, -0.981201, -0.192907, 0.002106, -0.98117, -0.193091, 0.579424, 0.004608, 0.814966, 0.98529, -0.16538, 0.042909, 0.986389, -0.134404, -0.094516, 0.493881, 0.749413, 0.440901, 0.999908, -0.012757, 0.003723, 0.98529, -0.16538, 0.042909, 0.41731, -0.788568, -0.451643, 0.992615, -0.120945, 0.007172, 0.999969, -0.007508, 0.001404, 0.999908, -0.012757, 0.003723, 0.419111, 0.794519, -0.439314, 0.992065, -0.111423, -0.057802, 0.616199, 0.077395, -0.783746, 0.999969, -0.007508, 0.001404, 0.969665, -0.194159, 0.148289, 0.992615, -0.120945, 0.007172, 0.468398, -0.768517, 0.435835, 0.99939, 0.013825, -0.032044, 0.992065, -0.111423, -0.057802, 0.616199, 0.077395, -0.783746, 0.969665, -0.194159, 0.148289, 0.99939, 0.013825, -0.032044, 0.579424, 0.004608, 0.814966, 0.986389, -0.134404, -0.094516, 0.4232, -0.727958, 0.539354, 0.579424, 0.004608, 0.814966, 0.468398, -0.768517, 0.435835, 0.992065, -0.111423, 0.057802, 0.616199, 0.077395, 0.783746, 0.419111, 0.794519, 0.439314, 0.992615, -0.120945, -0.007172, 0.468429, -0.768517, -0.435835, 0.340678, -0.938292, 0.059114, 0.999969, -0.007508, -0.001404, 0.616199, 0.077395, 0.783746, 0.969665, -0.194159, -0.148289, 0.999908, -0.012757, -0.003723, 0.419111, 0.794519, 0.439314, 0.412336, 0.907559, 0.078982, 0.992615, -0.120945, -0.007172, 0.41731, -0.788568, 0.451643, 0.999969, -0.007508, -0.001404, 0.999908, -0.012757, -0.003723, 0.493881, 0.749413, -0.440901, 0.98529, -0.16538, -0.042909, 0.98529, -0.16538, -0.042909, 0.579424, 0.004608, -0.814966, 0.986389, -0.134404, 0.094516, 0.99939, 0.013855, 0.032044, 0.579424, 0.004608, -0.814966, 0.468429, -0.768517, -0.435835, 0.493881, 0.749413, -0.440901, 0.459609, 0.057253, -0.886258, 0.579424, 0.004608, -0.814966, 0.954283, -0.298837, 0.0, 0.946867, -0.321604, 0.0, 0.954283, -0.298837, 0.0, 0.946867, -0.321604, 0.0, 0.93408, -0.356975, 0.0, 0.946867, -0.321604, 0.0, 0.93408, -0.356975, 0.0, 0.93408, -0.356975, 0.0, 0.93408, -0.356975, 0.0, -0.073977, -0.005341, -0.997223, -0.06531, -0.623585, -0.778985, -0.132298, -0.586322, -0.799158, -0.052278, 0.956603, -0.28663, -0.088321, 0.944121, -0.317454, -0.087924, 0.948302, 0.304849, -0.073977, -0.005341, 0.997223, -0.128483, 0.002197, 0.991699, -0.132298, -0.586322, 0.799158, -0.06531, -0.623585, -0.778985, -0.053255, -0.957945, -0.281838, -0.122654, -0.945341, -0.302072, -0.052278, 0.956603, -0.28663, -0.066225, 0.617298, -0.783929, -0.106967, 0.589282, -0.800775, -0.066225, 0.617298, 0.783929, -0.105686, 0.582446, 0.805933, -0.128483, 0.002197, 0.991699, -0.053255, -0.957945, -0.281838, -0.053255, -0.957945, 0.281838, -0.122654, -0.945341, 0.302072, -0.066225, 0.617298, -0.783929, -0.073977, -0.005341, -0.997223, -0.128483, 0.002197, -0.991699, -0.052187, 0.956603, 0.28663, -0.087924, 0.948302, 0.304849, -0.105686, 0.582446, 0.805933, -0.06531, -0.623585, 0.778985, -0.132298, -0.586322, 0.799158, -0.122654, -0.945341, 0.302072, 0.055269, -0.572405, 0.818079, 0.111759, -0.580737, 0.80636, 0.114505, -0.012879, 0.993316, 0.02179, -0.633686, -0.773247, 0.012268, -0.006409, -0.999878, 0.062136, -0.00885, -0.998016, -0.013703, 0.964415, 0.263924, 0.040559, 0.958647, 0.281594, 0.040559, 0.958647, -0.281594, 0.02179, -0.633686, 0.773247, 0.055269, -0.572405, 0.818079, 0.062136, -0.00885, 0.998016, 0.018586, -0.960967, -0.275979, 0.02179, -0.633686, -0.773247, 0.055269, -0.572405, -0.818079, -0.013703, 0.964415, -0.263924, 0.040559, 0.958647, -0.281594, 0.054323, 0.601001, -0.797357, 0.012268, -0.006409, 0.999878, 0.062136, -0.00885, 0.998016, 0.054323, 0.601001, 0.797357, 0.018586, -0.960967, 0.275979, 0.018586, -0.960967, -0.275979, 0.048616, -0.946287, -0.319559, 0.012268, -0.006409, -0.999878, -0.005463, 0.641285, -0.767235, 0.054323, 0.601001, -0.797357, -0.013703, 0.964415, 0.263924, -0.005463, 0.641285, 0.767235, 0.054323, 0.601001, 0.797357, 0.048616, -0.946287, -0.319559, 0.055269, -0.572405, -0.818079, 0.111759, -0.580737, -0.80636, 0.054323, 0.601001, -0.797357, 0.040559, 0.958647, -0.281594, 0.132694, 0.949095, -0.285592, 0.062136, -0.00885, 0.998016, 0.114505, -0.012879, 0.993316, 0.128208, 0.591388, 0.796106, 0.048616, -0.946287, 0.319559, 0.048616, -0.946287, -0.319559, 0.111667, -0.944121, -0.310068, 0.062136, -0.00885, -0.998016, 0.054323, 0.601001, -0.797357, 0.128208, 0.591388, -0.796106, 0.054323, 0.601001, 0.797357, 0.128208, 0.591388, 0.796106, 0.132694, 0.949095, 0.285592, 0.048616, -0.946287, 0.319559, 0.111667, -0.944121, 0.310068, 0.111759, -0.580737, 0.80636, 0.055269, -0.572405, -0.818079, 0.062136, -0.00885, -0.998016, 0.114505, -0.012879, -0.993316, 0.040559, 0.958647, 0.281594, 0.132694, 0.949095, 0.285592, 0.132694, 0.949095, -0.285592, 0.239265, 0.567309, 0.787957, 0.221015, -0.007355, 0.975219, 0.239204, -0.01175, 0.970885, 0.239265, 0.567309, -0.787957, 0.25721, 0.966338, 0.0, 0.239204, -0.01175, -0.970885, 0.208228, -0.578997, -0.788263, 0.221015, -0.007355, -0.975219, 0.239204, -0.01175, -0.970885, 0.208228, -0.578997, 0.788263, 0.198798, -0.98001, 0.0, 0.239204, -0.01175, 0.970885, 0.128208, 0.591388, 0.796106, 0.114505, -0.012879, 0.993316, 0.221015, -0.007355, 0.975219, 0.111667, -0.944121, 0.310068, 0.111667, -0.944121, -0.310068, 0.201819, -0.931547, -0.302377, 0.128208, 0.591388, -0.796106, 0.239265, 0.567309, -0.787957, 0.221015, -0.007355, -0.975219, 0.132694, 0.949095, 0.285592, 0.128208, 0.591388, 0.796106, 0.239265, 0.567309, 0.787957, 0.111759, -0.580737, 0.80636, 0.111667, -0.944121, 0.310068, 0.201819, -0.931547, 0.302377, 0.114505, -0.012879, -0.993316, 0.221015, -0.007355, -0.975219, 0.208228, -0.578997, -0.788263, 0.132694, 0.949095, 0.285592, 0.247475, 0.920469, 0.302408, 0.247475, 0.920469, -0.302408, 0.114505, -0.012879, 0.993316, 0.111759, -0.580737, 0.80636, 0.208228, -0.578997, 0.788263, 0.132694, 0.949095, -0.285592, 0.247475, 0.920469, -0.302408, 0.239265, 0.567309, -0.787957, 0.111759, -0.580737, -0.80636, 0.208228, -0.578997, -0.788263, 0.201819, -0.931547, -0.302377, 0.018586, -0.960967, 0.275979, 0.048616, -0.946287, 0.319559, 0.055269, -0.572405, 0.818079, -0.053255, -0.957945, 0.281838, 0.018586, -0.960967, 0.275979, 0.02179, -0.633686, 0.773247, -0.066225, 0.617298, 0.783929, -0.005463, 0.641285, 0.767235, -0.013703, 0.964415, 0.263924, -0.073977, -0.005341, -0.997223, -0.066225, 0.617298, -0.783929, -0.005463, 0.641285, -0.767235, -0.053255, -0.957945, 0.281838, -0.053255, -0.957945, -0.281838, 0.018586, -0.960967, -0.275979, -0.073977, -0.005341, 0.997223, 0.012268, -0.006409, 0.999878, -0.005463, 0.641285, 0.767235, -0.066225, 0.617298, -0.783929, -0.052278, 0.956603, -0.28663, -0.013703, 0.964415, -0.263924, -0.053255, -0.957945, -0.281838, -0.06531, -0.623585, -0.778985, 0.02179, -0.633686, -0.773247, -0.06531, -0.623585, 0.778985, 0.02179, -0.633686, 0.773247, 0.012268, -0.006409, 0.999878, -0.052187, 0.956603, 0.28663, -0.013703, 0.964415, 0.263924, -0.013703, 0.964415, -0.263924, -0.06531, -0.623585, -0.778985, -0.073977, -0.005341, -0.997223, 0.012268, -0.006409, -0.999878, -0.031343, -0.950438, 0.309244, -0.019349, -0.586932, 0.809381, -0.019379, -0.58797, 0.808618, -0.019349, -0.586932, -0.809381, -0.019379, -0.58797, -0.808618, 0.0, -0.000793, -0.999969, 0.031343, 0.951353, 0.306467, 0.03122, 0.946806, -0.320231, 0.03122, 0.946776, -0.320353, -0.019349, -0.586932, 0.809381, 0.0, 0.000793, 0.999969, 0.0, -0.000793, 0.999969, -0.031343, -0.950438, -0.309244, -0.031343, -0.950591, -0.308756, -0.019379, -0.58797, -0.808618, 0.019379, 0.58797, -0.808618, 0.019349, 0.586932, -0.809381, 0.03122, 0.946776, -0.320353, 0.0, 0.000793, 0.999969, 0.019105, 0.580126, 0.814295, 0.019105, 0.579394, 0.814814, -0.031343, -0.950438, -0.309244, -0.031343, -0.950438, 0.309244, -0.031343, -0.950591, 0.308756, 0.0, 0.000793, -0.999969, 0.0, -0.000793, -0.999969, 0.019349, 0.586932, -0.809381, 0.019105, 0.580126, 0.814295, 0.031343, 0.951353, 0.306467, 0.031343, 0.95117, 0.306986, -0.055025, -0.946196, 0.318827, -0.054994, -0.94525, 0.321604, -0.055239, -0.949767, -0.307962, 0.033967, 0.584155, -0.810907, -0.000214, -0.00412, -0.999969, 0.000214, 0.00412, -0.999969, 0.055208, 0.949065, 0.31016, 0.055239, 0.949858, 0.307749, 0.034303, 0.589557, 0.80697, -0.034303, -0.589557, 0.80697, -0.033967, -0.584155, 0.810907, -0.054994, -0.94525, 0.321604, -0.000214, -0.00412, -0.999969, -0.033845, -0.581988, -0.812464, -0.033509, -0.576342, -0.816492, 0.055208, 0.949065, -0.31016, 0.055239, 0.949858, -0.307749, 0.055239, 0.949858, 0.307749, -0.000214, -0.00412, 0.999969, 0.000214, 0.00412, 0.999969, -0.033967, -0.584155, 0.810907, -0.033845, -0.581988, -0.812464, -0.0553, -0.950591, -0.305368, -0.055239, -0.949767, -0.307962, 0.055208, 0.949065, -0.31016, 0.033967, 0.584155, -0.810907, 0.034303, 0.589557, -0.80697, 0.033967, 0.584155, 0.810907, 0.034303, 0.589557, 0.80697, 0.000214, 0.00412, 0.999969, -0.999298, 0.037049, 9.2e-05, -0.999298, 0.037049, 9.2e-05, -0.999298, 0.036988, 9.2e-05, -0.999298, 0.036988, -9.2e-05, -0.999298, 0.036958, -3.1e-05, -0.999298, 0.036958, -3.1e-05, -0.999298, 0.036836, -0.000977, -0.999298, 0.037141, -9.2e-05, -0.999298, 0.037111, -9.2e-05, -0.999329, 0.036317, 0.000671, -0.999329, 0.036317, 0.000671, -0.999298, 0.037049, 9.2e-05, -0.999298, 0.036927, 3.1e-05, -0.999298, 0.036927, 3.1e-05, -0.999298, 0.036958, -3.1e-05, -0.999298, 0.037141, -9.2e-05, -0.999298, 0.037049, -9.2e-05, -0.999298, 0.037049, -9.2e-05, -0.999329, 0.036317, 0.000671, -0.999329, 0.036042, -0.000336, -0.999329, 0.036042, -0.000336, -0.999298, 0.036988, 9.2e-05, -0.999298, 0.036988, 9.2e-05, -0.999298, 0.036927, 3.1e-05, -0.999298, 0.037049, -9.2e-05, -0.999298, 0.036988, -9.2e-05, -0.999298, 0.036988, -9.2e-05, -0.999298, 0.036836, -0.000977, -0.999298, 0.036836, -0.000977, -0.999329, 0.036042, -0.000336, -0.999298, 0.036958, 3.1e-05, -0.999298, 0.036988, 9.2e-05, -0.999298, 0.036836, -6.1e-05, -0.999298, 0.037111, -9.2e-05, -0.999298, 0.037049, -9.2e-05, -0.999298, 0.036836, -6.1e-05, -0.999329, 0.036042, -0.000336, -0.999298, 0.036836, -0.000977, -0.999298, 0.036836, -6.1e-05, -0.999298, 0.036988, -9.2e-05, -0.999298, 0.036958, -3.1e-05, -0.999298, 0.036836, -6.1e-05, -0.999298, 0.037049, 9.2e-05, -0.999329, 0.036287, 0.000671, -0.999298, 0.036836, -6.1e-05, -0.999298, 0.037049, -3.1e-05, -0.999298, 0.037049, 0.0, -0.999298, 0.037049, 0.0, -0.999298, 0.036927, -0.001007, -0.999298, 0.036927, -0.001007, -0.999329, 0.036134, -0.000305, -0.999298, 0.037049, 3.1e-05, -0.999298, 0.037049, 3.1e-05, -0.999298, 0.03708, 0.0, -0.999298, 0.037049, 0.0, -0.999298, 0.036836, -6.1e-05, -0.999298, 0.036836, -6.1e-05, -0.999298, 0.036927, -0.001007, -0.999298, 0.037202, -0.000183, -0.999298, 0.037202, -0.000183, -0.999329, 0.036348, 0.000763, -0.999329, 0.036348, 0.000763, -0.999298, 0.037049, 3.1e-05, -0.999298, 0.036836, -6.1e-05, -0.999298, 0.036897, 6.1e-05, -0.999298, 0.036897, 6.1e-05, -0.999298, 0.037202, -0.000183, -0.999298, 0.037049, -3.1e-05, -0.999298, 0.037049, -3.1e-05, -0.999329, 0.036348, 0.000763, -0.999329, 0.036134, -0.000305, -0.999329, 0.036134, -0.000305, -0.999298, 0.03708, 0.0, -0.999298, 0.03708, 0.0, -0.999298, 0.036897, 6.1e-05, 0.090274, -0.789422, -0.607135, 0.090274, -0.789422, 0.607135, -0.077792, -0.803797, 0.58974, -0.077792, -0.803797, -0.58974, -0.077792, -0.803797, 0.58974, -0.188696, -0.785577, 0.589251, -0.188696, -0.785577, -0.589251, -0.188696, -0.785577, 0.589251, -0.558641, -0.655049, 0.508682, -0.558641, -0.655049, -0.508682, -0.558641, -0.655049, 0.508682, -0.781182, -0.314188, 0.539415, -0.188696, -0.785577, -0.589251, -0.088687, -0.283395, -0.954863, -0.036561, -0.274026, -0.960997, 0.043947, -0.231391, -0.971831, 0.132786, 0.242012, -0.961119, 0.24131, -0.59093, -0.769768, -0.558641, -0.655049, -0.508682, -0.392529, -0.265572, -0.880551, -0.088687, -0.283395, -0.954863, -0.077792, -0.803797, -0.58974, -0.036561, -0.274026, -0.960997, 0.043947, -0.231391, -0.971831, -0.781182, -0.314188, -0.539415, -0.553209, -0.282052, -0.783807, -0.392529, -0.265572, -0.880551, -0.188696, -0.785577, 0.589251, -0.077792, -0.803797, 0.58974, -0.036561, -0.274026, 0.960997, 0.24131, -0.59093, 0.769768, 0.132786, 0.242012, 0.961119, 0.043947, -0.231391, 0.971831, -0.558641, -0.655049, 0.508682, -0.188696, -0.785577, 0.589251, -0.088687, -0.283395, 0.954863, -0.077792, -0.803797, 0.58974, 0.090274, -0.789422, 0.607135, 0.043947, -0.231391, 0.971831, -0.781182, -0.314188, 0.539415, -0.558641, -0.655049, 0.508682, -0.392529, -0.265572, 0.880551, 0.24131, -0.59093, -0.769768, 0.24131, -0.59093, 0.769768, 0.090274, -0.789422, 0.607135, -0.021882, 0.999756, 0.0, -0.019929, 0.897855, -0.439772, -0.046602, 0.822626, -0.566637, -0.019929, 0.897855, -0.439772, -0.01648, 0.562487, -0.826624, -0.049165, 0.430616, -0.901181, -0.01648, 0.562487, -0.826624, -0.014222, 0.298166, -0.954405, -0.050508, 0.20835, -0.976745, -0.050508, 0.20835, 0.976745, -0.014222, 0.298166, 0.954405, -0.01648, 0.562487, 0.826624, -0.049165, 0.430616, 0.901181, -0.01648, 0.562487, 0.826624, -0.019929, 0.897855, 0.439772, -0.046602, 0.822626, 0.566637, -0.019929, 0.897855, 0.439772, -0.021882, 0.999756, 0.0, -0.019929, 0.897855, 0.439772, -0.027741, 0.796411, 0.604053, -0.05005, 0.998718, 0.0, -0.01648, 0.562487, -0.826624, -0.019929, 0.897855, -0.439772, -0.027741, 0.796442, -0.604053, -0.019929, 0.897855, -0.439772, -0.021882, 0.999756, 0.0, -0.05005, 0.998718, 0.0, -0.014222, 0.298166, 0.954405, 0.005554, 0.102451, 0.99469, -0.00174, 0.356975, 0.93408, -0.014222, 0.298166, -0.954405, -0.01648, 0.562487, -0.826624, -0.00174, 0.356975, -0.93408, -0.01648, 0.562487, 0.826624, -0.00174, 0.356975, 0.93408, -0.027741, 0.796411, 0.604053, -0.05005, 0.998718, 0.0, -0.027741, 0.796411, 0.604053, -0.075442, 0.801599, 0.593066, -0.00174, 0.356975, 0.93408, 0.005554, 0.102451, 0.99469, 0.004761, 0.092837, 0.995666, -0.027741, 0.796442, -0.604053, -0.075442, 0.801599, -0.593066, -0.022858, 0.375774, -0.926389, -0.027741, 0.796411, 0.604053, -0.00174, 0.356975, 0.93408, -0.022858, 0.375774, 0.926389, -0.00174, 0.356975, -0.93408, -0.022858, 0.375774, -0.926389, 0.004761, 0.092837, -0.995666, -0.05005, 0.998718, 0.0, -0.101718, 0.994781, 0.0, -0.075442, 0.801599, -0.593066, -0.046602, 0.822626, 0.566637, -0.046754, 0.998901, 0.0, -0.093051, 0.995636, 0.0, -0.049165, 0.430616, -0.901181, -0.746513, 0.096805, -0.658254, -0.589343, 0.610706, -0.528825, -0.046602, 0.822626, -0.566637, -0.589343, 0.610706, -0.528825, -0.093051, 0.995636, 0.0, -0.050508, 0.20835, 0.976745, -0.049165, 0.430616, 0.901181, -0.746513, 0.096805, 0.658254, -0.050508, 0.20835, -0.976745, -0.730979, 0.006958, -0.682333, -0.746513, 0.096805, -0.658254, -0.049165, 0.430616, 0.901181, -0.046602, 0.822626, 0.566637, -0.589343, 0.610706, 0.528825, -0.746513, 0.096805, -0.658254, -0.746513, 0.096805, 0.658254, -0.589343, 0.610706, 0.528825, -0.730979, 0.006958, -0.682333, -0.730979, 0.006958, 0.682333, -0.746513, 0.096805, 0.658254, 0.219794, 0.550676, -0.805231, -0.032411, 0.699576, -0.713797, 0.298654, 0.954344, 0.0, -0.032411, 0.699576, -0.713797, 0.219794, 0.550676, -0.805231, -0.02234, -0.012391, -0.999664, 0.219794, 0.550676, 0.805231, 0.373516, 0.92761, 0.0, 0.298654, 0.954344, 0.0, -0.032411, 0.699576, 0.713797, -0.057497, 0.79046, 0.60979, -0.02234, -0.012391, 0.999664, -0.032411, 0.699576, -0.713797, -0.057497, 0.79046, -0.60979, -0.057497, 0.79046, 0.60979, -0.926603, -0.375958, 0.0, -0.926603, -0.375958, 0.0, -0.926603, -0.375958, 0.0, 0.54088, 0.84109, 0.0, -0.043977, 0.999023, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, -1.0, 0.576769, 0.025361, -0.816492, 0.61269, -0.790307, 0.0, 0.576769, 0.025361, -0.816492, 0.54088, 0.84109, 0.0, 0.576769, 0.025361, 0.816492, 0.0, 0.0, 1.0, 0.043977, -0.999023, 0.0, 0.61269, -0.790307, 0.0, 0.0, 0.0, -1.0, -0.043977, 0.999023, 0.0, 0.54088, 0.84109, 0.0, 0.042024, 0.943327, -0.329173, 0.038148, 0.80633, -0.590197, 0.173345, 0.005799, -0.984832, 0.00531, -0.999847, -0.015931, 0.125187, -0.940001, -0.317362, 0.032228, -0.984985, -0.169561, -0.06885, 0.985229, -0.156652, -0.051973, 0.99115, -0.122044, -0.051546, 0.975127, -0.215461, 0.125187, -0.940001, -0.317362, 0.210852, -0.694357, -0.68804, 0.53737, 0.068209, -0.840571, 0.00531, -0.999847, -0.015931, 0.147557, -0.639546, -0.754448, 0.210852, -0.694357, -0.68804, 0.122959, -0.981994, -0.143315, 0.153661, -0.781549, -0.604572, 0.50969, -0.755333, -0.411878, 0.083651, 0.983856, -0.158055, 0.145604, 0.876888, 0.458052, 0.600238, 0.665365, 0.443831, 0.125614, 0.815973, -0.564257, 0.56209, 0.651631, -0.509262, 0.556749, -0.117985, -0.82223, 0.032228, -0.984985, -0.169561, 0.125187, -0.940001, -0.317362, 0.132145, -0.798517, -0.587268, 0.076327, 0.800653, -0.594226, 0.125614, 0.815973, -0.564257, 0.214148, 0.034364, -0.976196, -0.000977, 0.982879, -0.184179, 0.0206, 0.999756, -0.007324, 0.145604, 0.876888, 0.458052, 0.076327, -0.970336, -0.229316, 0.137242, -0.753899, -0.642445, 0.153661, -0.781549, -0.604572, 0.137242, -0.753899, -0.642445, 0.196142, 0.033753, -0.97998, 0.214148, 0.034364, -0.976196, 0.153661, -0.781549, -0.604572, 0.214148, 0.034364, -0.976196, 0.556749, -0.117985, -0.82223, 0.042024, 0.943327, -0.329173, 0.423292, 0.013886, -0.90585, 0.53737, 0.068209, -0.840571, 0.125187, -0.940001, -0.317362, 0.423292, 0.013886, -0.90585, 0.173345, 0.005799, -0.984832, 0.076327, -0.970336, -0.229316, 0.122959, -0.981994, -0.143315, 0.196936, -0.931852, 0.304636, -0.000977, 0.982879, -0.184179, 0.083651, 0.983856, -0.158055, 0.125614, 0.815973, -0.564257, 0.015748, -0.988678, -0.149052, 0.032228, -0.984985, -0.169561, 0.045991, -0.96942, -0.241005, 0.083651, 0.983856, -0.158055, 0.543199, 0.838069, -0.050203, 0.56209, 0.651631, -0.509262, 0.122959, -0.981994, -0.143315, 0.508438, -0.85931, -0.055177, 0.554338, -0.727775, 0.403699, -0.053499, 0.980956, -0.186682, -0.051546, 0.975127, -0.215461, 0.038148, 0.80633, -0.590197, -0.018891, -0.999237, -0.03415, 0.032228, -0.984985, -0.169561, 0.015748, -0.988678, -0.149052, 0.501724, -0.022889, 0.864711, 0.693838, -0.137242, 0.70687, 0.600238, 0.665365, 0.443831, 0.554338, -0.727775, 0.403699, 0.693838, -0.137242, 0.70687, 0.501724, -0.022889, 0.864711, 0.50969, -0.755333, -0.411878, 0.556749, -0.117985, -0.82223, 0.969665, -0.194159, -0.148289, 0.56209, 0.651631, -0.509262, 0.999969, -0.007508, -0.001404, 0.969665, -0.194159, -0.148289, 0.554338, -0.727775, 0.403699, 0.98529, -0.16538, -0.042909, 0.986389, -0.134404, 0.094516, 0.508438, -0.85931, -0.055177, 0.50969, -0.755333, -0.411878, 0.992065, -0.111423, 0.057802, 0.508438, -0.85931, -0.055177, 0.999908, -0.012757, -0.003723, 0.98529, -0.16538, -0.042909, 0.543199, 0.838069, -0.050203, 0.600238, 0.665365, 0.443831, 0.99939, 0.013855, 0.032044, 0.543199, 0.838069, -0.050203, 0.992615, -0.120945, -0.007172, 0.999969, -0.007508, -0.001404, 0.600238, 0.665365, 0.443831, 0.693838, -0.137242, 0.70687, 0.986389, -0.134404, 0.094516, 0.412336, 0.907559, 0.078982, 0.378216, 0.923246, 0.067263, 0.441939, 0.741783, -0.504379, 0.41731, -0.788568, 0.451643, 0.340678, -0.938292, 0.059114, 0.378399, -0.924009, 0.054231, 0.412336, 0.907559, 0.078982, 0.419111, 0.794519, 0.439314, 0.415357, 0.777673, 0.471847, -0.051546, 0.975127, -0.215461, -0.000977, 0.982879, -0.184179, 0.076327, 0.800653, -0.594226, 0.03824, -0.985717, -0.163976, 0.045991, -0.96942, -0.241005, 0.076327, -0.970336, -0.229316, 0.132145, -0.798517, -0.587268, 0.173345, 0.005799, -0.984832, 0.196142, 0.033753, -0.97998, 0.045991, -0.96942, -0.241005, 0.132145, -0.798517, -0.587268, 0.137242, -0.753899, -0.642445, -0.051973, 0.99115, -0.122044, 0.0206, 0.999756, -0.007324, -0.000977, 0.982879, -0.184179, 0.038148, 0.80633, -0.590197, 0.076327, 0.800653, -0.594226, 0.196142, 0.033753, -0.97998, 0.994507, 0.101535, -0.024598, 0.501724, -0.022889, 0.864711, 0.220771, 0.875668, 0.429487, 0.286752, -0.91464, 0.284921, 0.501724, -0.022889, 0.864711, 0.994507, 0.101535, -0.024598, -0.06885, 0.985229, -0.156652, -0.053499, 0.980956, -0.186682, -0.096835, 0.994812, -0.031129, -0.053499, 0.980956, -0.186682, 0.042024, 0.943327, -0.329173, -0.066042, 0.99765, -0.017396, 0.167211, 0.703726, -0.690481, 0.11652, 0.659444, -0.742637, -0.066042, 0.99765, -0.017396, 0.147557, -0.639546, -0.754448, 0.11652, 0.659444, -0.742637, 0.167211, 0.703726, -0.690481, 0.616199, 0.077395, 0.783746, 0.41731, -0.788568, 0.451643, 0.422437, -0.72982, 0.537431, 0.415357, 0.777673, 0.471847, 0.442824, 0.101169, 0.890866, 0.999298, 0.026612, 0.026093, 0.441939, 0.741783, -0.504379, 0.378216, 0.923246, 0.067263, 0.999298, 0.026612, 0.026093, 0.422437, -0.72982, 0.537431, 0.378399, -0.924009, 0.054231, 0.999298, 0.026612, 0.026093, 0.4232, -0.727958, -0.539354, 0.459609, 0.057253, -0.886258, 0.999298, 0.026612, 0.026093, 0.468429, -0.768517, -0.435835, 0.4232, -0.727958, -0.539354, 0.378399, -0.924009, 0.054231, 0.419111, 0.794519, 0.439314, 0.616199, 0.077395, 0.783746, 0.442824, 0.101169, 0.890866, 0.579424, 0.004608, -0.814966, 0.459609, 0.057253, -0.886258, 0.4232, -0.727958, -0.539354, -0.979095, -0.043153, -0.198614, -0.999023, -0.043947, 0.0, -0.999023, -0.043947, 0.0, -0.920164, -0.040498, -0.389355, -0.920164, -0.040498, -0.389355, -0.979095, -0.043153, -0.198614, -0.920164, -0.040529, -0.389355, -0.920164, -0.040529, -0.389355, -0.920164, -0.040498, -0.389355, 0.173315, 0.005799, 0.984832, 0.038148, 0.80633, 0.590197, 0.042024, 0.943327, 0.329173, 0.032228, -0.984985, 0.169561, 0.125187, -0.940001, 0.317362, 0.00531, -0.999847, 0.015931, -0.051546, 0.975127, 0.215461, -0.051973, 0.99115, 0.122044, -0.06885, 0.985229, 0.156652, 0.53737, 0.068209, 0.840571, 0.210852, -0.694357, 0.68804, 0.125187, -0.940001, 0.317362, 0.210852, -0.694357, 0.68804, 0.147557, -0.639546, 0.754448, 0.00531, -0.999847, 0.015931, 0.122959, -0.981994, 0.143315, 0.508408, -0.85931, 0.055177, 0.50969, -0.755333, 0.411878, 0.083651, 0.983856, 0.158055, 0.543199, 0.838069, 0.050203, 0.600238, 0.665365, -0.443831, 0.556749, -0.117985, 0.82223, 0.56209, 0.651631, 0.509262, 0.125614, 0.815973, 0.564257, 0.032228, -0.984985, 0.169561, 0.045991, -0.96942, 0.241005, 0.132145, -0.798517, 0.587268, 0.214148, 0.034364, 0.976196, 0.125614, 0.815973, 0.564257, 0.076327, 0.800653, 0.594226, 0.145604, 0.876888, -0.458052, 0.0206, 0.999756, 0.007324, -0.000977, 0.982879, 0.184179, 0.076327, -0.970336, 0.229316, 0.122959, -0.981994, 0.143315, 0.153661, -0.781549, 0.604572, 0.137242, -0.753899, 0.642445, 0.153661, -0.781549, 0.604572, 0.214148, 0.034364, 0.976196, 0.153661, -0.781549, 0.604572, 0.50969, -0.755333, 0.411878, 0.556749, -0.117985, 0.82223, 0.042024, 0.943327, 0.329173, 0.167211, 0.703726, 0.690481, 0.53737, 0.068209, 0.840571, 0.125187, -0.940001, 0.317362, 0.132145, -0.798517, 0.587268, 0.173315, 0.005799, 0.984832, 0.196936, -0.931852, -0.304636, 0.122959, -0.981994, 0.143315, 0.076327, -0.970336, 0.229316, 0.125614, 0.815973, 0.564257, 0.083651, 0.983856, 0.158055, -0.000977, 0.982879, 0.184179, 0.015748, -0.988678, 0.149052, 0.03824, -0.985717, 0.163976, 0.045991, -0.96942, 0.241005, 0.56209, 0.651631, 0.509262, 0.543199, 0.838069, 0.050203, 0.083651, 0.983856, 0.158055, 0.554338, -0.727775, -0.403699, 0.508408, -0.85931, 0.055177, 0.122959, -0.981994, 0.143315, 0.038148, 0.80633, 0.590197, -0.051546, 0.975127, 0.215461, -0.053499, 0.980956, 0.186682, 0.015748, -0.988678, 0.149052, 0.032228, -0.984985, 0.169561, -0.018891, -0.999237, 0.03415, 0.600238, 0.665365, -0.443831, 0.693838, -0.137242, -0.70687, 0.501694, -0.022889, -0.864711, 0.501694, -0.022889, -0.864711, 0.693838, -0.137242, -0.70687, 0.554338, -0.727775, -0.403699, 0.50969, -0.755333, 0.411878, 0.992065, -0.111423, -0.057802, 0.969665, -0.194159, 0.148289, 0.969665, -0.194159, 0.148289, 0.999969, -0.007508, 0.001404, 0.56209, 0.651631, 0.509262, 0.986389, -0.134404, -0.094516, 0.98529, -0.16538, 0.042909, 0.554338, -0.727775, -0.403699, 0.508408, -0.85931, 0.055177, 0.999908, -0.012757, 0.003723, 0.992065, -0.111423, -0.057802, 0.98529, -0.16538, 0.042909, 0.999908, -0.012757, 0.003723, 0.508408, -0.85931, 0.055177, 0.543199, 0.838069, 0.050203, 0.992615, -0.120945, 0.007172, 0.99939, 0.013825, -0.032044, 0.999969, -0.007508, 0.001404, 0.992615, -0.120945, 0.007172, 0.543199, 0.838069, 0.050203, 0.600238, 0.665365, -0.443831, 0.99939, 0.013825, -0.032044, 0.986389, -0.134404, -0.094516, 0.459609, 0.057253, 0.886258, 0.441939, 0.741783, 0.504379, 0.493881, 0.749413, 0.440901, 0.441939, 0.741783, 0.504379, 0.378216, 0.923246, -0.067263, 0.412336, 0.90759, -0.078982, 0.076327, 0.800653, 0.594226, -0.000977, 0.982879, 0.184179, -0.051546, 0.975127, 0.215461, 0.03824, -0.985717, 0.163976, 0.111118, -0.992889, 0.042451, 0.076327, -0.970336, 0.229316, 0.132145, -0.798517, 0.587268, 0.137242, -0.753899, 0.642445, 0.196142, 0.033753, 0.97998, 0.045991, -0.96942, 0.241005, 0.076327, -0.970336, 0.229316, 0.137242, -0.753899, 0.642445, -0.000977, 0.982879, 0.184179, 0.0206, 0.999756, 0.007324, -0.051973, 0.99115, 0.122044, 0.196142, 0.033753, 0.97998, 0.076327, 0.800653, 0.594226, 0.038148, 0.80633, 0.590197, 0.220771, 0.875668, -0.429487, 0.501694, -0.022889, -0.864711, 0.994507, 0.101535, 0.024598, 0.994507, 0.101535, 0.024598, 0.501694, -0.022889, -0.864711, 0.286752, -0.914609, -0.284921, -0.06885, 0.985229, 0.156652, -0.107852, 0.993774, 0.02707, -0.096835, 0.994812, 0.031129, -0.053499, 0.980956, 0.186682, -0.096835, 0.994812, 0.031129, -0.066042, 0.99765, 0.017396, -0.066042, 0.99765, 0.017396, 0.11652, 0.659444, 0.742637, 0.167211, 0.703726, 0.690481, 0.147557, -0.639546, 0.754448, 0.210852, -0.694357, 0.68804, 0.167211, 0.703726, 0.690481, 0.41731, -0.788568, -0.451643, 0.422437, -0.72982, -0.537431, 0.378399, -0.924009, -0.054231, 0.415357, 0.777673, -0.471847, 0.378216, 0.923246, -0.067263, 0.999298, 0.026612, -0.026093, 0.441939, 0.741783, 0.504379, 0.459609, 0.057253, 0.886258, 0.999298, 0.026612, -0.026093, 0.999298, 0.026612, -0.026093, 0.378399, -0.924009, -0.054231, 0.422437, -0.72982, -0.537431, 0.999298, 0.026612, -0.026093, 0.459609, 0.057253, 0.886258, 0.4232, -0.727958, 0.539354, 0.412336, 0.90759, -0.078982, 0.378216, 0.923246, -0.067263, 0.415357, 0.777673, -0.471847, 0.616199, 0.077395, -0.783746, 0.442824, 0.101169, -0.890866, 0.422437, -0.72982, -0.537431, 0.378399, -0.924009, -0.054231, 0.4232, -0.727958, 0.539354, 0.468398, -0.768517, 0.435835, 0.419111, 0.794519, -0.439314, 0.415357, 0.777673, -0.471847, 0.442824, 0.101169, -0.890866, -0.999023, -0.044038, 0.0, -0.999023, -0.044038, 0.0, -0.979095, -0.043153, 0.198614, -0.920164, -0.040529, 0.389355, -0.979095, -0.043153, 0.198614, -0.979095, -0.043153, 0.198614, -0.920164, -0.040468, 0.389355, -0.920164, -0.040529, 0.389355, -0.920164, -0.040529, 0.389355, -0.014527, 0.684774, 0.728599, -0.014527, 0.684744, -0.728599, -0.126652, 0.756462, -0.641621, -0.014527, 0.684774, 0.728599, -0.126652, 0.756462, 0.641621, -0.11478, -0.033174, 0.992828, 0.238685, 0.316965, -0.917875, -0.014527, 0.684744, -0.728599, 0.494095, 0.869381, 0.0, 0.494095, 0.869381, 0.0, -0.014527, 0.684774, 0.728599, 0.238685, 0.316965, 0.917875, -0.014527, 0.684744, -0.728599, 0.238685, 0.316965, -0.917875, -0.11478, -0.033174, -0.992828, -0.985931, -0.166997, -0.000122, -0.985931, -0.166997, 0.0, -0.985931, -0.166997, 0.0, 0.576525, 0.39668, 0.714316, 0.07947, 0.105655, 0.991211, 0.070101, 0.119877, 0.990295, 0.07947, 0.105655, 0.991211, -0.059053, 0.099765, 0.993225, -0.057924, 0.099826, 0.993286, -0.756981, 0.032075, 0.652608, -0.739402, 0.034913, 0.672323, -0.748589, -0.10242, -0.655049, -0.059053, 0.099765, 0.993225, -0.739402, 0.034913, 0.672323, -0.756981, 0.032075, 0.652608, 0.078158, -0.084475, -0.993347, 0.089328, -0.098361, -0.991119, 0.600269, 0.256478, -0.75753, 0.089328, -0.098361, -0.991119, 0.078158, -0.084475, -0.993347, -0.048555, -0.104648, -0.993316, -0.050417, -0.10474, -0.993194, -0.048555, -0.104648, -0.993316, -0.713858, -0.104617, -0.692404, 0.745933, 0.493362, 0.44734, 0.725211, 0.372539, -0.578967, 0.600269, 0.256478, -0.75753, 0.002106, -0.981201, 0.192907, 0.006592, -0.987152, 0.15949, 0.005921, -0.986358, 0.164342, 0.002106, -0.98117, 0.193091, 0.002106, -0.981201, 0.192907, 0.002075, -0.98117, 0.193091, 0.005799, -0.986419, 0.164098, 0.002106, -0.98117, 0.193091, 0.002106, -0.981201, 0.192907, 0.070101, 0.119877, -0.990295, 0.07947, 0.105655, -0.991211, 0.576525, 0.39668, -0.714316, -0.057924, 0.099826, -0.993286, -0.059053, 0.099765, -0.993225, 0.07947, 0.105655, -0.991211, -0.756981, 0.032075, -0.652608, -0.713858, -0.104617, 0.692404, -0.748589, -0.10242, 0.655049, -0.756981, 0.032075, -0.652608, -0.739402, 0.034913, -0.672323, -0.059053, 0.099765, -0.993225, 0.078158, -0.084475, 0.993347, 0.725242, 0.372539, 0.578967, 0.600269, 0.256447, 0.75753, 0.089328, -0.098361, 0.991119, -0.050417, -0.10474, 0.993194, -0.048555, -0.104648, 0.993316, -0.050417, -0.10474, 0.993194, -0.748589, -0.10242, 0.655049, -0.713858, -0.104617, 0.692404, 0.600269, 0.256447, 0.75753, 0.725242, 0.372539, 0.578967, 0.745933, 0.493362, -0.447371, 0.005921, -0.986358, -0.164342, 0.006592, -0.987152, -0.159459, 0.002106, -0.981201, -0.192907, 0.002075, -0.98117, -0.193091, 0.002106, -0.981201, -0.192907, 0.002106, -0.98117, -0.193091, 0.005799, -0.986419, -0.164098, 0.006378, -0.987152, -0.159459, 0.002106, -0.981201, -0.192907, 0.579424, 0.004608, 0.814966, 0.493881, 0.749413, 0.440901, 0.98529, -0.16538, 0.042909, 0.493881, 0.749413, 0.440901, 0.412336, 0.90759, -0.078982, 0.999908, -0.012757, 0.003723, 0.41731, -0.788568, -0.451643, 0.340678, -0.938292, -0.059114, 0.992615, -0.120945, 0.007172, 0.999908, -0.012757, 0.003723, 0.412336, 0.90759, -0.078982, 0.419111, 0.794519, -0.439314, 0.616199, 0.077395, -0.783746, 0.41731, -0.788568, -0.451643, 0.999969, -0.007508, 0.001404, 0.992615, -0.120945, 0.007172, 0.340678, -0.938292, -0.059114, 0.468398, -0.768517, 0.435835, 0.992065, -0.111423, -0.057802, 0.419111, 0.794519, -0.439314, 0.616199, 0.077395, -0.783746, 0.99939, 0.013825, -0.032044, 0.468398, -0.768517, 0.435835, 0.579424, 0.004608, 0.814966, 0.4232, -0.727958, 0.539354, 0.459609, 0.057253, 0.886258, 0.579424, 0.004608, 0.814966, 0.992065, -0.111423, 0.057802, 0.969665, -0.194159, -0.148289, 0.616199, 0.077395, 0.783746, 0.992615, -0.120945, -0.007172, 0.99939, 0.013855, 0.032044, 0.468429, -0.768517, -0.435835, 0.999969, -0.007508, -0.001404, 0.41731, -0.788568, 0.451643, 0.616199, 0.077395, 0.783746, 0.999908, -0.012757, -0.003723, 0.992065, -0.111423, 0.057802, 0.419111, 0.794519, 0.439314, 0.992615, -0.120945, -0.007172, 0.340678, -0.938292, 0.059114, 0.41731, -0.788568, 0.451643, 0.999908, -0.012757, -0.003723, 0.412336, 0.907559, 0.078982, 0.493881, 0.749413, -0.440901, 0.98529, -0.16538, -0.042909, 0.493881, 0.749413, -0.440901, 0.579424, 0.004608, -0.814966, 0.99939, 0.013855, 0.032044, 0.986389, -0.134404, 0.094516, 0.579424, 0.004608, -0.814966, 0.493881, 0.749413, -0.440901, 0.441939, 0.741783, -0.504379, 0.459609, 0.057253, -0.886258, 0.954283, -0.298837, 0.0, 0.946867, -0.321604, 0.0, 0.946867, -0.321604, 0.0, 0.946867, -0.321604, 0.0, 0.93408, -0.356975, 0.0, 0.93408, -0.356975, 0.0};
+
+
+
+       // set UVs for Draken plane
+       static GLfloat j_35_draken_UVs[] = {0.196008, 0.222189, 0.009115, 0.226599, 0.009116, 0.206284, 0.196033, 0.167758, 0.009118, 0.141286, 0.196047, 0.141272, 0.19606, 0.087228, 0.009116, 0.077572, 0.196044, 0.061958, 0.195969, 0.247732, 0.009113, 0.24785, 0.009115, 0.226599, 0.196033, 0.167758, 0.009117, 0.184601, 0.009118, 0.162581, 0.196059, 0.113869, 0.009117, 0.098152, 0.19606, 0.087228, 0.195908, 0.00804, 0.009114, 0.056368, 0.009113, 0.034713, 0.196026, 0.195299, 0.009116, 0.206284, 0.009117, 0.184601, 0.196047, 0.141272, 0.009118, 0.119378, 0.196059, 0.113869, 0.196044, 0.061958, 0.009114, 0.056368, 0.195996, 0.035374, 0.565025, 0.061656, 0.817714, 0.116589, 0.565017, 0.087349, 0.337854, 0.24772, 0.565021, 0.222276, 0.565032, 0.247864, 0.337843, 0.141269, 0.565009, 0.167605, 0.337842, 0.167827, 0.337857, 0.061981, 0.565017, 0.087349, 0.33785, 0.087289, 0.337859, 0.274416, 0.565032, 0.247864, 0.565044, 0.274642, 0.337842, 0.167827, 0.565012, 0.194967, 0.337844, 0.19534, 0.33785, 0.087289, 0.56501, 0.114052, 0.337845, 0.113854, 0.337861, 0.035378, 0.565045, 0.008079, 0.565035, 0.035139, 0.337849, 0.222272, 0.565012, 0.194967, 0.565021, 0.222276, 0.337843, 0.141269, 0.56501, 0.114052, 0.565008, 0.141283, 0.875619, 0.195751, 0.875615, 0.186637, 0.930288, 0.162578, 0.565044, 0.274642, 0.817717, 0.206272, 0.817719, 0.220331, 0.565012, 0.194967, 0.817713, 0.160795, 0.817714, 0.177037, 0.565017, 0.087349, 0.817713, 0.131603, 0.56501, 0.114052, 0.565035, 0.035139, 0.817719, 0.074483, 0.817717, 0.088364, 0.565021, 0.222276, 0.817714, 0.177037, 0.817715, 0.192072, 0.56501, 0.114052, 0.817713, 0.146831, 0.565008, 0.141283, 0.565035, 0.035139, 0.817715, 0.10243, 0.565025, 0.061656, 0.565032, 0.247864, 0.817715, 0.192072, 0.817717, 0.206272, 0.565008, 0.141283, 0.817713, 0.160795, 0.565009, 0.167605, 0.875611, 0.168331, 0.87561, 0.158238, 0.930282, 0.15294, 0.87561, 0.138466, 0.93028, 0.147814, 0.930282, 0.15294, 0.875615, 0.110507, 0.875619, 0.101591, 0.930284, 0.143017, 0.875611, 0.168331, 0.930282, 0.158086, 0.875613, 0.177569, 0.875609, 0.148911, 0.87561, 0.138466, 0.930282, 0.15294, 0.875612, 0.119916, 0.875615, 0.110507, 0.930284, 0.143017, 0.875615, 0.186637, 0.930282, 0.158086, 0.930288, 0.162578, 0.87561, 0.158238, 0.875609, 0.148911, 0.930282, 0.15294, 0.875612, 0.119916, 0.93028, 0.147814, 0.875611, 0.129143, 0.817713, 0.131603, 0.875611, 0.129143, 0.87561, 0.138466, 0.817717, 0.088364, 0.875619, 0.101591, 0.875615, 0.110507, 0.817714, 0.177037, 0.875613, 0.177569, 0.817715, 0.192072, 0.817713, 0.146831, 0.87561, 0.138466, 0.875609, 0.148911, 0.817715, 0.10243, 0.875615, 0.110507, 0.875612, 0.119916, 0.817715, 0.192072, 0.875615, 0.186637, 0.817717, 0.206272, 0.817713, 0.146831, 0.87561, 0.158238, 0.817713, 0.160795, 0.817714, 0.116589, 0.875612, 0.119916, 0.875611, 0.129143, 0.817713, 0.160795, 0.875611, 0.168331, 0.817714, 0.177037, 0.817717, 0.206272, 0.875619, 0.195751, 0.817719, 0.220331, 0.337861, 0.035378, 0.565025, 0.061656, 0.337857, 0.061981, 0.195996, 0.035374, 0.337857, 0.061981, 0.196044, 0.061958, 0.196059, 0.113869, 0.337843, 0.141269, 0.196047, 0.141272, 0.196008, 0.222189, 0.337844, 0.19534, 0.337849, 0.222272, 0.195996, 0.035374, 0.337861, 0.008021, 0.337861, 0.035378, 0.19606, 0.087228, 0.337845, 0.113854, 0.196059, 0.113869, 0.196026, 0.195299, 0.337842, 0.167827, 0.337844, 0.19534, 0.195892, 0.274479, 0.337854, 0.24772, 0.337859, 0.274416, 0.196044, 0.061958, 0.33785, 0.087289, 0.19606, 0.087228, 0.196047, 0.141272, 0.337842, 0.167827, 0.196033, 0.167758, 0.195969, 0.247732, 0.337849, 0.222272, 0.337854, 0.24772, 0.884818, 0.25126, 0.895978, 0.254888, 0.888914, 0.258801, 0.870595, 0.25891, 0.867544, 0.27021, 0.863447, 0.262669, 0.913157, 0.235525, 0.924327, 0.239166, 0.917254, 0.243066, 0.891881, 0.247347, 0.903022, 0.250939, 0.895978, 0.254888, 0.877722, 0.255115, 0.874692, 0.266451, 0.870595, 0.25891, 0.927358, 0.22783, 0.924327, 0.239166, 0.92023, 0.231625, 0.898925, 0.243397, 0.910065, 0.246989, 0.903022, 0.250939, 0.877722, 0.255115, 0.888914, 0.258801, 0.881819, 0.262656, 0.934505, 0.22407, 0.931454, 0.23537, 0.927358, 0.22783, 0.905968, 0.239448, 0.917254, 0.243066, 0.910065, 0.246989, 0.920282, 0.231824, 0.917163, 0.243006, 0.913182, 0.23568, 0.891802, 0.247311, 0.902875, 0.250778, 0.895781, 0.254636, 0.87761, 0.255025, 0.874492, 0.266203, 0.870512, 0.258877, 0.927379, 0.227971, 0.924262, 0.23915, 0.920282, 0.231824, 0.898895, 0.243452, 0.909968, 0.246919, 0.902875, 0.250778, 0.884707, 0.251169, 0.881589, 0.26235, 0.87761, 0.255025, 0.934477, 0.22412, 0.931359, 0.235297, 0.927379, 0.227971, 0.905988, 0.239593, 0.917163, 0.243006, 0.909968, 0.246919, 0.884707, 0.251169, 0.895781, 0.254636, 0.888686, 0.258494, 0.870512, 0.258877, 0.867394, 0.270053, 0.863414, 0.262728, 0.849624, 0.273762, 0.874127, 0.279729, 0.869028, 0.286207, 0.951733, 0.241276, 0.927079, 0.262882, 0.943523, 0.242028, 0.900931, 0.208694, 0.927341, 0.212242, 0.900896, 0.214688, 0.849744, 0.25071, 0.857845, 0.269287, 0.849624, 0.273762, 0.900545, 0.283292, 0.927079, 0.262882, 0.932135, 0.26613, 0.932447, 0.205778, 0.943623, 0.222685, 0.927341, 0.212242, 0.849744, 0.25071, 0.874187, 0.228716, 0.857945, 0.249944, 0.869028, 0.286207, 0.900572, 0.277283, 0.900545, 0.283292, 0.951852, 0.218224, 0.943523, 0.242028, 0.943623, 0.222685, 0.900931, 0.208694, 0.874187, 0.228716, 0.869099, 0.225412, 0.991599, 0.791748, 0.901461, 0.762505, 0.991599, 0.733262, 0.845978, 0.685947, 0.901461, 0.762505, 0.811602, 0.733262, 0.81021, 0.791748, 0.901461, 0.762505, 0.845978, 0.839063, 0.957222, 0.685948, 0.901461, 0.762505, 0.9016, 0.667875, 0.9016, 0.857136, 0.901461, 0.762505, 0.957222, 0.839063, 0.930879, 0.20773, 0.947358, 0.220571, 0.929687, 0.209238, 0.871042, 0.226765, 0.853789, 0.250046, 0.851855, 0.250219, 0.870745, 0.283991, 0.900634, 0.279827, 0.900629, 0.281227, 0.949277, 0.21953, 0.947249, 0.241564, 0.947358, 0.220571, 0.871042, 0.226765, 0.900988, 0.211889, 0.872217, 0.22752, 0.852346, 0.27219, 0.871932, 0.282483, 0.870745, 0.283991, 0.949164, 0.241388, 0.929402, 0.264198, 0.947249, 0.241564, 0.900998, 0.21049, 0.929691, 0.209234, 0.900988, 0.211889, 0.852346, 0.27219, 0.853789, 0.250046, 0.85426, 0.271149, 0.900629, 0.281227, 0.929402, 0.264198, 0.930582, 0.264954, 0.93028, 0.147814, 0.930284, 0.143017, 0.986502, 0.152988, 0.930282, 0.158086, 0.930282, 0.15294, 0.986502, 0.152988, 0.930288, 0.162578, 0.930282, 0.158086, 0.986502, 0.152988, 0.930282, 0.15294, 0.93028, 0.147814, 0.986502, 0.152988, 0.513145, 0.811149, 0.468324, 0.830954, 0.468671, 0.811041, 0.468671, 0.811041, 0.423781, 0.830107, 0.423918, 0.811428, 0.423918, 0.811428, 0.35792, 0.827958, 0.357985, 0.812866, 0.357985, 0.812866, 0.348962, 0.827919, 0.349028, 0.812827, 0.423918, 0.811428, 0.465547, 0.789044, 0.468671, 0.811041, 0.51404, 0.795976, 0.565203, 0.812973, 0.513145, 0.811149, 0.357985, 0.812866, 0.418679, 0.791461, 0.423918, 0.811428, 0.468671, 0.811041, 0.51404, 0.795976, 0.513145, 0.811149, 0.352228, 0.80604, 0.354744, 0.802145, 0.357985, 0.812866, 0.423781, 0.830107, 0.465008, 0.852882, 0.418334, 0.849972, 0.565217, 0.829776, 0.51359, 0.846402, 0.512816, 0.831172, 0.35792, 0.827958, 0.418334, 0.849972, 0.354571, 0.838635, 0.468324, 0.830954, 0.51359, 0.846402, 0.465008, 0.852882, 0.352097, 0.834717, 0.354571, 0.838635, 0.350777, 0.839545, 0.565203, 0.812973, 0.512816, 0.831172, 0.513145, 0.811149, 0.70298, 0.885252, 0.173588, 0.905411, 0.173493, 0.885274, 0.702875, 0.905388, 0.173491, 0.923725, 0.173588, 0.905411, 0.703049, 0.924171, 0.173257, 0.942009, 0.173491, 0.923725, 0.173255, 0.941984, 0.703013, 0.924011, 0.173492, 0.923718, 0.173492, 0.923718, 0.70284, 0.905202, 0.173594, 0.90539, 0.173594, 0.90539, 0.70298, 0.885252, 0.173493, 0.885274, 0.70284, 0.905202, 0.821315, 0.88519, 0.70298, 0.885252, 0.703049, 0.924171, 0.821288, 0.909845, 0.821739, 0.938644, 0.702875, 0.905388, 0.821315, 0.88519, 0.821288, 0.909845, 0.703248, 0.941482, 0.821669, 0.938604, 0.703013, 0.924011, 0.703272, 0.941572, 0.821739, 0.938644, 0.82279, 0.977722, 0.703013, 0.924011, 0.821223, 0.909797, 0.70284, 0.905202, 0.821315, 0.88519, 0.856044, 0.907516, 0.85791, 0.885171, 0.821669, 0.938604, 0.845827, 0.983279, 0.851612, 0.937798, 0.821288, 0.909845, 0.851701, 0.937774, 0.821739, 0.938644, 0.821223, 0.909797, 0.851612, 0.937798, 0.856044, 0.907516, 0.821739, 0.938644, 0.845876, 0.983275, 0.82279, 0.977722, 0.821315, 0.88519, 0.856116, 0.907478, 0.821288, 0.909845, 0.173594, 0.90539, 0.064337, 0.885265, 0.038198, 0.90507, 0.173491, 0.923725, 0.038275, 0.905359, 0.173588, 0.905411, 0.173588, 0.905411, 0.064337, 0.885265, 0.173493, 0.885274, 0.173255, 0.941984, 0.038192, 0.924123, 0.038191, 0.941987, 0.173257, 0.942009, 0.038268, 0.924103, 0.173491, 0.923725, 0.173492, 0.923718, 0.038198, 0.90507, 0.038192, 0.924123, 0.034002, 0.849211, 0.03608, 0.890946, 0.030546, 0.890792, 0.038268, 0.924103, 0.030546, 0.890792, 0.03608, 0.890946, 0.038264, 0.94185, 0.028116, 0.924028, 0.038268, 0.924103, 0.582855, 0.656327, 0.183387, 0.851404, 0.610156, 0.659889, 0.157287, 0.850586, 0.132896, 0.656981, 0.064349, 0.850697, 0.582874, 0.656278, 0.183388, 0.851396, 0.157289, 0.850572, 0.157289, 0.850572, 0.132916, 0.65691, 0.582874, 0.656278, 0.157287, 0.850586, 0.064083, 0.852446, 0.15686, 0.859798, 0.182758, 0.856457, 0.157287, 0.850586, 0.15686, 0.859798, 0.110789, 0.676957, 0.056504, 0.831817, 0.108076, 0.67604, 0.26311, 0.857206, 0.212689, 0.855664, 0.26311, 0.855664, 0.212689, 0.858747, 0.26311, 0.860289, 0.212689, 0.860289, 0.26311, 0.858747, 0.264651, 0.860289, 0.26311, 0.860289, 0.212689, 0.855664, 0.26311, 0.854123, 0.26311, 0.855664, 0.212689, 0.858747, 0.26311, 0.857206, 0.26311, 0.858747, 0.41177, 0.424711, 0.589514, 0.401017, 0.412381, 0.433997, 0.936449, 0.499356, 0.594506, 0.565207, 0.964328, 0.565981, 0.410976, 0.297323, 0.58803, 0.345454, 0.411325, 0.364642, 0.59401, 0.505228, 0.870909, 0.312512, 0.593408, 0.495934, 0.936449, 0.499356, 0.887441, 0.309062, 0.59401, 0.505228, 0.273619, 0.599948, 0.229058, 0.586056, 0.229743, 0.603369, 0.732065, 0.329971, 0.77643, 0.310956, 0.776001, 0.326605, 0.733033, 0.357336, 0.780097, 0.353433, 0.734713, 0.370166, 0.594506, 0.565207, 0.416837, 0.536413, 0.417692, 0.584438, 0.671686, 0.372228, 0.734713, 0.370166, 0.672631, 0.384301, 0.671182, 0.335035, 0.732712, 0.304026, 0.732065, 0.329971, 0.334556, 0.594927, 0.272655, 0.57257, 0.273619, 0.599948, 0.334048, 0.557726, 0.271053, 0.559844, 0.272655, 0.57257, 0.272655, 0.57257, 0.22561, 0.576514, 0.229058, 0.586056, 0.41177, 0.424711, 0.134851, 0.617466, 0.118456, 0.620809, 0.59401, 0.505228, 0.416222, 0.528849, 0.416837, 0.536413, 0.334556, 0.594927, 0.272997, 0.62591, 0.334107, 0.637749, 0.671182, 0.335035, 0.733033, 0.357336, 0.671686, 0.372228, 0.59479, 0.63251, 0.417692, 0.584438, 0.418495, 0.638744, 0.732065, 0.329971, 0.776661, 0.343943, 0.733033, 0.357336, 0.273619, 0.599948, 0.229294, 0.619004, 0.272997, 0.62591, 0.411325, 0.364642, 0.588896, 0.39349, 0.41177, 0.424711, 0.964328, 0.565981, 0.59479, 0.63251, 0.992372, 0.632496, 0.271037, 0.637648, 0.270818, 0.643506, 0.334107, 0.637749, 0.671605, 0.292153, 0.734923, 0.286466, 0.73466, 0.292202, 0.272997, 0.62591, 0.271037, 0.637648, 0.334107, 0.637749, 0.73466, 0.292202, 0.732712, 0.304026, 0.671605, 0.292153, 0.774416, 0.294823, 0.77643, 0.310956, 0.732712, 0.304026, 0.229294, 0.619004, 0.231332, 0.635137, 0.272997, 0.62591, 0.229058, 0.586056, 0.224647, 0.578024, 0.227937, 0.586855, 0.776661, 0.343943, 0.781069, 0.351929, 0.780097, 0.353433, 0.229294, 0.619004, 0.222254, 0.626774, 0.223069, 0.628246, 0.229743, 0.603369, 0.227937, 0.586855, 0.22859, 0.603261, 0.229743, 0.603369, 0.228119, 0.618174, 0.229294, 0.619004, 0.776001, 0.326605, 0.777604, 0.31179, 0.777163, 0.326703, 0.776001, 0.326605, 0.777789, 0.343138, 0.776661, 0.343943, 0.77643, 0.310956, 0.783469, 0.303188, 0.777604, 0.31179, 0.793665, 0.810985, 0.636627, 0.790421, 0.793663, 0.79143, 0.793664, 0.791383, 0.638079, 0.81016, 0.636645, 0.790338, 0.793665, 0.810985, 0.637297, 0.829553, 0.638059, 0.810162, 0.58803, 0.345454, 0.671686, 0.372228, 0.588896, 0.39349, 0.418495, 0.638744, 0.334556, 0.594927, 0.334107, 0.637749, 0.416837, 0.536413, 0.333075, 0.545523, 0.334048, 0.557726, 0.417692, 0.584438, 0.334048, 0.557726, 0.334556, 0.594927, 0.58721, 0.291143, 0.671182, 0.335035, 0.58803, 0.345454, 0.588896, 0.39349, 0.672631, 0.384301, 0.589514, 0.401017, 0.774416, 0.294823, 0.732712, 0.304026, 0.73466, 0.292202, 0.271037, 0.637648, 0.272997, 0.62591, 0.231332, 0.635137, 0.7746, 0.288837, 0.73466, 0.292202, 0.734923, 0.286466, 0.271037, 0.637648, 0.231138, 0.641118, 0.270818, 0.643506, 0.410976, 0.297323, 0.041422, 0.363908, 0.013375, 0.297333, 0.411325, 0.364642, 0.069347, 0.430445, 0.041422, 0.363908, 0.118456, 0.620809, 0.069347, 0.430445, 0.41177, 0.424711, 0.134851, 0.617466, 0.12194, 0.625605, 0.118456, 0.620809, 0.066912, 0.632048, 0.118456, 0.620809, 0.12194, 0.625605, 0.793659, 0.777956, 0.636645, 0.790338, 0.632178, 0.777591, 0.637297, 0.829553, 0.614976, 0.810045, 0.638059, 0.810162, 0.636627, 0.790421, 0.614976, 0.810045, 0.632164, 0.777615, 0.636645, 0.790338, 0.614959, 0.810035, 0.632178, 0.777591, 0.637389, 0.829543, 0.614959, 0.810035, 0.638079, 0.81016, 0.793669, 0.830416, 0.638079, 0.81016, 0.793669, 0.810974, 0.793663, 0.830423, 0.631858, 0.842314, 0.637297, 0.829553, 0.793656, 0.843973, 0.637389, 0.829543, 0.793669, 0.830416, 0.058134, 0.504155, 0.060939, 0.442648, 0.060939, 0.50417, 0.06085, 0.565686, 0.058134, 0.504155, 0.060939, 0.50417, 0.060762, 0.627202, 0.058038, 0.56567, 0.06085, 0.565686, 0.589514, 0.401017, 0.411768, 0.424711, 0.412377, 0.433998, 0.594526, 0.565218, 0.936456, 0.499356, 0.964336, 0.56598, 0.588029, 0.345455, 0.410958, 0.297329, 0.411316, 0.364646, 0.87091, 0.312512, 0.594012, 0.50523, 0.593415, 0.495938, 0.887459, 0.309063, 0.936456, 0.499356, 0.594012, 0.50523, 0.273617, 0.599948, 0.229059, 0.586055, 0.272655, 0.572569, 0.732065, 0.329972, 0.77643, 0.310956, 0.732712, 0.304026, 0.780097, 0.353433, 0.733032, 0.357336, 0.734713, 0.370166, 0.594526, 0.565218, 0.416839, 0.536415, 0.594012, 0.50523, 0.734713, 0.370166, 0.671686, 0.372228, 0.67263, 0.384301, 0.732712, 0.304026, 0.671182, 0.335035, 0.732065, 0.329972, 0.334556, 0.594927, 0.272655, 0.572569, 0.334048, 0.557726, 0.334048, 0.557726, 0.271054, 0.559845, 0.333072, 0.545524, 0.272655, 0.572569, 0.22561, 0.576514, 0.271054, 0.559845, 0.411768, 0.424711, 0.13485, 0.617466, 0.412377, 0.433998, 0.594012, 0.50523, 0.41622, 0.528848, 0.593415, 0.495938, 0.272997, 0.62591, 0.334556, 0.594927, 0.334107, 0.637749, 0.733032, 0.357336, 0.671182, 0.335035, 0.671686, 0.372228, 0.5948, 0.632514, 0.417694, 0.584439, 0.594526, 0.565218, 0.77666, 0.343943, 0.732065, 0.329972, 0.733032, 0.357336, 0.229294, 0.619005, 0.273617, 0.599948, 0.272997, 0.62591, 0.588896, 0.39349, 0.411316, 0.364646, 0.411768, 0.424711, 0.5948, 0.632514, 0.964336, 0.56598, 0.992373, 0.632495, 0.271037, 0.637649, 0.334107, 0.637749, 0.270818, 0.643506, 0.671605, 0.292153, 0.734659, 0.292203, 0.734924, 0.286466, 0.272997, 0.62591, 0.334107, 0.637749, 0.271037, 0.637649, 0.734659, 0.292203, 0.671605, 0.292153, 0.732712, 0.304026, 0.77643, 0.310956, 0.774416, 0.294823, 0.732712, 0.304026, 0.231332, 0.635137, 0.229294, 0.619005, 0.272997, 0.62591, 0.229059, 0.586055, 0.224647, 0.578023, 0.22561, 0.576514, 0.781068, 0.35193, 0.77666, 0.343943, 0.780097, 0.353433, 0.222255, 0.626775, 0.229294, 0.619005, 0.223069, 0.628246, 0.229742, 0.60337, 0.227938, 0.586855, 0.229059, 0.586055, 0.228119, 0.618174, 0.229742, 0.60337, 0.229294, 0.619005, 0.775997, 0.326607, 0.777603, 0.31179, 0.77643, 0.310956, 0.777788, 0.343139, 0.775997, 0.326607, 0.77666, 0.343943, 0.77643, 0.310956, 0.783468, 0.303188, 0.782663, 0.301709, 0.63188, 0.842284, 0.793661, 0.830396, 0.793654, 0.843873, 0.637325, 0.82955, 0.793664, 0.810966, 0.793661, 0.830396, 0.671686, 0.372228, 0.588029, 0.345455, 0.588896, 0.39349, 0.418497, 0.638745, 0.334556, 0.594927, 0.417694, 0.584439, 0.416839, 0.536415, 0.333072, 0.545524, 0.41622, 0.528848, 0.417694, 0.584439, 0.334048, 0.557726, 0.416839, 0.536415, 0.671182, 0.335035, 0.587207, 0.291144, 0.588029, 0.345455, 0.67263, 0.384301, 0.588896, 0.39349, 0.589514, 0.401017, 0.774416, 0.294823, 0.734659, 0.292203, 0.732712, 0.304026, 0.271037, 0.637649, 0.231332, 0.635137, 0.272997, 0.62591, 0.734659, 0.292203, 0.7746, 0.288837, 0.734924, 0.286466, 0.231138, 0.641118, 0.271037, 0.637649, 0.270818, 0.643506, 0.410958, 0.297329, 0.041421, 0.363909, 0.411316, 0.364646, 0.411316, 0.364646, 0.069346, 0.430445, 0.411768, 0.424711, 0.069346, 0.430445, 0.118406, 0.620821, 0.411768, 0.424711, 0.13485, 0.617466, 0.118406, 0.620821, 0.121928, 0.625608, 0.06691, 0.632049, 0.118406, 0.620821, 0.066759, 0.630973, 0.793666, 0.83063, 0.63807, 0.810155, 0.793668, 0.810975, 0.636572, 0.790418, 0.614956, 0.810076, 0.632141, 0.777607, 0.637325, 0.82955, 0.614956, 0.810076, 0.638054, 0.81017, 0.614925, 0.810016, 0.637329, 0.829591, 0.631887, 0.842267, 0.614925, 0.810016, 0.636659, 0.790387, 0.63807, 0.810155, 0.793664, 0.810966, 0.636572, 0.790418, 0.793663, 0.791425, 0.793654, 0.843944, 0.637329, 0.829591, 0.793666, 0.83063, 0.63807, 0.810155, 0.793664, 0.791426, 0.793668, 0.810975, 0.793663, 0.791425, 0.632141, 0.777607, 0.793657, 0.778025, 0.059816, 0.627501, 0.057265, 0.565993, 0.060077, 0.565986, 0.060068, 0.504472, 0.057265, 0.565993, 0.057255, 0.504479, 0.06006, 0.442957, 0.057255, 0.504479, 0.057247, 0.442965, 0.925321, 0.095132, 0.953963, 0.095749, 0.953934, 0.095249, 0.925321, 0.095132, 0.945551, 0.027292, 0.859443, 0.025596, 0.858797, 0.025403, 0.914917, 0.095884, 0.835853, 0.027871, 0.915206, 0.096319, 0.859443, 0.025596, 0.836496, 0.027953, 0.92503, 0.094649, 0.944942, 0.026689, 0.953653, 0.094629, 0.92651, 0.103811, 0.925321, 0.095132, 0.916806, 0.100719, 0.974598, 0.022856, 0.975881, 0.096418, 0.975881, 0.022866, 0.776587, 0.690023, 0.75224, 0.668189, 0.793445, 0.670771, 0.74948, 0.690299, 0.674366, 0.671127, 0.75224, 0.668189, 0.634605, 0.673259, 0.63574, 0.691253, 0.634663, 0.673767, 0.675737, 0.690437, 0.634605, 0.673259, 0.674366, 0.671127, 0.752444, 0.713048, 0.776615, 0.69072, 0.793567, 0.712892, 0.749782, 0.691614, 0.674481, 0.709862, 0.675604, 0.691381, 0.675604, 0.691381, 0.633515, 0.708376, 0.63574, 0.691253, 0.793445, 0.670771, 0.776615, 0.69072, 0.776587, 0.690023, 0.750685, 0.729676, 0.788755, 0.734675, 0.75064, 0.739101, 0.675232, 0.729676, 0.75064, 0.739101, 0.675187, 0.739101, 0.635142, 0.734103, 0.675187, 0.739101, 0.635128, 0.73481, 0.752238, 0.668196, 0.776582, 0.690031, 0.793439, 0.670795, 0.674364, 0.67112, 0.749471, 0.690309, 0.752238, 0.668196, 0.634601, 0.673243, 0.635734, 0.691239, 0.635678, 0.69059, 0.634601, 0.673243, 0.675733, 0.690431, 0.674364, 0.67112, 0.752426, 0.713058, 0.776612, 0.690725, 0.749761, 0.691632, 0.749761, 0.691632, 0.674472, 0.709856, 0.752426, 0.713058, 0.675598, 0.691375, 0.633493, 0.708344, 0.674472, 0.709856, 0.776612, 0.690725, 0.793439, 0.670795, 0.776582, 0.690031, 0.788767, 0.734052, 0.750697, 0.73905, 0.750652, 0.729625, 0.750652, 0.729625, 0.675244, 0.73905, 0.675199, 0.729625, 0.635154, 0.734624, 0.675199, 0.729625, 0.675244, 0.73905, 0.221097, 0.624668, 0.228119, 0.618174, 0.222255, 0.626775, 0.226489, 0.616845, 0.228589, 0.603262, 0.228119, 0.618174, 0.779361, 0.341831, 0.77716, 0.326704, 0.777788, 0.343139, 0.228589, 0.603262, 0.226364, 0.588207, 0.227938, 0.586855, 0.782513, 0.349784, 0.777788, 0.343139, 0.781068, 0.35193, 0.77716, 0.326704, 0.779233, 0.313117, 0.777603, 0.31179, 0.227938, 0.586855, 0.223215, 0.580178, 0.224647, 0.578023, 0.777603, 0.31179, 0.784636, 0.305286, 0.783468, 0.303188, 0.636659, 0.790387, 0.793658, 0.777921, 0.793664, 0.791426, 0.227937, 0.586855, 0.223214, 0.580179, 0.226364, 0.588208, 0.777163, 0.326703, 0.779234, 0.313116, 0.778811, 0.326831, 0.777789, 0.343138, 0.782513, 0.349783, 0.781069, 0.351929, 0.22859, 0.603261, 0.226364, 0.588208, 0.22694, 0.603132, 0.777163, 0.326703, 0.779362, 0.34183, 0.777789, 0.343138, 0.22859, 0.603261, 0.22649, 0.616845, 0.228119, 0.618174, 0.228119, 0.618174, 0.221097, 0.624668, 0.222254, 0.626774, 0.777604, 0.31179, 0.784636, 0.305286, 0.779234, 0.313116, 0.793663, 0.79143, 0.632164, 0.777615, 0.793658, 0.778046, 0.477594, 0.450198, 0.500714, 0.491249, 0.477594, 0.493162, 0.500714, 0.452112, 0.515205, 0.482978, 0.500714, 0.491249, 0.520509, 0.47168, 0.515205, 0.482978, 0.515205, 0.460382, 0.196008, 0.222189, 0.195969, 0.247732, 0.009115, 0.226599, 0.196033, 0.167758, 0.009118, 0.162581, 0.009118, 0.141286, 0.19606, 0.087228, 0.009117, 0.098152, 0.009116, 0.077572, 0.195969, 0.247732, 0.195892, 0.274479, 0.009113, 0.24785, 0.196033, 0.167758, 0.196026, 0.195299, 0.009117, 0.184601, 0.196059, 0.113869, 0.009118, 0.119378, 0.009117, 0.098152, 0.195908, 0.00804, 0.195996, 0.035374, 0.009114, 0.056368, 0.196026, 0.195299, 0.196008, 0.222189, 0.009116, 0.206284, 0.196047, 0.141272, 0.009118, 0.141286, 0.009118, 0.119378, 0.196044, 0.061958, 0.009116, 0.077572, 0.009114, 0.056368, 0.565025, 0.061656, 0.817715, 0.10243, 0.817714, 0.116589, 0.337854, 0.24772, 0.337849, 0.222272, 0.565021, 0.222276, 0.337843, 0.141269, 0.565008, 0.141283, 0.565009, 0.167605, 0.337857, 0.061981, 0.565025, 0.061656, 0.565017, 0.087349, 0.337859, 0.274416, 0.337854, 0.24772, 0.565032, 0.247864, 0.337842, 0.167827, 0.565009, 0.167605, 0.565012, 0.194967, 0.33785, 0.087289, 0.565017, 0.087349, 0.56501, 0.114052, 0.337861, 0.035378, 0.337861, 0.008021, 0.565045, 0.008079, 0.337849, 0.222272, 0.337844, 0.19534, 0.565012, 0.194967, 0.337843, 0.141269, 0.337845, 0.113854, 0.56501, 0.114052, 0.565044, 0.274642, 0.565032, 0.247864, 0.817717, 0.206272, 0.565012, 0.194967, 0.565009, 0.167605, 0.817713, 0.160795, 0.565017, 0.087349, 0.817714, 0.116589, 0.817713, 0.131603, 0.565035, 0.035139, 0.565045, 0.008079, 0.817719, 0.074483, 0.565021, 0.222276, 0.565012, 0.194967, 0.817714, 0.177037, 0.56501, 0.114052, 0.817713, 0.131603, 0.817713, 0.146831, 0.565035, 0.035139, 0.817717, 0.088364, 0.817715, 0.10243, 0.565032, 0.247864, 0.565021, 0.222276, 0.817715, 0.192072, 0.565008, 0.141283, 0.817713, 0.146831, 0.817713, 0.160795, 0.87561, 0.138466, 0.875611, 0.129143, 0.93028, 0.147814, 0.875611, 0.168331, 0.930282, 0.15294, 0.930282, 0.158086, 0.875615, 0.186637, 0.875613, 0.177569, 0.930282, 0.158086, 0.875612, 0.119916, 0.930284, 0.143017, 0.93028, 0.147814, 0.817713, 0.131603, 0.817714, 0.116589, 0.875611, 0.129143, 0.817717, 0.088364, 0.817719, 0.074483, 0.875619, 0.101591, 0.817714, 0.177037, 0.875611, 0.168331, 0.875613, 0.177569, 0.817713, 0.146831, 0.817713, 0.131603, 0.87561, 0.138466, 0.817715, 0.10243, 0.817717, 0.088364, 0.875615, 0.110507, 0.817715, 0.192072, 0.875613, 0.177569, 0.875615, 0.186637, 0.817713, 0.146831, 0.875609, 0.148911, 0.87561, 0.158238, 0.817714, 0.116589, 0.817715, 0.10243, 0.875612, 0.119916, 0.817713, 0.160795, 0.87561, 0.158238, 0.875611, 0.168331, 0.817717, 0.206272, 0.875615, 0.186637, 0.875619, 0.195751, 0.337861, 0.035378, 0.565035, 0.035139, 0.565025, 0.061656, 0.195996, 0.035374, 0.337861, 0.035378, 0.337857, 0.061981, 0.196059, 0.113869, 0.337845, 0.113854, 0.337843, 0.141269, 0.196008, 0.222189, 0.196026, 0.195299, 0.337844, 0.19534, 0.195996, 0.035374, 0.195908, 0.00804, 0.337861, 0.008021, 0.19606, 0.087228, 0.33785, 0.087289, 0.337845, 0.113854, 0.196026, 0.195299, 0.196033, 0.167758, 0.337842, 0.167827, 0.195892, 0.274479, 0.195969, 0.247732, 0.337854, 0.24772, 0.196044, 0.061958, 0.337857, 0.061981, 0.33785, 0.087289, 0.196047, 0.141272, 0.337843, 0.141269, 0.337842, 0.167827, 0.195969, 0.247732, 0.196008, 0.222189, 0.337849, 0.222272, 0.884818, 0.25126, 0.891881, 0.247347, 0.895978, 0.254888, 0.870595, 0.25891, 0.874692, 0.266451, 0.867544, 0.27021, 0.913157, 0.235525, 0.92023, 0.231625, 0.924327, 0.239166, 0.891881, 0.247347, 0.898925, 0.243397, 0.903022, 0.250939, 0.877722, 0.255115, 0.881819, 0.262656, 0.874692, 0.266451, 0.927358, 0.22783, 0.931454, 0.23537, 0.924327, 0.239166, 0.898925, 0.243397, 0.905968, 0.239448, 0.910065, 0.246989, 0.877722, 0.255115, 0.884818, 0.25126, 0.888914, 0.258801, 0.934505, 0.22407, 0.938602, 0.231612, 0.931454, 0.23537, 0.905968, 0.239448, 0.913157, 0.235525, 0.917254, 0.243066, 0.920282, 0.231824, 0.924262, 0.23915, 0.917163, 0.243006, 0.891802, 0.247311, 0.898895, 0.243452, 0.902875, 0.250778, 0.87761, 0.255025, 0.881589, 0.26235, 0.874492, 0.266203, 0.927379, 0.227971, 0.931359, 0.235297, 0.924262, 0.23915, 0.898895, 0.243452, 0.905988, 0.239593, 0.909968, 0.246919, 0.884707, 0.251169, 0.888686, 0.258494, 0.881589, 0.26235, 0.934477, 0.22412, 0.938457, 0.231446, 0.931359, 0.235297, 0.905988, 0.239593, 0.913182, 0.23568, 0.917163, 0.243006, 0.884707, 0.251169, 0.891802, 0.247311, 0.895781, 0.254636, 0.870512, 0.258877, 0.874492, 0.266203, 0.867394, 0.270053, 0.849624, 0.273762, 0.857845, 0.269287, 0.874127, 0.279729, 0.951733, 0.241276, 0.932135, 0.26613, 0.927079, 0.262882, 0.900931, 0.208694, 0.932447, 0.205778, 0.927341, 0.212242, 0.849744, 0.25071, 0.857945, 0.249944, 0.857845, 0.269287, 0.900545, 0.283292, 0.900572, 0.277283, 0.927079, 0.262882, 0.932447, 0.205778, 0.951852, 0.218224, 0.943623, 0.222685, 0.849744, 0.25071, 0.869099, 0.225412, 0.874187, 0.228716, 0.869028, 0.286207, 0.874127, 0.279729, 0.900572, 0.277283, 0.951852, 0.218224, 0.951733, 0.241276, 0.943523, 0.242028, 0.900931, 0.208694, 0.900896, 0.214688, 0.874187, 0.228716, 0.991599, 0.791748, 0.957222, 0.839063, 0.901461, 0.762505, 0.845978, 0.685947, 0.9016, 0.667875, 0.901461, 0.762505, 0.81021, 0.791748, 0.811602, 0.733262, 0.901461, 0.762505, 0.957222, 0.685948, 0.991599, 0.733262, 0.901461, 0.762505, 0.9016, 0.857136, 0.845978, 0.839063, 0.901461, 0.762505, 0.930879, 0.20773, 0.949277, 0.21953, 0.947358, 0.220571, 0.871042, 0.226765, 0.872217, 0.22752, 0.853789, 0.250046, 0.870745, 0.283991, 0.871932, 0.282483, 0.900634, 0.279827, 0.949277, 0.21953, 0.949164, 0.241388, 0.947249, 0.241564, 0.871042, 0.226765, 0.900998, 0.21049, 0.900988, 0.211889, 0.852346, 0.27219, 0.85426, 0.271149, 0.871932, 0.282483, 0.949164, 0.241388, 0.930582, 0.264954, 0.929402, 0.264198, 0.900998, 0.21049, 0.930883, 0.207726, 0.929691, 0.209234, 0.852346, 0.27219, 0.851855, 0.250219, 0.853789, 0.250046, 0.900629, 0.281227, 0.900634, 0.279827, 0.929402, 0.264198, 0.513145, 0.811149, 0.512816, 0.831172, 0.468324, 0.830954, 0.468671, 0.811041, 0.468324, 0.830954, 0.423781, 0.830107, 0.423918, 0.811428, 0.423781, 0.830107, 0.35792, 0.827958, 0.357985, 0.812866, 0.35792, 0.827958, 0.348962, 0.827919, 0.423918, 0.811428, 0.418679, 0.791461, 0.465547, 0.789044, 0.51404, 0.795976, 0.565603, 0.811174, 0.565203, 0.812973, 0.357985, 0.812866, 0.354744, 0.802145, 0.418679, 0.791461, 0.468671, 0.811041, 0.465547, 0.789044, 0.51404, 0.795976, 0.352228, 0.80604, 0.350957, 0.801195, 0.354744, 0.802145, 0.423781, 0.830107, 0.468324, 0.830954, 0.465008, 0.852882, 0.565217, 0.829776, 0.565603, 0.83159, 0.51359, 0.846402, 0.35792, 0.827958, 0.423781, 0.830107, 0.418334, 0.849972, 0.468324, 0.830954, 0.512816, 0.831172, 0.51359, 0.846402, 0.352097, 0.834717, 0.35792, 0.827958, 0.354571, 0.838635, 0.565203, 0.812973, 0.565217, 0.829776, 0.512816, 0.831172, 0.70298, 0.885252, 0.702875, 0.905388, 0.173588, 0.905411, 0.702875, 0.905388, 0.703049, 0.924171, 0.173491, 0.923725, 0.703049, 0.924171, 0.703272, 0.941572, 0.173257, 0.942009, 0.173255, 0.941984, 0.703248, 0.941482, 0.703013, 0.924011, 0.173492, 0.923718, 0.703013, 0.924011, 0.70284, 0.905202, 0.173594, 0.90539, 0.70284, 0.905202, 0.70298, 0.885252, 0.70284, 0.905202, 0.821223, 0.909797, 0.821315, 0.88519, 0.703049, 0.924171, 0.702875, 0.905388, 0.821288, 0.909845, 0.702875, 0.905388, 0.70298, 0.885252, 0.821315, 0.88519, 0.703248, 0.941482, 0.822803, 0.977728, 0.821669, 0.938604, 0.703272, 0.941572, 0.703049, 0.924171, 0.821739, 0.938644, 0.703013, 0.924011, 0.821669, 0.938604, 0.821223, 0.909797, 0.821315, 0.88519, 0.821223, 0.909797, 0.856044, 0.907516, 0.821669, 0.938604, 0.822803, 0.977728, 0.845827, 0.983279, 0.821288, 0.909845, 0.856116, 0.907478, 0.851701, 0.937774, 0.821223, 0.909797, 0.821669, 0.938604, 0.851612, 0.937798, 0.821739, 0.938644, 0.851701, 0.937774, 0.845876, 0.983275, 0.821315, 0.88519, 0.85791, 0.885171, 0.856116, 0.907478, 0.173594, 0.90539, 0.173493, 0.885274, 0.064337, 0.885265, 0.173491, 0.923725, 0.038268, 0.924103, 0.038275, 0.905359, 0.173588, 0.905411, 0.038275, 0.905359, 0.064337, 0.885265, 0.173255, 0.941984, 0.173492, 0.923718, 0.038192, 0.924123, 0.173257, 0.942009, 0.038264, 0.94185, 0.038268, 0.924103, 0.173492, 0.923718, 0.173594, 0.90539, 0.038198, 0.90507, 0.038268, 0.924103, 0.028116, 0.924028, 0.030546, 0.890792, 0.038264, 0.94185, 0.028167, 0.941882, 0.028116, 0.924028, 0.582855, 0.656327, 0.157287, 0.850586, 0.183387, 0.851404, 0.157287, 0.850586, 0.582855, 0.656327, 0.132896, 0.656981, 0.582874, 0.656278, 0.610179, 0.659831, 0.183388, 0.851396, 0.157289, 0.850572, 0.06435, 0.850689, 0.132916, 0.65691, 0.157287, 0.850586, 0.064349, 0.850697, 0.064083, 0.852446, 0.110789, 0.676957, 0.059217, 0.832734, 0.056504, 0.831817, 0.26311, 0.857206, 0.212689, 0.857206, 0.212689, 0.855664, 0.212689, 0.858747, 0.26311, 0.858747, 0.26311, 0.860289, 0.26311, 0.858747, 0.264651, 0.858747, 0.264651, 0.860289, 0.212689, 0.855664, 0.212689, 0.854123, 0.26311, 0.854123, 0.212689, 0.858747, 0.212689, 0.857206, 0.26311, 0.857206, 0.41177, 0.424711, 0.588896, 0.39349, 0.589514, 0.401017, 0.936449, 0.499356, 0.59401, 0.505228, 0.594506, 0.565207, 0.410976, 0.297323, 0.58721, 0.291143, 0.58803, 0.345454, 0.59401, 0.505228, 0.887441, 0.309062, 0.870909, 0.312512, 0.936449, 0.499356, 0.939, 0.299007, 0.887441, 0.309062, 0.273619, 0.599948, 0.272655, 0.57257, 0.229058, 0.586056, 0.732065, 0.329971, 0.732712, 0.304026, 0.77643, 0.310956, 0.733033, 0.357336, 0.776661, 0.343943, 0.780097, 0.353433, 0.594506, 0.565207, 0.59401, 0.505228, 0.416837, 0.536413, 0.671686, 0.372228, 0.733033, 0.357336, 0.734713, 0.370166, 0.671182, 0.335035, 0.671605, 0.292153, 0.732712, 0.304026, 0.334556, 0.594927, 0.334048, 0.557726, 0.272655, 0.57257, 0.334048, 0.557726, 0.333075, 0.545523, 0.271053, 0.559844, 0.272655, 0.57257, 0.271053, 0.559844, 0.22561, 0.576514, 0.41177, 0.424711, 0.412381, 0.433997, 0.134851, 0.617466, 0.59401, 0.505228, 0.593408, 0.495934, 0.416222, 0.528849, 0.334556, 0.594927, 0.273619, 0.599948, 0.272997, 0.62591, 0.671182, 0.335035, 0.732065, 0.329971, 0.733033, 0.357336, 0.59479, 0.63251, 0.594506, 0.565207, 0.417692, 0.584438, 0.732065, 0.329971, 0.776001, 0.326605, 0.776661, 0.343943, 0.273619, 0.599948, 0.229743, 0.603369, 0.229294, 0.619004, 0.411325, 0.364642, 0.58803, 0.345454, 0.588896, 0.39349, 0.964328, 0.565981, 0.594506, 0.565207, 0.59479, 0.63251, 0.774416, 0.294823, 0.782663, 0.301709, 0.77643, 0.310956, 0.229294, 0.619004, 0.223069, 0.628246, 0.231332, 0.635137, 0.229058, 0.586056, 0.22561, 0.576514, 0.224647, 0.578024, 0.776661, 0.343943, 0.777789, 0.343138, 0.781069, 0.351929, 0.229294, 0.619004, 0.228119, 0.618174, 0.222254, 0.626774, 0.229743, 0.603369, 0.229058, 0.586056, 0.227937, 0.586855, 0.229743, 0.603369, 0.22859, 0.603261, 0.228119, 0.618174, 0.776001, 0.326605, 0.77643, 0.310956, 0.777604, 0.31179, 0.776001, 0.326605, 0.777163, 0.326703, 0.777789, 0.343138, 0.77643, 0.310956, 0.782663, 0.301709, 0.783469, 0.303188, 0.793665, 0.810985, 0.638059, 0.810162, 0.636627, 0.790421, 0.793664, 0.791383, 0.793669, 0.810974, 0.638079, 0.81016, 0.793665, 0.810985, 0.793663, 0.830423, 0.637297, 0.829553, 0.58803, 0.345454, 0.671182, 0.335035, 0.671686, 0.372228, 0.418495, 0.638744, 0.417692, 0.584438, 0.334556, 0.594927, 0.416837, 0.536413, 0.416222, 0.528849, 0.333075, 0.545523, 0.417692, 0.584438, 0.416837, 0.536413, 0.334048, 0.557726, 0.58721, 0.291143, 0.671605, 0.292153, 0.671182, 0.335035, 0.588896, 0.39349, 0.671686, 0.372228, 0.672631, 0.384301, 0.7746, 0.288837, 0.774416, 0.294823, 0.73466, 0.292202, 0.271037, 0.637648, 0.231332, 0.635137, 0.231138, 0.641118, 0.410976, 0.297323, 0.411325, 0.364642, 0.041422, 0.363908, 0.411325, 0.364642, 0.41177, 0.424711, 0.069347, 0.430445, 0.118456, 0.620809, 0.066762, 0.630968, 0.069347, 0.430445, 0.066912, 0.632048, 0.066762, 0.630968, 0.118456, 0.620809, 0.793659, 0.777956, 0.793664, 0.791383, 0.636645, 0.790338, 0.637297, 0.829553, 0.631858, 0.842314, 0.614976, 0.810045, 0.636627, 0.790421, 0.638059, 0.810162, 0.614976, 0.810045, 0.636645, 0.790338, 0.638079, 0.81016, 0.614959, 0.810035, 0.637389, 0.829543, 0.631921, 0.842316, 0.614959, 0.810035, 0.793669, 0.830416, 0.637389, 0.829543, 0.638079, 0.81016, 0.793663, 0.830423, 0.793654, 0.843891, 0.631858, 0.842314, 0.793656, 0.843973, 0.631921, 0.842316, 0.637389, 0.829543, 0.058134, 0.504155, 0.058134, 0.442632, 0.060939, 0.442648, 0.06085, 0.565686, 0.058038, 0.56567, 0.058134, 0.504155, 0.060762, 0.627202, 0.057941, 0.627186, 0.058038, 0.56567, 0.589514, 0.401017, 0.588896, 0.39349, 0.411768, 0.424711, 0.594526, 0.565218, 0.594012, 0.50523, 0.936456, 0.499356, 0.588029, 0.345455, 0.587207, 0.291144, 0.410958, 0.297329, 0.87091, 0.312512, 0.887459, 0.309063, 0.594012, 0.50523, 0.887459, 0.309063, 0.939024, 0.299004, 0.936456, 0.499356, 0.273617, 0.599948, 0.229742, 0.60337, 0.229059, 0.586055, 0.732065, 0.329972, 0.775997, 0.326607, 0.77643, 0.310956, 0.780097, 0.353433, 0.77666, 0.343943, 0.733032, 0.357336, 0.594526, 0.565218, 0.417694, 0.584439, 0.416839, 0.536415, 0.734713, 0.370166, 0.733032, 0.357336, 0.671686, 0.372228, 0.732712, 0.304026, 0.671605, 0.292153, 0.671182, 0.335035, 0.334556, 0.594927, 0.273617, 0.599948, 0.272655, 0.572569, 0.334048, 0.557726, 0.272655, 0.572569, 0.271054, 0.559845, 0.272655, 0.572569, 0.229059, 0.586055, 0.22561, 0.576514, 0.411768, 0.424711, 0.118406, 0.620821, 0.13485, 0.617466, 0.594012, 0.50523, 0.416839, 0.536415, 0.41622, 0.528848, 0.272997, 0.62591, 0.273617, 0.599948, 0.334556, 0.594927, 0.733032, 0.357336, 0.732065, 0.329972, 0.671182, 0.335035, 0.5948, 0.632514, 0.418497, 0.638745, 0.417694, 0.584439, 0.77666, 0.343943, 0.775997, 0.326607, 0.732065, 0.329972, 0.229294, 0.619005, 0.229742, 0.60337, 0.273617, 0.599948, 0.588896, 0.39349, 0.588029, 0.345455, 0.411316, 0.364646, 0.5948, 0.632514, 0.594526, 0.565218, 0.964336, 0.56598, 0.77643, 0.310956, 0.782663, 0.301709, 0.774416, 0.294823, 0.231332, 0.635137, 0.223069, 0.628246, 0.229294, 0.619005, 0.229059, 0.586055, 0.227938, 0.586855, 0.224647, 0.578023, 0.781068, 0.35193, 0.777788, 0.343139, 0.77666, 0.343943, 0.222255, 0.626775, 0.228119, 0.618174, 0.229294, 0.619005, 0.229742, 0.60337, 0.228589, 0.603262, 0.227938, 0.586855, 0.228119, 0.618174, 0.228589, 0.603262, 0.229742, 0.60337, 0.775997, 0.326607, 0.77716, 0.326704, 0.777603, 0.31179, 0.777788, 0.343139, 0.77716, 0.326704, 0.775997, 0.326607, 0.77643, 0.310956, 0.777603, 0.31179, 0.783468, 0.303188, 0.63188, 0.842284, 0.637325, 0.82955, 0.793661, 0.830396, 0.637325, 0.82955, 0.638054, 0.81017, 0.793664, 0.810966, 0.671686, 0.372228, 0.671182, 0.335035, 0.588029, 0.345455, 0.418497, 0.638745, 0.334107, 0.637749, 0.334556, 0.594927, 0.416839, 0.536415, 0.334048, 0.557726, 0.333072, 0.545524, 0.417694, 0.584439, 0.334556, 0.594927, 0.334048, 0.557726, 0.671182, 0.335035, 0.671605, 0.292153, 0.587207, 0.291144, 0.67263, 0.384301, 0.671686, 0.372228, 0.588896, 0.39349, 0.734659, 0.292203, 0.774416, 0.294823, 0.7746, 0.288837, 0.231138, 0.641118, 0.231332, 0.635137, 0.271037, 0.637649, 0.410958, 0.297329, 0.013373, 0.297333, 0.041421, 0.363909, 0.411316, 0.364646, 0.041421, 0.363909, 0.069346, 0.430445, 0.069346, 0.430445, 0.066759, 0.630973, 0.118406, 0.620821, 0.06691, 0.632049, 0.121928, 0.625608, 0.118406, 0.620821, 0.793666, 0.83063, 0.637329, 0.829591, 0.63807, 0.810155, 0.636572, 0.790418, 0.638054, 0.81017, 0.614956, 0.810076, 0.637325, 0.82955, 0.63188, 0.842284, 0.614956, 0.810076, 0.614925, 0.810016, 0.63807, 0.810155, 0.637329, 0.829591, 0.614925, 0.810016, 0.632157, 0.777577, 0.636659, 0.790387, 0.793664, 0.810966, 0.638054, 0.81017, 0.636572, 0.790418, 0.793654, 0.843944, 0.631887, 0.842267, 0.637329, 0.829591, 0.63807, 0.810155, 0.636659, 0.790387, 0.793664, 0.791426, 0.793663, 0.791425, 0.636572, 0.790418, 0.632141, 0.777607, 0.059816, 0.627501, 0.057003, 0.627508, 0.057265, 0.565993, 0.060068, 0.504472, 0.060077, 0.565986, 0.057265, 0.565993, 0.06006, 0.442957, 0.060068, 0.504472, 0.057255, 0.504479, 0.925321, 0.095132, 0.92651, 0.103811, 0.953963, 0.095749, 0.925321, 0.095132, 0.953934, 0.095249, 0.945551, 0.027292, 0.858797, 0.025403, 0.92503, 0.094649, 0.914917, 0.095884, 0.915206, 0.096319, 0.925321, 0.095132, 0.859443, 0.025596, 0.92503, 0.094649, 0.858797, 0.025403, 0.944942, 0.026689, 0.974598, 0.022856, 0.974598, 0.096407, 0.975881, 0.096418, 0.776587, 0.690023, 0.74948, 0.690299, 0.75224, 0.668189, 0.74948, 0.690299, 0.675737, 0.690437, 0.674366, 0.671127, 0.634605, 0.673259, 0.635682, 0.690598, 0.63574, 0.691253, 0.675737, 0.690437, 0.635682, 0.690598, 0.634605, 0.673259, 0.752444, 0.713048, 0.749782, 0.691614, 0.776615, 0.69072, 0.749782, 0.691614, 0.752444, 0.713048, 0.674481, 0.709862, 0.675604, 0.691381, 0.674481, 0.709862, 0.633515, 0.708376, 0.793445, 0.670771, 0.793624, 0.67137, 0.776615, 0.69072, 0.750685, 0.729676, 0.788767, 0.734002, 0.788755, 0.734675, 0.675232, 0.729676, 0.750685, 0.729676, 0.75064, 0.739101, 0.635142, 0.734103, 0.675232, 0.729676, 0.675187, 0.739101, 0.752238, 0.668196, 0.749471, 0.690309, 0.776582, 0.690031, 0.674364, 0.67112, 0.675733, 0.690431, 0.749471, 0.690309, 0.634601, 0.673243, 0.63466, 0.673753, 0.635734, 0.691239, 0.634601, 0.673243, 0.635678, 0.69059, 0.675733, 0.690431, 0.752426, 0.713058, 0.79356, 0.712901, 0.776612, 0.690725, 0.749761, 0.691632, 0.675598, 0.691375, 0.674472, 0.709856, 0.675598, 0.691375, 0.635734, 0.691239, 0.633493, 0.708344, 0.776612, 0.690725, 0.793621, 0.671383, 0.793439, 0.670795, 0.788767, 0.734052, 0.788789, 0.734724, 0.750697, 0.73905, 0.750652, 0.729625, 0.750697, 0.73905, 0.675244, 0.73905, 0.635154, 0.734624, 0.635128, 0.733918, 0.675199, 0.729625, 0.221097, 0.624668, 0.226489, 0.616845, 0.228119, 0.618174, 0.226489, 0.616845, 0.22694, 0.603132, 0.228589, 0.603262, 0.779361, 0.341831, 0.778809, 0.326832, 0.77716, 0.326704, 0.228589, 0.603262, 0.22694, 0.603132, 0.226364, 0.588207, 0.782513, 0.349784, 0.779361, 0.341831, 0.777788, 0.343139, 0.77716, 0.326704, 0.778809, 0.326832, 0.779233, 0.313117, 0.227938, 0.586855, 0.226364, 0.588207, 0.223215, 0.580178, 0.777603, 0.31179, 0.779233, 0.313117, 0.784636, 0.305286, 0.636659, 0.790387, 0.632157, 0.777577, 0.793658, 0.777921, 0.227937, 0.586855, 0.224647, 0.578024, 0.223214, 0.580179, 0.777163, 0.326703, 0.777604, 0.31179, 0.779234, 0.313116, 0.777789, 0.343138, 0.779362, 0.34183, 0.782513, 0.349783, 0.22859, 0.603261, 0.227937, 0.586855, 0.226364, 0.588208, 0.777163, 0.326703, 0.778811, 0.326831, 0.779362, 0.34183, 0.22859, 0.603261, 0.22694, 0.603132, 0.22649, 0.616845, 0.228119, 0.618174, 0.22649, 0.616845, 0.221097, 0.624668, 0.777604, 0.31179, 0.783469, 0.303188, 0.784636, 0.305286, 0.793663, 0.79143, 0.636627, 0.790421, 0.632164, 0.777615, 0.477594, 0.450198, 0.500714, 0.452112, 0.500714, 0.491249, 0.500714, 0.452112, 0.515205, 0.460382, 0.515205, 0.482978};
+
+       // Draw the Plane
+
+       // activate and specify pointer to vertex array
+       glEnableClientState(GL_VERTEX_ARRAY);
+       glVertexPointer(3, GL_FLOAT, 0, j_35_draken_vertices);
+
+       // activate normal pointers
+       glEnableClientState(GL_NORMAL_ARRAY);
+       glNormalPointer(GL_FLOAT, 0, j_35_draken_normals);
+
+       // activate UV pointers
+       glEnableClientState(GL_TEXTURE_COORD_ARRAY);
+       glTexCoordPointer(2, GL_FLOAT, 0, j_35_draken_UVs);
+
+       // draw the Plane
+       glDrawArrays(GL_TRIANGLES, 0, 1986); //tris in blender times 3x
+
+       glDisableClientState(GL_VERTEX_ARRAY);                  // deactivate vertex arrays after drawing
+       glDisableClientState(GL_NORMAL_ARRAY);                  // deactivate normal arrays after drawing
+       glDisableClientState(GL_TEXTURE_COORD_ARRAY);           // deactivate texture arrays after drawing
+
+       // disable blending
+       //      glDisable (GL_BLEND);
+
+       // disable texture
+       glDisable(GL_TEXTURE_2D);
+
+       //------------------------------------------------------------------------------------------------------------------------------------------------------------------//
+
+       // draw texture_draken_1
+       glBindTexture( GL_TEXTURE_2D, texture_draken_1 );
+       glEnable(GL_TEXTURE_2D);
+
+       // enable blending
+       glEnable(GL_BLEND);
+
+       // set vertices for Draken plane
+       static GLfloat j_35_draken_cockpit_vertices[] = {4.850295, 2.182007, 0.0, 5.550623, 2.008198, 0.155333, 5.573764, 2.07111, 1e-06, 4.753134, 1.927778, 0.269044, 5.403206, 1.552414, 0.295351, 5.487403, 1.836319, 0.269044, 4.824261, 2.113887, -0.155332, 5.487403, 1.83632, -0.269043, 4.753134, 1.927778, -0.269043, 4.824261, 2.113887, 0.155333, 5.487403, 1.836319, 0.269044, 5.550623, 2.008198, 0.155333, 4.753134, 1.927778, -0.269043, 5.403206, 1.552415, -0.29535, 4.658138, 1.624434, -0.29535, 4.850295, 2.182007, 0.0, 5.550623, 2.008198, -0.155332, 4.824261, 2.113887, -0.155332, 5.487403, 1.836319, 0.269044, 5.872341, 1.51747, 0.263632, 6.402801, 1.574834, 0.144031, 5.550623, 2.008198, -0.155332, 6.402801, 1.574834, -0.14403, 5.487403, 1.83632, -0.269043, 5.550623, 2.008198, 0.155333, 6.402801, 1.574834, 0.144031, 6.574064, 1.586836, 0.047557, 5.487403, 1.83632, -0.269043, 5.872341, 1.51747, -0.263631, 5.403206, 1.552415, -0.29535, 5.573764, 2.07111, 1e-06, 6.574064, 1.586836, -0.047555, 5.550623, 2.008198, -0.155332, 5.573764, 2.07111, 1e-06, 6.574064, 1.586836, 0.047557, 6.585735, 1.587296, 1e-06, 4.850295, 2.182007, 0.0, 4.824261, 2.113887, 0.155333, 5.550623, 2.008198, 0.155333, 4.753134, 1.927778, 0.269044, 4.658138, 1.624434, 0.295351, 5.403206, 1.552414, 0.295351, 4.824261, 2.113887, -0.155332, 5.550623, 2.008198, -0.155332, 5.487403, 1.83632, -0.269043, 4.824261, 2.113887, 0.155333, 4.753134, 1.927778, 0.269044, 5.487403, 1.836319, 0.269044, 4.753134, 1.927778, -0.269043, 5.487403, 1.83632, -0.269043, 5.403206, 1.552415, -0.29535, 4.850295, 2.182007, 0.0, 5.573764, 2.07111, 1e-06, 5.550623, 2.008198, -0.155332, 5.487403, 1.836319, 0.269044, 5.403206, 1.552414, 0.295351, 5.872341, 1.51747, 0.263632, 5.550623, 2.008198, -0.155332, 6.574064, 1.586836, -0.047555, 6.402801, 1.574834, -0.14403, 5.550623, 2.008198, 0.155333, 5.487403, 1.836319, 0.269044, 6.402801, 1.574834, 0.144031, 5.487403, 1.83632, -0.269043, 6.402801, 1.574834, -0.14403, 5.872341, 1.51747, -0.263631, 5.573764, 2.07111, 1e-06, 6.585735, 1.587296, 1e-06, 6.574064, 1.586836, -0.047555, 5.573764, 2.07111, 1e-06, 5.550623, 2.008198, 0.155333, 6.574064, 1.586836, 0.047557};
+
+       // set normals for Draken plane
+       static GLfloat j_35_draken_cockpit_normals[] = {0.145024, 0.98941, 0.0, 0.226691, 0.730888, 0.643696, 0.290262, 0.956938, 0.0, 0.033143, 0.274575, 0.960967, 0.037355, 0.080355, 0.996063, 0.111576, 0.315012, 0.942473, 0.099551, 0.71865, -0.688192, 0.111576, 0.315012, -0.942473, 0.033143, 0.274575, -0.960967, 0.099551, 0.71865, 0.688192, 0.111576, 0.315012, 0.942473, 0.226691, 0.730888, 0.643696, 0.033143, 0.274575, -0.960967, 0.037355, 0.080355, -0.996063, 0.008087, 0.083865, -0.996429, 0.145024, 0.98941, 0.0, 0.226691, 0.730888, -0.643696, 0.099551, 0.71865, -0.688192, 0.111576, 0.315012, 0.942473, 0.167699, 0.186041, 0.968108, 0.318735, 0.589496, 0.74218, 0.226691, 0.730888, -0.643696, 0.318735, 0.589496, -0.74218, 0.111576, 0.315012, -0.942473, 0.226691, 0.730888, 0.643696, 0.318735, 0.589496, 0.74218, 0.419446, 0.864132, 0.278024, 0.111576, 0.315012, -0.942473, 0.167699, 0.186041, -0.968108, 0.037355, 0.080355, -0.996063, 0.290262, 0.956938, 0.0, 0.419446, 0.864132, -0.278024, 0.226691, 0.730888, -0.643696, 0.290262, 0.956938, 0.0, 0.419446, 0.864132, 0.278024, 0.431318, 0.902188, 0.0, 0.145024, 0.98941, 0.0, 0.099551, 0.71865, 0.688192, 0.226691, 0.730888, 0.643696, 0.033143, 0.274575, 0.960967, 0.008087, 0.083865, 0.996429, 0.037355, 0.080355, 0.996063, 0.099551, 0.71865, -0.688192, 0.226691, 0.730888, -0.643696, 0.111576, 0.315012, -0.942473, 0.099551, 0.71865, 0.688192, 0.033143, 0.274575, 0.960967, 0.111576, 0.315012, 0.942473, 0.033143, 0.274575, -0.960967, 0.111576, 0.315012, -0.942473, 0.037355, 0.080355, -0.996063, 0.145024, 0.98941, 0.0, 0.290262, 0.956938, 0.0, 0.226691, 0.730888, -0.643696, 0.111576, 0.315012, 0.942473, 0.037355, 0.080355, 0.996063, 0.167699, 0.186041, 0.968108, 0.226691, 0.730888, -0.643696, 0.419446, 0.864132, -0.278024, 0.318735, 0.589496, -0.74218, 0.226691, 0.730888, 0.643696, 0.111576, 0.315012, 0.942473, 0.318735, 0.589496, 0.74218, 0.111576, 0.315012, -0.942473, 0.318735, 0.589496, -0.74218, 0.167699, 0.186041, -0.968108, 0.290262, 0.956938, 0.0, 0.431318, 0.902188, 0.0, 0.419446, 0.864132, -0.278024, 0.290262, 0.956938, 0.0, 0.226691, 0.730888, 0.643696, 0.419446, 0.864132, 0.278024};
+
+       // set UVs for Draken plane
+       static GLfloat j_35_draken_cockpit_UVs[] = {0.85791, 0.885171, 0.905935, 0.907037, 0.906473, 0.885145, 0.851612, 0.937798, 0.905036, 0.977518, 0.905028, 0.935616, 0.856116, 0.907478, 0.905058, 0.935561, 0.851701, 0.937774, 0.856044, 0.907516, 0.905028, 0.935616, 0.905935, 0.907037, 0.851701, 0.937774, 0.905096, 0.977436, 0.845876, 0.983275, 0.85791, 0.885171, 0.905964, 0.906967, 0.856116, 0.907478, 0.905028, 0.935616, 0.940183, 0.953976, 0.975148, 0.910346, 0.905964, 0.906967, 0.975209, 0.910055, 0.905058, 0.935561, 0.905935, 0.907037, 0.975148, 0.910346, 0.986614, 0.891973, 0.905058, 0.935561, 0.940249, 0.953813, 0.905096, 0.977436, 0.906473, 0.885145, 0.986632, 0.891855, 0.905964, 0.906967, 0.906473, 0.885145, 0.986614, 0.891973, 0.987599, 0.885103, 0.85791, 0.885171, 0.856044, 0.907516, 0.905935, 0.907037, 0.851612, 0.937798, 0.845827, 0.983279, 0.905036, 0.977518, 0.856116, 0.907478, 0.905964, 0.906967, 0.905058, 0.935561, 0.856044, 0.907516, 0.851612, 0.937798, 0.905028, 0.935616, 0.851701, 0.937774, 0.905058, 0.935561, 0.905096, 0.977436, 0.85791, 0.885171, 0.906473, 0.885145, 0.905964, 0.906967, 0.905028, 0.935616, 0.905036, 0.977518, 0.940183, 0.953976, 0.905964, 0.906967, 0.986632, 0.891855, 0.975209, 0.910055, 0.905935, 0.907037, 0.905028, 0.935616, 0.975148, 0.910346, 0.905058, 0.935561, 0.975209, 0.910055, 0.940249, 0.953813, 0.906473, 0.885145, 0.987599, 0.885103, 0.986632, 0.891855, 0.906473, 0.885145, 0.905935, 0.907037, 0.986614, 0.891973};
+
+       // Draw the Planes cockpit
+
+       // activate and specify pointer to vertex array
+       glEnableClientState(GL_VERTEX_ARRAY);
+       glVertexPointer(3, GL_FLOAT, 0, j_35_draken_cockpit_vertices);
+
+       // activate normal pointers
+       glEnableClientState(GL_NORMAL_ARRAY);
+       glNormalPointer(GL_FLOAT, 0, j_35_draken_cockpit_normals);
+
+       // activate UV pointers
+       glEnableClientState(GL_TEXTURE_COORD_ARRAY);
+       glTexCoordPointer(2, GL_FLOAT, 0, j_35_draken_cockpit_UVs);
+
+       // draw the Plane
+       glDrawArrays(GL_TRIANGLES, 0, 72); //tris in blender times 3x
+
+       glDisableClientState(GL_VERTEX_ARRAY);                  // deactivate vertex arrays after drawing
+       glDisableClientState(GL_NORMAL_ARRAY);                  // deactivate normal arrays after drawing
+       glDisableClientState(GL_TEXTURE_COORD_ARRAY);           // deactivate texture arrays after drawing
+
+       // disable blending
+       glDisable (GL_BLEND);
+
+       // disable texture
+       glDisable(GL_TEXTURE_2D);
+
+       //------------------------------------------------------------------------------------------------------------------------------------------------------------------//
+       if (draken_wheels == 1)
+       {
+               // draw wheel texture_draken_2
+               glBindTexture( GL_TEXTURE_2D, texture_draken_2 );
+               glEnable(GL_TEXTURE_2D);
+
+               // set vertices for Draken plane
+               static GLfloat j_35_draken_wheels_vertices[] = {-3.567486, 0.218378, 0.019347, -3.867019, 0.512203, 0.019347, -3.891453, 0.482197, 0.019347, -3.867019, 0.512203, 0.019347, -3.543051, 0.248384, -0.019349, -3.867019, 0.512203, -0.019349, -3.867019, 0.512203, -0.019349, -3.567486, 0.218378, -0.019349, -3.891453, 0.482197, -0.019349, -3.567486, 0.218378, -0.019349, -3.891453, 0.482197, 0.019347, -3.891453, 0.482197, -0.019349, -3.691544, 0.053775, 0.027179, -3.307027, 0.5005, 0.027179, -3.729297, 0.092885, 0.027179, -3.729297, 0.092885, 0.027179, -3.307027, 0.5005, -0.02718, -3.729297, 0.092885, -0.02718, -3.307027, 0.5005, -0.02718, -3.691544, 0.053775, -0.02718, -3.729297, 0.092885, -0.02718, -3.269273, 0.46139, -0.02718, -3.691544, 0.053775, 0.027179, -3.691544, 0.053775, -0.02718, -3.729297, 0.092885, 0.027179, -3.691544, 0.053775, -0.02718, -3.691544, 0.053775, 0.027179, -3.764996, 0.188438, 0.065709, -3.704729, 0.196834, 0.091048, -3.70519, 0.20732, 0.065709, -3.704729, 0.196834, 0.091048, -3.74573, 0.158223, 0.101544, -3.703614, 0.171519, 0.101544, -3.703614, 0.171519, 0.101544, -3.732108, 0.136857, 0.091048, -3.702499, 0.146205, 0.091048, -3.732108, 0.136857, 0.04037, -3.703614, 0.171519, 0.029874, -3.702499, 0.146205, 0.04037, -3.74573, 0.158223, 0.029874, -3.704729, 0.196834, 0.04037, -3.703614, 0.171519, 0.029874, -3.704729, 0.196834, 0.04037, -3.764996, 0.188438, 0.065709, -3.70519, 0.20732, 0.065709, -3.807348, 0.142184, 0.065709, -3.759354, 0.179588, 0.091048, -3.764996, 0.188438, 0.065709, -3.759354, 0.179588, 0.091048, -3.775556, 0.125649, 0.101544, -3.74573, 0.158223, 0.101544, -3.74573, 0.158223, 0.101544, -3.753076, 0.113957, 0.091048, -3.732108, 0.136857, 0.091048, -3.753076, 0.113957, 0.04037, -3.74573, 0.158223, 0.029874, -3.732108, 0.136857, 0.04037, -3.775556, 0.125649, 0.029874, -3.759354, 0.179588, 0.04037, -3.74573, 0.158223, 0.029874, -3.759354, 0.179588, 0.04037, -3.807348, 0.142184, 0.065709, -3.764996, 0.188438, 0.065709, -3.820899, 0.08095, 0.065709, -3.798037, 0.137341, 0.091048, -3.807348, 0.142184, 0.065709, -3.810414, 0.081412, 0.091048, -3.775556, 0.125649, 0.101544, -3.798037, 0.137341, 0.091048, -3.785099, 0.082527, 0.101544, -3.753076, 0.113957, 0.091048, -3.775556, 0.125649, 0.101544, -3.753076, 0.113957, 0.04037, -3.785099, 0.082527, 0.029874, -3.775556, 0.125649, 0.029874, -3.775556, 0.125649, 0.029874, -3.810414, 0.081412, 0.04037, -3.798037, 0.137341, 0.04037, -3.798037, 0.137341, 0.04037, -3.820899, 0.08095, 0.065709, -3.807348, 0.142184, 0.065709, -3.820899, 0.08095, 0.065709, -3.793169, 0.026787, 0.091048, -3.810414, 0.081412, 0.091048, -3.793169, 0.026787, 0.091048, -3.785099, 0.082527, 0.101544, -3.810414, 0.081412, 0.091048, -3.785099, 0.082527, 0.101544, -3.750437, 0.054033, 0.091048, -3.759784, 0.083641, 0.091048, -3.750437, 0.054033, 0.04037, -3.785099, 0.082527, 0.029874, -3.759784, 0.083641, 0.04037, -3.785099, 0.082527, 0.029874, -3.793169, 0.026787, 0.04037, -3.810414, 0.081412, 0.04037, -3.793169, 0.026787, 0.04037, -3.820899, 0.08095, 0.065709, -3.810414, 0.081412, 0.04037, -3.802018, 0.021144, 0.065709, -3.750921, -0.011896, 0.091048, -3.793169, 0.026787, 0.091048, -3.750921, -0.011896, 0.091048, -3.771802, 0.04041, 0.101544, -3.793169, 0.026787, 0.091048, -3.739229, 0.010584, 0.101544, -3.750437, 0.054033, 0.091048, -3.771802, 0.04041, 0.101544, -3.750437, 0.054033, 0.04037, -3.739229, 0.010584, 0.029874, -3.771802, 0.04041, 0.029874, -3.771802, 0.04041, 0.029874, -3.750921, -0.011896, 0.04037, -3.793169, 0.026787, 0.04037, -3.750921, -0.011896, 0.04037, -3.802018, 0.021144, 0.065709, -3.793169, 0.026787, 0.04037, -3.69453, -0.034759, 0.065709, -3.750921, -0.011896, 0.091048, -3.755764, -0.021208, 0.065709, -3.750921, -0.011896, 0.091048, -3.696107, 0.001041, 0.101544, -3.739229, 0.010584, 0.101544, -3.696107, 0.001041, 0.101544, -3.727537, 0.033065, 0.091048, -3.739229, 0.010584, 0.101544, -3.727537, 0.033065, 0.04037, -3.696107, 0.001041, 0.029874, -3.739229, 0.010584, 0.029874, -3.696107, 0.001041, 0.029874, -3.750921, -0.011896, 0.04037, -3.739229, 0.010584, 0.029874, -3.750921, -0.011896, 0.04037, -3.69453, -0.034759, 0.065709, -3.755764, -0.021208, 0.065709, -3.634725, -0.015878, 0.065709, -3.694992, -0.024273, 0.091048, -3.69453, -0.034759, 0.065709, -3.694992, -0.024273, 0.091048, -3.65399, 0.014338, 0.101544, -3.696107, 0.001041, 0.101544, -3.65399, 0.014338, 0.101544, -3.697221, 0.026356, 0.091048, -3.696107, 0.001041, 0.101544, -3.697221, 0.026356, 0.04037, -3.65399, 0.014338, 0.029874, -3.696107, 0.001041, 0.029874, -3.65399, 0.014338, 0.029874, -3.694992, -0.024273, 0.04037, -3.696107, 0.001041, 0.029874, -3.694992, -0.024273, 0.04037, -3.634725, -0.015878, 0.065709, -3.69453, -0.034759, 0.065709, -3.592372, 0.030377, 0.065709, -3.640367, -0.007028, 0.091048, -3.634725, -0.015878, 0.065709, -3.640367, -0.007028, 0.091048, -3.624164, 0.046912, 0.101544, -3.65399, 0.014338, 0.101544, -3.65399, 0.014338, 0.101544, -3.646645, 0.058604, 0.091048, -3.667613, 0.035704, 0.091048, -3.646645, 0.058604, 0.04037, -3.65399, 0.014338, 0.029874, -3.667613, 0.035704, 0.04037, -3.624164, 0.046912, 0.029874, -3.640367, -0.007028, 0.04037, -3.65399, 0.014338, 0.029874, -3.640367, -0.007028, 0.04037, -3.592372, 0.030377, 0.065709, -3.634725, -0.015878, 0.065709, -3.578821, 0.091611, 0.065709, -3.601684, 0.03522, 0.091048, -3.592372, 0.030377, 0.065709, -3.589307, 0.091149, 0.091048, -3.624164, 0.046912, 0.101544, -3.601684, 0.03522, 0.091048, -3.614621, 0.090034, 0.101544, -3.646645, 0.058604, 0.091048, -3.624164, 0.046912, 0.101544, -3.646645, 0.058604, 0.04037, -3.614621, 0.090034, 0.029874, -3.624164, 0.046912, 0.029874, -3.624164, 0.046912, 0.029874, -3.589307, 0.091149, 0.04037, -3.601684, 0.03522, 0.04037, -3.601684, 0.03522, 0.04037, -3.578821, 0.091611, 0.065709, -3.592372, 0.030377, 0.065709, -3.578821, 0.091611, 0.065709, -3.606552, 0.145773, 0.091048, -3.589307, 0.091149, 0.091048, -3.589307, 0.091149, 0.091048, -3.627918, 0.132151, 0.101544, -3.614621, 0.090034, 0.101544, -3.614621, 0.090034, 0.101544, -3.649284, 0.118528, 0.091048, -3.639936, 0.088919, 0.091048, -3.649284, 0.118528, 0.04037, -3.614621, 0.090034, 0.029874, -3.639936, 0.088919, 0.04037, -3.627918, 0.132151, 0.029874, -3.589307, 0.091149, 0.04037, -3.614621, 0.090034, 0.029874, -3.606552, 0.145773, 0.04037, -3.578821, 0.091611, 0.065709, -3.589307, 0.091149, 0.04037, -3.643957, 0.193768, 0.065709, -3.606552, 0.145773, 0.091048, -3.597702, 0.151416, 0.065709, -3.6488, 0.184457, 0.091048, -3.627918, 0.132151, 0.101544, -3.606552, 0.145773, 0.091048, -3.660491, 0.161976, 0.101544, -3.649284, 0.118528, 0.091048, -3.627918, 0.132151, 0.101544, -3.649284, 0.118528, 0.04037, -3.660491, 0.161976, 0.029874, -3.627918, 0.132151, 0.029874, -3.627918, 0.132151, 0.029874, -3.6488, 0.184457, 0.04037, -3.606552, 0.145773, 0.04037, -3.606552, 0.145773, 0.04037, -3.643957, 0.193768, 0.065709, -3.597702, 0.151416, 0.065709, -3.70519, 0.20732, 0.065709, -3.6488, 0.184457, 0.091048, -3.643957, 0.193768, 0.065709, -3.6488, 0.184457, 0.091048, -3.703614, 0.171519, 0.101544, -3.660491, 0.161976, 0.101544, -3.703614, 0.171519, 0.101544, -3.672184, 0.139496, 0.091048, -3.660491, 0.161976, 0.101544, -3.672184, 0.139496, 0.04037, -3.703614, 0.171519, 0.029874, -3.660491, 0.161976, 0.029874, -3.703614, 0.171519, 0.029874, -3.6488, 0.184457, 0.04037, -3.660491, 0.161976, 0.029874, -3.6488, 0.184457, 0.04037, -3.70519, 0.20732, 0.065709, -3.643957, 0.193768, 0.065709, -3.750437, 0.054033, 0.04037, -3.759784, 0.083641, 0.04037, -3.69986, 0.08628, 0.04037, -3.732108, 0.136857, 0.04037, -3.702499, 0.146205, 0.04037, -3.69986, 0.08628, 0.04037, -3.702499, 0.146205, 0.04037, -3.672184, 0.139496, 0.04037, -3.69986, 0.08628, 0.04037, -3.753076, 0.113957, 0.04037, -3.732108, 0.136857, 0.04037, -3.69986, 0.08628, 0.04037, -3.667613, 0.035704, 0.04037, -3.697221, 0.026356, 0.04037, -3.69986, 0.08628, 0.04037, -3.646645, 0.058604, 0.04037, -3.667613, 0.035704, 0.04037, -3.69986, 0.08628, 0.04037, -3.649284, 0.118528, 0.04037, -3.639936, 0.088919, 0.04037, -3.69986, 0.08628, 0.04037, -3.697221, 0.026356, 0.04037, -3.727537, 0.033065, 0.04037, -3.69986, 0.08628, 0.04037, -3.727537, 0.033065, 0.04037, -3.750437, 0.054033, 0.04037, -3.69986, 0.08628, 0.04037, -3.639936, 0.088919, 0.04037, -3.646645, 0.058604, 0.04037, -3.69986, 0.08628, 0.04037, -3.759784, 0.083641, 0.04037, -3.753076, 0.113957, 0.04037, -3.69986, 0.08628, 0.04037, -3.672184, 0.139496, 0.04037, -3.649284, 0.118528, 0.04037, -3.69986, 0.08628, 0.04037, -3.759784, 0.083641, 0.091048, -3.750437, 0.054033, 0.091048, -3.69986, 0.08628, 0.091048, -3.646645, 0.058604, 0.091048, -3.639936, 0.088919, 0.091048, -3.69986, 0.08628, 0.091048, -3.750437, 0.054033, 0.091048, -3.727537, 0.033065, 0.091048, -3.69986, 0.08628, 0.091048, -3.727537, 0.033065, 0.091048, -3.697221, 0.026356, 0.091048, -3.69986, 0.08628, 0.091048, -3.649284, 0.118528, 0.091048, -3.672184, 0.139496, 0.091048, -3.69986, 0.08628, 0.091048, -3.639936, 0.088919, 0.091048, -3.649284, 0.118528, 0.091048, -3.69986, 0.08628, 0.091048, -3.697221, 0.026356, 0.091048, -3.667613, 0.035704, 0.091048, -3.69986, 0.08628, 0.091048, -3.732108, 0.136857, 0.091048, -3.753076, 0.113957, 0.091048, -3.69986, 0.08628, 0.091048, -3.667613, 0.035704, 0.091048, -3.646645, 0.058604, 0.091048, -3.69986, 0.08628, 0.091048, -3.672184, 0.139496, 0.091048, -3.702499, 0.146205, 0.091048, -3.69986, 0.08628, 0.091048, -3.702499, 0.146205, 0.091048, -3.732108, 0.136857, 0.091048, -3.69986, 0.08628, 0.091048, -3.753076, 0.113957, 0.091048, -3.759784, 0.083641, 0.091048, -3.69986, 0.08628, 0.091048, -3.704729, 0.196834, -0.09105, -3.764996, 0.188438, -0.065711, -3.70519, 0.20732, -0.065711, -3.704729, 0.196834, -0.09105, -3.74573, 0.158223, -0.101546, -3.759354, 0.179588, -0.09105, -3.703614, 0.171519, -0.101546, -3.732108, 0.136857, -0.09105, -3.74573, 0.158223, -0.101546, -3.703614, 0.171519, -0.029876, -3.732108, 0.136857, -0.040372, -3.702499, 0.146205, -0.040372, -3.704729, 0.196834, -0.040372, -3.74573, 0.158223, -0.029876, -3.703614, 0.171519, -0.029876, -3.704729, 0.196834, -0.040372, -3.764996, 0.188438, -0.065711, -3.759354, 0.179588, -0.040372, -3.759354, 0.179588, -0.09105, -3.807348, 0.142184, -0.065711, -3.764996, 0.188438, -0.065711, -3.759354, 0.179588, -0.09105, -3.775556, 0.125649, -0.101546, -3.798037, 0.137341, -0.09105, -3.74573, 0.158223, -0.101546, -3.753076, 0.113957, -0.09105, -3.775556, 0.125649, -0.101546, -3.74573, 0.158223, -0.029876, -3.753076, 0.113957, -0.040372, -3.732108, 0.136857, -0.040372, -3.759354, 0.179588, -0.040372, -3.775556, 0.125649, -0.029876, -3.74573, 0.158223, -0.029876, -3.759354, 0.179588, -0.040372, -3.807348, 0.142184, -0.065711, -3.798037, 0.137341, -0.040372, -3.798037, 0.137341, -0.09105, -3.820899, 0.08095, -0.065711, -3.807348, 0.142184, -0.065711, -3.775556, 0.125649, -0.101546, -3.810414, 0.081412, -0.09105, -3.798037, 0.137341, -0.09105, -3.753076, 0.113957, -0.09105, -3.785099, 0.082527, -0.101546, -3.775556, 0.125649, -0.101546, -3.753076, 0.113957, -0.040372, -3.785099, 0.082527, -0.029876, -3.759784, 0.083641, -0.040372, -3.775556, 0.125649, -0.029876, -3.810414, 0.081412, -0.040372, -3.785099, 0.082527, -0.029876, -3.798037, 0.137341, -0.040372, -3.820899, 0.08095, -0.065711, -3.810414, 0.081412, -0.040372, -3.820899, 0.08095, -0.065711, -3.793169, 0.026787, -0.09105, -3.802018, 0.021144, -0.065711, -3.785099, 0.082527, -0.101546, -3.793169, 0.026787, -0.09105, -3.810414, 0.081412, -0.09105, -3.785099, 0.082527, -0.101546, -3.750437, 0.054033, -0.09105, -3.771802, 0.04041, -0.101546, -3.785099, 0.082527, -0.029876, -3.750437, 0.054033, -0.040372, -3.759784, 0.083641, -0.040372, -3.785099, 0.082527, -0.029876, -3.793169, 0.026787, -0.040372, -3.771802, 0.04041, -0.029876, -3.820899, 0.08095, -0.065711, -3.793169, 0.026787, -0.040372, -3.810414, 0.081412, -0.040372, -3.802018, 0.021144, -0.065711, -3.750921, -0.011896, -0.09105, -3.755764, -0.021208, -0.065711, -3.771802, 0.04041, -0.101546, -3.750921, -0.011896, -0.09105, -3.793169, 0.026787, -0.09105, -3.750437, 0.054033, -0.09105, -3.739229, 0.010584, -0.101546, -3.771802, 0.04041, -0.101546, -3.750437, 0.054033, -0.040372, -3.739229, 0.010584, -0.029876, -3.727537, 0.033065, -0.040372, -3.771802, 0.04041, -0.029876, -3.750921, -0.011896, -0.040372, -3.739229, 0.010584, -0.029876, -3.802018, 0.021144, -0.065711, -3.750921, -0.011896, -0.040372, -3.793169, 0.026787, -0.040372, -3.750921, -0.011896, -0.09105, -3.69453, -0.034759, -0.065711, -3.755764, -0.021208, -0.065711, -3.750921, -0.011896, -0.09105, -3.696107, 0.001041, -0.101546, -3.694992, -0.024273, -0.09105, -3.727537, 0.033065, -0.09105, -3.696107, 0.001041, -0.101546, -3.739229, 0.010584, -0.101546, -3.727537, 0.033065, -0.040372, -3.696107, 0.001041, -0.029876, -3.697221, 0.026356, -0.040372, -3.750921, -0.011896, -0.040372, -3.696107, 0.001041, -0.029876, -3.739229, 0.010584, -0.029876, -3.750921, -0.011896, -0.040372, -3.69453, -0.034759, -0.065711, -3.694992, -0.024273, -0.040372, -3.694992, -0.024273, -0.09105, -3.634725, -0.015878, -0.065711, -3.69453, -0.034759, -0.065711, -3.694992, -0.024273, -0.09105, -3.65399, 0.014338, -0.101546, -3.640367, -0.007028, -0.09105, -3.697221, 0.026356, -0.09105, -3.65399, 0.014338, -0.101546, -3.696107, 0.001041, -0.101546, -3.697221, 0.026356, -0.040372, -3.65399, 0.014338, -0.029876, -3.667613, 0.035704, -0.040372, -3.694992, -0.024273, -0.040372, -3.65399, 0.014338, -0.029876, -3.696107, 0.001041, -0.029876, -3.694992, -0.024273, -0.040372, -3.634725, -0.015878, -0.065711, -3.640367, -0.007028, -0.040372, -3.640367, -0.007028, -0.09105, -3.592372, 0.030377, -0.065711, -3.634725, -0.015878, -0.065711, -3.640367, -0.007028, -0.09105, -3.624164, 0.046912, -0.101546, -3.601684, 0.03522, -0.09105, -3.65399, 0.014338, -0.101546, -3.646645, 0.058604, -0.09105, -3.624164, 0.046912, -0.101546, -3.65399, 0.014338, -0.029876, -3.646645, 0.058604, -0.040372, -3.667613, 0.035704, -0.040372, -3.640367, -0.007028, -0.040372, -3.624164, 0.046912, -0.029876, -3.65399, 0.014338, -0.029876, -3.640367, -0.007028, -0.040372, -3.592372, 0.030377, -0.065711, -3.601684, 0.03522, -0.040372, -3.601684, 0.03522, -0.09105, -3.578821, 0.091611, -0.065711, -3.592372, 0.030377, -0.065711, -3.624164, 0.046912, -0.101546, -3.589307, 0.091149, -0.09105, -3.601684, 0.03522, -0.09105, -3.646645, 0.058604, -0.09105, -3.614621, 0.090034, -0.101546, -3.624164, 0.046912, -0.101546, -3.646645, 0.058604, -0.040372, -3.614621, 0.090034, -0.029876, -3.639936, 0.088919, -0.040372, -3.624164, 0.046912, -0.029876, -3.589307, 0.091149, -0.040372, -3.614621, 0.090034, -0.029876, -3.601684, 0.03522, -0.040372, -3.578821, 0.091611, -0.065711, -3.589307, 0.091149, -0.040372, -3.578821, 0.091611, -0.065711, -3.606552, 0.145773, -0.09105, -3.597702, 0.151416, -0.065711, -3.589307, 0.091149, -0.09105, -3.627918, 0.132151, -0.101546, -3.606552, 0.145773, -0.09105, -3.614621, 0.090034, -0.101546, -3.649284, 0.118528, -0.09105, -3.627918, 0.132151, -0.101546, -3.614621, 0.090034, -0.029876, -3.649284, 0.118528, -0.040372, -3.639936, 0.088919, -0.040372, -3.589307, 0.091149, -0.040372, -3.627918, 0.132151, -0.029876, -3.614621, 0.090034, -0.029876, -3.578821, 0.091611, -0.065711, -3.606552, 0.145773, -0.040372, -3.589307, 0.091149, -0.040372, -3.606552, 0.145773, -0.09105, -3.643957, 0.193768, -0.065711, -3.597702, 0.151416, -0.065711, -3.627918, 0.132151, -0.101546, -3.6488, 0.184457, -0.09105, -3.606552, 0.145773, -0.09105, -3.649284, 0.118528, -0.09105, -3.660491, 0.161976, -0.101546, -3.627918, 0.132151, -0.101546, -3.649284, 0.118528, -0.040372, -3.660491, 0.161976, -0.029876, -3.672184, 0.139496, -0.040372, -3.627918, 0.132151, -0.029876, -3.6488, 0.184457, -0.040372, -3.660491, 0.161976, -0.029876, -3.606552, 0.145773, -0.040372, -3.643957, 0.193768, -0.065711, -3.6488, 0.184457, -0.040372, -3.6488, 0.184457, -0.09105, -3.70519, 0.20732, -0.065711, -3.643957, 0.193768, -0.065711, -3.6488, 0.184457, -0.09105, -3.703614, 0.171519, -0.101546, -3.704729, 0.196834, -0.09105, -3.672184, 0.139496, -0.09105, -3.703614, 0.171519, -0.101546, -3.660491, 0.161976, -0.101546, -3.672184, 0.139496, -0.040372, -3.703614, 0.171519, -0.029876, -3.702499, 0.146205, -0.040372, -3.6488, 0.184457, -0.040372, -3.703614, 0.171519, -0.029876, -3.660491, 0.161976, -0.029876, -3.6488, 0.184457, -0.040372, -3.70519, 0.20732, -0.065711, -3.704729, 0.196834, -0.040372, -3.750437, 0.054033, -0.040372, -3.69986, 0.08628, -0.040372, -3.759784, 0.083641, -0.040372, -3.732108, 0.136857, -0.040372, -3.69986, 0.08628, -0.040372, -3.702499, 0.146205, -0.040372, -3.702499, 0.146205, -0.040372, -3.69986, 0.08628, -0.040372, -3.672184, 0.139496, -0.040372, -3.753076, 0.113957, -0.040372, -3.69986, 0.08628, -0.040372, -3.732108, 0.136857, -0.040372, -3.667613, 0.035704, -0.040372, -3.69986, 0.08628, -0.040372, -3.697221, 0.026356, -0.040372, -3.646645, 0.058604, -0.040372, -3.69986, 0.08628, -0.040372, -3.667613, 0.035704, -0.040372, -3.649284, 0.118528, -0.040372, -3.69986, 0.08628, -0.040372, -3.639936, 0.088919, -0.040372, -3.697221, 0.026356, -0.040372, -3.69986, 0.08628, -0.040372, -3.727537, 0.033065, -0.040372, -3.727537, 0.033065, -0.040372, -3.69986, 0.08628, -0.040372, -3.750437, 0.054033, -0.040372, -3.639936, 0.088919, -0.040372, -3.69986, 0.08628, -0.040372, -3.646645, 0.058604, -0.040372, -3.759784, 0.083641, -0.040372, -3.69986, 0.08628, -0.040372, -3.753076, 0.113957, -0.040372, -3.672184, 0.139496, -0.040372, -3.69986, 0.08628, -0.040372, -3.649284, 0.118528, -0.040372, -3.759784, 0.083641, -0.09105, -3.69986, 0.08628, -0.09105, -3.750437, 0.054033, -0.09105, -3.646645, 0.058604, -0.09105, -3.69986, 0.08628, -0.09105, -3.639936, 0.088919, -0.09105, -3.750437, 0.054033, -0.09105, -3.69986, 0.08628, -0.09105, -3.727537, 0.033065, -0.09105, -3.727537, 0.033065, -0.09105, -3.69986, 0.08628, -0.09105, -3.697221, 0.026356, -0.09105, -3.649284, 0.118528, -0.09105, -3.69986, 0.08628, -0.09105, -3.672184, 0.139496, -0.09105, -3.639936, 0.088919, -0.09105, -3.69986, 0.08628, -0.09105, -3.649284, 0.118528, -0.09105, -3.697221, 0.026356, -0.09105, -3.69986, 0.08628, -0.09105, -3.667613, 0.035704, -0.09105, -3.732108, 0.136857, -0.09105, -3.69986, 0.08628, -0.09105, -3.753076, 0.113957, -0.09105, -3.667613, 0.035704, -0.09105, -3.69986, 0.08628, -0.09105, -3.646645, 0.058604, -0.09105, -3.672184, 0.139496, -0.09105, -3.69986, 0.08628, -0.09105, -3.702499, 0.146205, -0.09105, -3.702499, 0.146205, -0.09105, -3.69986, 0.08628, -0.09105, -3.732108, 0.136857, -0.09105, -3.753076, 0.113957, -0.09105, -3.69986, 0.08628, -0.09105, -3.759784, 0.083641, -0.09105, -0.571639, 1.030217, 2.035907, -0.53915, 0.533742, 2.178195, -0.539338, 0.538018, 2.191738, 0.334247, 1.083601, 2.016752, 0.36636, 0.595678, 2.186127, 0.366548, 0.591403, 2.172583, -0.539338, 0.538018, 2.191738, 0.366548, 0.591403, 2.172583, 0.36636, 0.595678, 2.186127, 0.36636, 0.595678, 2.186127, -0.571639, 1.030217, 2.035907, -0.539339, 0.538018, 2.191738, -0.571451, 1.025941, 2.022364, 0.366548, 0.591403, 2.172583, -0.53915, 0.533742, 2.178195, 0.397072, 0.545514, 0.977476, -0.251248, 0.892001, 0.869066, -0.240298, 0.505407, 0.980956, -0.251011, 0.886631, 0.850487, 0.397308, 0.540144, 0.958898, -0.240061, 0.500037, 0.962378, -0.240061, 0.500037, 0.962378, 0.412808, 0.188178, 1.060837, -0.487847, 0.125158, 1.067588, 0.412571, 0.193549, 1.079415, -0.240298, 0.505407, 0.980956, -0.488083, 0.130528, 1.086167, -0.240298, 0.505407, 0.980956, -0.251011, 0.886631, 0.850487, -0.240061, 0.500037, 0.962378, 0.380824, 0.914456, 0.850487, 0.397072, 0.545514, 0.977476, 0.397308, 0.540144, 0.958898, -0.487847, 0.125158, 1.067588, 0.412571, 0.193549, 1.079415, -0.488083, 0.130528, 1.086167, 0.397308, 0.540144, 0.958898, 0.412571, 0.193549, 1.079415, 0.412808, 0.188178, 1.060837, -0.240298, 0.505407, 0.980956, -0.487847, 0.125158, 1.067588, -0.488083, 0.130528, 1.086167, -0.195417, 0.298096, 1.326789, -0.016059, 0.333584, 1.384197, -0.016973, 0.35434, 1.323824, -0.182442, 0.281141, 1.386962, -0.013535, 0.276259, 1.412196, -0.016059, 0.333584, 1.384197, -0.150799, 0.232993, 1.414477, -0.010878, 0.215944, 1.39142, -0.013535, 0.276259, 1.412196, -0.010561, 0.208728, 1.273666, -0.15035, 0.222789, 1.247947, -0.013085, 0.266054, 1.245667, -0.15035, 0.222789, 1.247947, -0.015741, 0.326368, 1.266443, -0.013085, 0.266054, 1.245667, -0.015741, 0.326368, 1.266443, -0.195417, 0.298096, 1.326789, -0.016973, 0.35434, 1.323824, -0.321794, 0.160335, 1.33489, -0.182442, 0.281141, 1.386962, -0.195417, 0.298096, 1.326789, -0.182442, 0.281141, 1.386962, -0.248012, 0.127024, 1.420708, -0.150799, 0.232993, 1.414477, -0.248012, 0.127024, 1.420708, -0.119025, 0.181857, 1.393217, -0.150799, 0.232993, 1.414477, -0.118707, 0.174641, 1.275463, -0.247563, 0.116819, 1.254179, -0.15035, 0.222789, 1.247947, -0.247563, 0.116819, 1.254179, -0.182124, 0.273925, 1.269207, -0.15035, 0.222789, 1.247947, -0.182124, 0.273925, 1.269207, -0.321794, 0.160335, 1.33489, -0.195417, 0.298096, 1.326789, -0.362241, -0.022028, 1.345956, -0.300277, 0.152692, 1.394515, -0.321794, 0.160335, 1.33489, -0.300277, 0.152692, 1.394515, -0.279125, -0.013255, 1.42922, -0.248012, 0.127024, 1.420708, -0.279125, -0.013255, 1.42922, -0.195616, 0.098367, 1.398126, -0.248012, 0.127024, 1.420708, -0.195298, 0.091151, 1.280372, -0.278676, -0.02346, 1.262691, -0.247563, 0.116819, 1.254179, -0.247563, 0.116819, 1.254179, -0.337672, -0.024561, 1.287078, -0.299959, 0.145476, 1.276761, -0.299959, 0.145476, 1.276761, -0.362241, -0.022028, 1.345956, -0.321794, 0.160335, 1.33489, -0.362241, -0.022028, 1.345956, -0.285476, -0.183408, 1.415151, -0.33799, -0.017345, 1.404833, -0.33799, -0.017345, 1.404833, -0.235801, -0.150256, 1.437733, -0.279125, -0.013255, 1.42922, -0.235801, -0.150256, 1.437733, -0.220129, -0.012155, 1.404833, -0.279125, -0.013255, 1.42922, -0.185678, -0.127309, 1.293785, -0.278676, -0.02346, 1.262691, -0.219811, -0.019371, 1.287078, -0.278676, -0.02346, 1.262691, -0.285158, -0.190624, 1.297396, -0.337672, -0.024561, 1.287078, -0.285158, -0.190624, 1.297396, -0.362241, -0.022028, 1.345956, -0.337672, -0.024561, 1.287078, -0.30592, -0.200129, 1.357021, -0.156806, -0.301002, 1.422704, -0.285476, -0.183408, 1.415151, -0.156806, -0.301002, 1.422704, -0.235801, -0.150256, 1.437733, -0.285476, -0.183408, 1.415151, -0.235801, -0.150256, 1.437733, -0.102362, -0.196527, 1.416449, -0.185995, -0.120093, 1.411539, -0.102044, -0.203743, 1.298695, -0.235352, -0.160461, 1.271203, -0.185678, -0.127309, 1.293785, -0.235352, -0.160461, 1.271203, -0.156488, -0.308218, 1.30495, -0.285158, -0.190624, 1.297396, -0.156488, -0.308218, 1.30495, -0.30592, -0.200129, 1.357021, -0.285158, -0.190624, 1.297396, -0.167923, -0.326247, 1.365122, 0.013543, -0.338616, 1.425468, -0.156806, -0.301002, 1.422704, 0.013543, -0.338616, 1.425468, -0.12965, -0.24727, 1.443964, -0.156806, -0.301002, 1.422704, 0.010887, -0.278302, 1.446245, -0.102362, -0.196527, 1.416449, -0.12965, -0.24727, 1.443964, 0.00868, -0.228192, 1.300492, -0.1292, -0.257475, 1.277434, -0.102044, -0.203743, 1.298695, -0.1292, -0.257475, 1.277434, 0.013861, -0.345832, 1.307714, -0.156488, -0.308218, 1.30495, 0.013861, -0.345832, 1.307714, -0.167923, -0.326247, 1.365122, -0.156488, -0.308218, 1.30495, 0.193219, -0.310343, 1.365122, 0.013543, -0.338616, 1.425468, 0.014775, -0.366588, 1.368087, 0.013543, -0.338616, 1.425468, 0.148152, -0.235037, 1.443964, 0.010887, -0.278302, 1.446245, 0.148152, -0.235037, 1.443964, 0.008363, -0.220976, 1.418246, 0.010887, -0.278302, 1.446245, 0.116827, -0.194105, 1.298695, 0.011336, -0.288507, 1.279715, 0.00868, -0.228192, 1.300492, 0.148601, -0.245241, 1.277434, 0.013861, -0.345832, 1.307714, 0.011336, -0.288507, 1.279715, 0.013861, -0.345832, 1.307714, 0.193219, -0.310343, 1.365122, 0.014775, -0.366588, 1.368087, 0.319596, -0.172583, 1.357022, 0.179926, -0.286173, 1.422704, 0.193219, -0.310343, 1.365122, 0.179926, -0.286173, 1.422704, 0.245365, -0.129067, 1.437733, 0.148152, -0.235037, 1.443964, 0.245365, -0.129067, 1.437733, 0.116509, -0.186889, 1.416449, 0.148152, -0.235037, 1.443964, 0.116827, -0.194105, 1.298695, 0.245814, -0.139272, 1.271203, 0.148601, -0.245241, 1.277434, 0.245814, -0.139272, 1.271203, 0.180244, -0.293389, 1.30495, 0.148601, -0.245241, 1.277434, 0.180244, -0.293389, 1.30495, 0.319596, -0.172583, 1.357022, 0.193219, -0.310343, 1.365122, 0.360043, 0.00978, 1.345956, 0.297761, -0.157724, 1.415151, 0.319596, -0.172583, 1.357022, 0.297761, -0.157724, 1.415151, 0.276477, 0.011212, 1.42922, 0.245365, -0.129067, 1.437733, 0.245365, -0.129067, 1.437733, 0.217613, 0.007122, 1.404833, 0.1931, -0.103399, 1.411539, 0.193418, -0.110615, 1.293785, 0.276927, 0.001007, 1.262691, 0.245814, -0.139272, 1.271203, 0.276927, 0.001007, 1.262691, 0.298079, -0.16494, 1.297397, 0.245814, -0.139272, 1.271203, 0.298079, -0.16494, 1.297397, 0.360043, 0.00978, 1.345956, 0.319596, -0.172583, 1.357022, 0.360043, 0.00978, 1.345956, 0.28296, 0.178376, 1.394515, 0.335474, 0.012313, 1.404833, 0.28296, 0.178376, 1.394515, 0.276477, 0.011212, 1.42922, 0.335474, 0.012313, 1.404833, 0.276477, 0.011212, 1.42922, 0.183479, 0.115061, 1.398126, 0.217613, 0.007122, 1.404833, 0.183797, 0.107845, 1.280372, 0.276927, 0.001007, 1.262691, 0.217931, -9.3e-05, 1.287079, 0.276927, 0.001007, 1.262691, 0.283278, 0.17116, 1.276761, 0.335792, 0.005097, 1.287079, 0.283278, 0.17116, 1.276761, 0.360043, 0.00978, 1.345956, 0.335792, 0.005097, 1.287079, 0.165725, 0.313999, 1.326789, 0.28296, 0.178376, 1.394515, 0.303722, 0.187881, 1.33489, 0.15429, 0.29597, 1.386962, 0.233154, 0.148213, 1.420708, 0.28296, 0.178376, 1.394515, 0.233154, 0.148213, 1.420708, 0.099846, 0.191495, 1.393217, 0.183479, 0.115061, 1.398126, 0.100164, 0.18428, 1.275463, 0.233603, 0.138009, 1.254179, 0.183797, 0.107845, 1.280372, 0.233603, 0.138009, 1.254179, 0.154608, 0.288754, 1.269207, 0.283278, 0.17116, 1.276761, 0.154608, 0.288754, 1.269207, 0.303722, 0.187881, 1.33489, 0.283278, 0.17116, 1.276761, -0.016973, 0.35434, 1.323824, 0.15429, 0.29597, 1.386962, 0.165725, 0.313999, 1.326789, 0.15429, 0.29597, 1.386962, -0.013535, 0.276259, 1.412196, 0.127002, 0.245227, 1.414477, 0.127002, 0.245227, 1.414477, -0.010878, 0.215944, 1.39142, 0.099846, 0.191495, 1.393217, -0.010561, 0.208728, 1.273666, 0.127452, 0.235022, 1.247947, 0.100164, 0.18428, 1.275463, -0.013085, 0.266054, 1.245667, 0.154608, 0.288754, 1.269207, 0.127452, 0.235022, 1.247947, -0.015741, 0.326368, 1.266443, 0.165725, 0.313999, 1.326789, 0.154608, 0.288754, 1.269207, -0.195298, 0.091151, 1.280372, -0.118707, 0.174641, 1.275463, -0.00094, -0.009732, 1.287078, 0.193418, -0.110615, 1.293785, 0.116827, -0.194105, 1.298695, -0.00094, -0.009732, 1.287078, -0.219811, -0.019371, 1.287078, -0.195298, 0.091151, 1.280372, -0.00094, -0.009732, 1.287078, -0.185678, -0.127309, 1.293785, -0.219811, -0.019371, 1.287078, -0.00094, -0.009732, 1.287078, 0.00868, -0.228192, 1.300492, -0.102044, -0.203743, 1.298695, -0.00094, -0.009732, 1.287078, -0.010561, 0.208728, 1.273666, 0.100164, 0.18428, 1.275463, -0.00094, -0.009732, 1.287078, 0.100164, 0.18428, 1.275463, 0.183797, 0.107845, 1.280372, -0.00094, -0.009732, 1.287078, -0.118707, 0.174641, 1.275463, -0.010561, 0.208728, 1.273666, -0.00094, -0.009732, 1.287078, 0.116827, -0.194105, 1.298695, 0.00868, -0.228192, 1.300492, -0.00094, -0.009732, 1.287078, 0.183797, 0.107845, 1.280372, 0.217931, -9.3e-05, 1.287079, -0.00094, -0.009732, 1.287078, -0.185995, -0.120093, 1.411539, -0.102362, -0.196527, 1.416449, -0.001258, -0.002516, 1.404833, -0.119025, 0.181857, 1.393217, -0.195616, 0.098367, 1.398126, -0.001258, -0.002516, 1.404833, 0.1931, -0.103399, 1.411539, 0.217613, 0.007122, 1.404833, -0.001258, -0.002516, 1.404833, -0.195616, 0.098367, 1.398126, -0.220129, -0.012155, 1.404833, -0.001258, -0.002516, 1.404833, -0.010878, 0.215944, 1.39142, -0.119025, 0.181857, 1.393217, -0.001258, -0.002516, 1.404833, 0.217613, 0.007122, 1.404833, 0.183479, 0.115061, 1.398126, -0.001258, -0.002516, 1.404833, 0.116509, -0.186889, 1.416449, 0.1931, -0.103399, 1.411539, -0.001258, -0.002516, 1.404833, -0.102362, -0.196527, 1.416449, 0.008363, -0.220976, 1.418246, -0.001258, -0.002516, 1.404833, 0.183479, 0.115061, 1.398126, 0.099846, 0.191495, 1.393217, -0.001258, -0.002516, 1.404833, -0.220129, -0.012155, 1.404833, -0.185995, -0.120093, 1.411539, -0.001258, -0.002516, 1.404833, 0.008363, -0.220976, 1.418246, 0.116509, -0.186889, 1.416449, -0.001258, -0.002516, 1.404833, 0.099846, 0.191495, 1.393217, -0.010878, 0.215944, 1.39142, -0.001258, -0.002516, 1.404833, 0.217931, -9.3e-05, 1.287079, 0.193418, -0.110615, 1.293785, -0.00094, -0.009732, 1.287078, -0.102044, -0.203743, 1.298695, -0.185678, -0.127309, 1.293785, -0.00094, -0.009732, 1.287078, -0.10159, 0.897246, 1.103788, -0.033688, 0.037488, 1.13731, -0.063897, 0.041309, 1.189036, -0.033688, 0.037488, 1.13731, -0.011417, 0.896066, 1.052063, 0.026276, 0.040129, 1.13731, -0.011417, 0.896066, 1.052063, 0.056032, 0.046591, 1.189036, 0.026276, 0.040129, 1.13731, 0.056032, 0.046591, 1.189036, -0.01187, 0.906349, 1.155514, 0.025824, 0.050412, 1.240762, -0.01187, 0.906349, 1.155514, -0.034141, 0.047771, 1.240762, 0.025824, 0.050412, 1.240762, -0.034141, 0.047771, 1.240762, -0.10159, 0.897246, 1.103788, -0.063897, 0.041309, 1.189036, -0.094219, -0.013225, 1.307315, -0.051027, 0.05749, 1.117748, -0.093725, -0.024447, 1.122612, -0.051522, 0.068712, 1.302451, 0.041405, 0.06156, 1.117748, -0.051027, 0.05749, 1.117748, 0.041405, 0.06156, 1.117748, 0.090645, -0.005084, 1.307315, 0.09114, -0.016306, 1.122612, 0.09114, -0.016306, 1.122612, 0.047948, -0.08702, 1.312178, 0.048442, -0.098242, 1.127476, 0.047948, -0.08702, 1.312178, -0.04399, -0.102313, 1.127476, 0.048442, -0.098242, 1.127476, -0.044484, -0.091091, 1.312178, -0.093725, -0.024447, 1.122612, -0.04399, -0.102313, 1.127476, 0.041405, 0.06156, 1.117748, 0.09114, -0.016306, 1.122612, -0.04399, -0.102313, 1.127476, -0.539149, 0.533742, -2.178194, -0.571638, 1.030217, -2.035907, -0.539338, 0.538018, -2.191738, 0.366361, 0.595678, -2.186126, 0.334248, 1.083601, -2.016752, 0.366549, 0.591403, -2.172583, -0.539338, 0.538018, -2.191738, 0.366549, 0.591403, -2.172583, -0.539149, 0.533742, -2.178194, 0.366361, 0.595678, -2.186126, -0.571638, 1.030217, -2.035907, 0.33406, 1.087877, -2.030295, 0.366549, 0.591403, -2.172583, -0.57145, 1.025941, -2.022363, -0.53915, 0.533742, -2.178194, 0.397072, 0.545514, -0.977476, -0.251247, 0.892001, -0.869065, 0.380588, 0.919826, -0.869065, 0.397308, 0.540144, -0.958898, -0.251011, 0.886631, -0.850487, -0.240061, 0.500037, -0.962378, 0.412808, 0.188178, -1.060836, -0.240061, 0.500037, -0.962378, -0.487846, 0.125158, -1.067588, 0.412572, 0.193549, -1.079414, -0.240297, 0.505407, -0.980956, 0.397072, 0.545514, -0.977476, -0.240297, 0.505407, -0.980956, -0.251011, 0.886631, -0.850487, -0.251247, 0.892002, -0.869065, 0.397072, 0.545514, -0.977476, 0.380825, 0.914456, -0.850487, 0.397308, 0.540144, -0.958898, 0.412572, 0.193549, -1.079414, -0.487846, 0.125158, -1.067588, -0.488083, 0.130528, -1.086166, 0.412572, 0.193549, -1.079414, 0.397308, 0.540144, -0.958898, 0.412808, 0.188178, -1.060836, -0.487846, 0.125158, -1.067588, -0.240297, 0.505407, -0.980956, -0.488083, 0.130528, -1.086166, -0.016058, 0.333584, -1.384197, -0.195417, 0.298096, -1.326789, -0.016973, 0.35434, -1.323824, -0.013534, 0.276259, -1.412195, -0.182442, 0.281141, -1.386961, -0.016058, 0.333584, -1.384197, -0.010878, 0.215944, -1.391419, -0.150799, 0.232993, -1.414476, -0.013534, 0.276259, -1.412195, -0.01056, 0.208728, -1.273665, -0.150349, 0.222789, -1.247947, -0.118707, 0.174641, -1.275462, -0.015741, 0.326368, -1.266442, -0.150349, 0.222789, -1.247947, -0.013085, 0.266054, -1.245666, -0.015741, 0.326368, -1.266442, -0.195417, 0.298096, -1.326789, -0.182124, 0.273925, -1.269207, -0.182442, 0.281141, -1.386961, -0.321793, 0.160335, -1.334889, -0.195417, 0.298096, -1.326789, -0.182442, 0.281141, -1.386961, -0.248012, 0.127024, -1.420708, -0.300277, 0.152692, -1.394514, -0.119025, 0.181857, -1.393216, -0.248012, 0.127024, -1.420708, -0.150799, 0.232993, -1.414476, -0.118707, 0.174641, -1.275462, -0.247562, 0.116819, -1.254178, -0.195298, 0.091151, -1.280372, -0.182124, 0.273925, -1.269207, -0.247562, 0.116819, -1.254178, -0.150349, 0.222789, -1.247947, -0.182124, 0.273925, -1.269207, -0.321793, 0.160335, -1.334889, -0.299959, 0.145476, -1.27676, -0.300277, 0.152692, -1.394514, -0.36224, -0.022028, -1.345955, -0.321793, 0.160335, -1.334889, -0.300277, 0.152692, -1.394514, -0.279125, -0.013255, -1.42922, -0.337989, -0.017345, -1.404832, -0.195615, 0.098367, -1.398126, -0.279125, -0.013255, -1.42922, -0.248012, 0.127024, -1.420708, -0.195298, 0.091151, -1.280372, -0.278675, -0.02346, -1.26269, -0.219811, -0.019371, -1.287078, -0.247562, 0.116819, -1.254178, -0.337672, -0.024561, -1.287078, -0.278675, -0.02346, -1.26269, -0.299959, 0.145476, -1.27676, -0.36224, -0.022028, -1.345955, -0.337672, -0.024561, -1.287078, -0.36224, -0.022028, -1.345955, -0.285476, -0.183408, -1.41515, -0.305919, -0.200129, -1.357021, -0.337989, -0.017345, -1.404832, -0.235801, -0.150256, -1.437732, -0.285476, -0.183408, -1.41515, -0.220128, -0.012155, -1.404832, -0.235801, -0.150256, -1.437732, -0.279125, -0.013255, -1.42922, -0.278675, -0.02346, -1.26269, -0.185677, -0.127309, -1.293785, -0.219811, -0.019371, -1.287078, -0.278675, -0.02346, -1.26269, -0.285158, -0.190624, -1.297396, -0.235351, -0.160461, -1.271203, -0.36224, -0.022028, -1.345955, -0.285158, -0.190624, -1.297396, -0.337672, -0.024561, -1.287078, -0.305919, -0.200129, -1.357021, -0.156805, -0.301002, -1.422704, -0.167922, -0.326247, -1.365122, -0.235801, -0.150256, -1.437732, -0.156805, -0.301002, -1.422704, -0.285476, -0.183408, -1.41515, -0.235801, -0.150256, -1.437732, -0.102361, -0.196527, -1.416448, -0.129649, -0.24727, -1.443964, -0.235351, -0.160461, -1.271203, -0.102043, -0.203743, -1.298694, -0.185677, -0.127309, -1.293785, -0.235351, -0.160461, -1.271203, -0.156488, -0.308218, -1.304949, -0.1292, -0.257475, -1.277434, -0.305919, -0.200129, -1.357021, -0.156488, -0.308218, -1.304949, -0.285158, -0.190624, -1.297396, -0.167922, -0.326247, -1.365122, 0.013544, -0.338616, -1.425468, 0.014776, -0.366588, -1.368087, -0.129649, -0.24727, -1.443964, 0.013544, -0.338616, -1.425468, -0.156805, -0.301002, -1.422704, -0.102361, -0.196527, -1.416448, 0.010887, -0.278302, -1.446244, -0.129649, -0.24727, -1.443964, -0.1292, -0.257475, -1.277434, 0.008681, -0.228192, -1.300491, -0.102043, -0.203743, -1.298694, -0.1292, -0.257475, -1.277434, 0.013861, -0.345832, -1.307714, 0.011337, -0.288507, -1.279715, -0.167922, -0.326247, -1.365122, 0.013861, -0.345832, -1.307714, -0.156488, -0.308218, -1.304949, 0.013544, -0.338616, -1.425468, 0.19322, -0.310343, -1.365122, 0.014776, -0.366588, -1.368087, 0.013544, -0.338616, -1.425468, 0.148152, -0.235037, -1.443964, 0.179927, -0.286173, -1.422704, 0.008363, -0.220976, -1.418245, 0.148152, -0.235037, -1.443964, 0.010887, -0.278302, -1.446244, 0.011337, -0.288507, -1.279715, 0.116827, -0.194105, -1.298694, 0.008681, -0.228192, -1.300491, 0.013861, -0.345832, -1.307714, 0.148602, -0.245241, -1.277434, 0.011337, -0.288507, -1.279715, 0.013861, -0.345832, -1.307714, 0.19322, -0.310343, -1.365122, 0.180245, -0.293389, -1.304949, 0.179927, -0.286173, -1.422704, 0.319597, -0.172583, -1.357021, 0.19322, -0.310343, -1.365122, 0.179927, -0.286173, -1.422704, 0.245365, -0.129067, -1.437732, 0.297762, -0.157724, -1.41515, 0.11651, -0.186889, -1.416448, 0.245365, -0.129067, -1.437732, 0.148152, -0.235037, -1.443964, 0.116827, -0.194105, -1.298694, 0.245815, -0.139272, -1.271203, 0.193418, -0.110615, -1.293785, 0.180245, -0.293389, -1.304949, 0.245815, -0.139272, -1.271203, 0.148602, -0.245241, -1.277434, 0.180245, -0.293389, -1.304949, 0.319597, -0.172583, -1.357021, 0.29808, -0.16494, -1.297396, 0.297762, -0.157724, -1.41515, 0.360043, 0.00978, -1.345955, 0.319597, -0.172583, -1.357021, 0.297762, -0.157724, -1.41515, 0.276478, 0.011212, -1.42922, 0.335475, 0.012313, -1.404832, 0.245365, -0.129067, -1.437732, 0.217613, 0.007122, -1.404832, 0.276478, 0.011212, -1.42922, 0.193418, -0.110615, -1.293785, 0.276928, 0.001007, -1.262691, 0.217931, -9.3e-05, -1.287078, 0.29808, -0.16494, -1.297396, 0.276928, 0.001007, -1.262691, 0.245815, -0.139272, -1.271203, 0.29808, -0.16494, -1.297396, 0.360043, 0.00978, -1.345955, 0.335793, 0.005097, -1.287078, 0.335475, 0.012313, -1.404832, 0.303723, 0.187881, -1.334889, 0.360043, 0.00978, -1.345955, 0.276478, 0.011212, -1.42922, 0.282961, 0.178376, -1.394514, 0.335475, 0.012313, -1.404832, 0.276478, 0.011212, -1.42922, 0.18348, 0.115061, -1.398126, 0.233154, 0.148213, -1.420708, 0.276928, 0.001007, -1.262691, 0.183798, 0.107845, -1.280372, 0.217931, -9.3e-05, -1.287078, 0.276928, 0.001007, -1.262691, 0.283279, 0.17116, -1.27676, 0.233604, 0.138009, -1.254178, 0.360043, 0.00978, -1.345955, 0.283279, 0.17116, -1.27676, 0.335793, 0.005097, -1.287078, 0.282961, 0.178376, -1.394514, 0.165725, 0.313999, -1.326789, 0.303723, 0.187881, -1.334889, 0.233154, 0.148213, -1.420708, 0.15429, 0.29597, -1.386961, 0.282961, 0.178376, -1.394514, 0.233154, 0.148213, -1.420708, 0.099847, 0.191495, -1.393216, 0.127003, 0.245227, -1.414476, 0.233604, 0.138009, -1.254178, 0.100164, 0.18428, -1.275462, 0.183798, 0.107845, -1.280372, 0.233604, 0.138009, -1.254178, 0.154608, 0.288754, -1.269207, 0.127452, 0.235022, -1.247947, 0.303723, 0.187881, -1.334889, 0.154608, 0.288754, -1.269207, 0.283279, 0.17116, -1.27676, 0.15429, 0.29597, -1.386961, -0.016973, 0.35434, -1.323824, 0.165725, 0.313999, -1.326789, 0.15429, 0.29597, -1.386961, -0.013534, 0.276259, -1.412195, -0.016058, 0.333584, -1.384197, 0.127003, 0.245227, -1.414476, -0.010878, 0.215944, -1.391419, -0.013534, 0.276259, -1.412195, 0.127452, 0.235022, -1.247947, -0.01056, 0.208728, -1.273665, 0.100164, 0.18428, -1.275462, 0.154608, 0.288754, -1.269207, -0.013085, 0.266054, -1.245666, 0.127452, 0.235022, -1.247947, 0.165725, 0.313999, -1.326789, -0.015741, 0.326368, -1.266442, 0.154608, 0.288754, -1.269207, -0.195298, 0.091151, -1.280372, -0.00094, -0.009732, -1.287078, -0.118707, 0.174641, -1.275462, 0.193418, -0.110615, -1.293785, -0.00094, -0.009732, -1.287078, 0.116827, -0.194105, -1.298694, -0.219811, -0.019371, -1.287078, -0.00094, -0.009732, -1.287078, -0.195298, 0.091151, -1.280372, -0.185677, -0.127309, -1.293785, -0.00094, -0.009732, -1.287078, -0.219811, -0.019371, -1.287078, 0.008681, -0.228192, -1.300491, -0.00094, -0.009732, -1.287078, -0.102043, -0.203743, -1.298694, -0.01056, 0.208728, -1.273665, -0.00094, -0.009732, -1.287078, 0.100164, 0.18428, -1.275462, 0.100164, 0.18428, -1.275462, -0.00094, -0.009732, -1.287078, 0.183798, 0.107845, -1.280372, -0.118707, 0.174641, -1.275462, -0.00094, -0.009732, -1.287078, -0.01056, 0.208728, -1.273665, 0.116827, -0.194105, -1.298694, -0.00094, -0.009732, -1.287078, 0.008681, -0.228192, -1.300491, 0.183798, 0.107845, -1.280372, -0.00094, -0.009732, -1.287078, 0.217931, -9.3e-05, -1.287078, -0.185995, -0.120093, -1.411539, -0.001257, -0.002516, -1.404832, -0.102361, -0.196527, -1.416448, -0.119025, 0.181857, -1.393216, -0.001257, -0.002516, -1.404832, -0.195615, 0.098367, -1.398126, 0.1931, -0.103399, -1.411539, -0.001257, -0.002516, -1.404832, 0.217613, 0.007122, -1.404832, -0.195615, 0.098367, -1.398126, -0.001257, -0.002516, -1.404832, -0.220128, -0.012155, -1.404832, -0.010878, 0.215944, -1.391419, -0.001257, -0.002516, -1.404832, -0.119025, 0.181857, -1.393216, 0.217613, 0.007122, -1.404832, -0.001257, -0.002516, -1.404832, 0.18348, 0.115061, -1.398126, 0.11651, -0.186889, -1.416448, -0.001257, -0.002516, -1.404832, 0.1931, -0.103399, -1.411539, -0.102361, -0.196527, -1.416448, -0.001257, -0.002516, -1.404832, 0.008363, -0.220976, -1.418245, 0.18348, 0.115061, -1.398126, -0.001257, -0.002516, -1.404832, 0.099847, 0.191495, -1.393216, -0.220128, -0.012155, -1.404832, -0.001257, -0.002516, -1.404832, -0.185995, -0.120093, -1.411539, 0.008363, -0.220976, -1.418245, -0.001257, -0.002516, -1.404832, 0.11651, -0.186889, -1.416448, 0.099847, 0.191495, -1.393216, -0.001257, -0.002516, -1.404832, -0.010878, 0.215944, -1.391419, 0.217931, -9.3e-05, -1.287078, -0.00094, -0.009732, -1.287078, 0.193418, -0.110615, -1.293785, -0.102043, -0.203743, -1.298694, -0.00094, -0.009732, -1.287078, -0.185677, -0.127309, -1.293785, -0.033688, 0.037488, -1.13731, -0.10159, 0.897246, -1.103788, -0.063897, 0.041309, -1.189035, -0.033688, 0.037488, -1.13731, -0.011417, 0.896066, -1.052062, -0.071381, 0.893425, -1.052062, 0.056033, 0.046591, -1.189035, -0.011417, 0.896066, -1.052062, 0.026277, 0.040129, -1.13731, 0.056033, 0.046591, -1.189035, -0.011869, 0.906349, -1.155514, 0.018339, 0.902528, -1.103788, -0.034141, 0.047771, -1.240761, -0.011869, 0.906349, -1.155514, 0.025824, 0.050412, -1.240761, -0.034141, 0.047771, -1.240761, -0.10159, 0.897246, -1.103788, -0.071834, 0.903708, -1.155514, -0.051027, 0.05749, -1.117747, -0.094219, -0.013225, -1.307314, -0.093725, -0.024447, -1.122611, 0.041405, 0.06156, -1.117747, -0.051521, 0.068712, -1.30245, -0.051027, 0.05749, -1.117747, 0.041405, 0.06156, -1.117747, 0.090646, -0.005084, -1.307314, 0.040911, 0.072782, -1.30245, 0.09114, -0.016306, -1.122611, 0.047948, -0.08702, -1.312178, 0.090646, -0.005084, -1.307314, -0.04399, -0.102313, -1.127476, 0.047948, -0.08702, -1.312178, 0.048443, -0.098242, -1.127476, -0.04399, -0.102313, -1.127476, -0.094219, -0.013225, -1.307314, -0.044484, -0.091091, -1.312178, -0.04399, -0.102313, -1.127476, 0.041405, 0.06156, -1.117748, -0.051027, 0.05749, -1.117748, 3.879606, 0.244354, 1e-06, 3.839262, 0.969392, -0.036921, 3.900845, 0.246162, -0.036921, 3.839262, 0.969392, -0.036921, 3.943325, 0.249779, -0.036921, 3.900845, 0.246162, -0.036921, 3.943325, 0.249779, -0.036921, 3.902982, 0.974817, 1e-06, 3.964565, 0.251588, 1e-06, 3.902982, 0.974817, 1e-06, 3.943325, 0.249779, 0.036923, 3.964565, 0.251588, 1e-06, 3.881742, 0.973009, 0.036922, 3.900845, 0.246162, 0.036922, 3.943325, 0.249779, 0.036923, 3.839262, 0.969392, 0.036922, 3.879606, 0.244354, 1e-06, 3.900845, 0.246162, 0.036922, 3.968907, 0.198026, 0.147181, 3.878291, 0.232104, 0.133771, 3.880602, 0.190507, 0.147181, 3.873927, 0.189938, -0.087716, 3.878291, 0.232104, -0.13377, 3.880602, 0.190507, -0.14718, 3.878291, 0.232104, -0.13377, 3.968907, 0.198026, -0.14718, 3.880602, 0.190507, -0.14718, 3.975583, 0.198594, 0.087717, 3.964153, 0.239415, 0.133771, 3.968907, 0.198026, 0.147181, 3.975583, 0.198594, 0.087717, 3.921637, -0.119688, 0.056459, 3.873927, 0.189938, 0.087717, 3.878291, 0.232104, 0.133771, 3.97016, 0.262283, 0.087717, 3.868504, 0.253627, 0.087717, 3.878291, 0.232104, -0.13377, 3.97016, 0.262283, -0.087716, 3.964153, 0.239415, -0.13377, 3.868504, 0.253627, 0.087717, 3.97016, 0.262283, -0.087716, 3.868504, 0.253627, -0.087716, 3.873927, 0.189938, 0.087717, 3.925529, -0.119357, 0.091627, 3.880602, 0.190507, 0.147181, 3.873927, 0.189938, 0.087717, 3.975583, 0.198594, -0.087716, 3.975583, 0.198594, 0.087717, 3.964153, 0.239415, -0.13377, 3.975583, 0.198594, -0.087716, 3.968907, 0.198026, -0.14718, 3.97016, 0.262283, -0.087716, 3.975583, 0.198594, 0.087717, 3.975583, 0.198594, -0.087716, 3.878291, 0.232104, 0.133771, 3.873927, 0.189938, 0.087717, 3.880602, 0.190507, 0.147181, 3.868504, 0.253627, 0.087717, 3.873927, 0.189938, -0.087716, 3.873927, 0.189938, 0.087717, 3.921637, -0.119688, -0.056457, 3.977018, -0.114972, -0.091626, 3.98091, -0.114641, -0.056457, 3.925529, -0.119357, 0.091627, 3.98091, -0.114641, 0.056459, 3.977018, -0.114972, 0.091627, 3.968907, 0.198026, 0.147181, 3.925529, -0.119357, 0.091627, 3.977018, -0.114972, 0.091627, 3.968907, 0.198026, -0.14718, 3.925529, -0.119357, -0.091626, 3.880602, 0.190507, -0.14718, 3.975583, 0.198594, 0.087717, 3.977018, -0.114972, 0.091627, 3.98091, -0.114641, 0.056459, 3.975583, 0.198594, -0.087716, 3.921637, -0.119688, -0.056457, 3.98091, -0.114641, -0.056457, 3.873927, 0.189938, -0.087716, 3.925529, -0.119357, -0.091626, 3.921637, -0.119688, -0.056457, 3.975583, 0.198594, -0.087716, 3.977018, -0.114972, -0.091626, 3.968907, 0.198026, -0.14718, 3.812544, 0.115168, 0.049391, 3.935237, 0.108775, 0.06985, 3.931047, 0.157988, 0.049392, 3.840779, 0.074643, 0.06985, 3.939427, 0.059562, 0.049392, 3.935237, 0.108775, 0.06985, 3.869015, 0.034119, -0.04939, 3.935237, 0.108775, -0.069848, 3.939428, 0.059562, -0.04939, 3.935237, 0.108775, -0.069848, 3.812544, 0.115168, -0.04939, 3.931047, 0.157988, -0.04939, 3.731328, 0.018833, 0.049391, 3.840779, 0.074643, 0.06985, 3.812544, 0.115168, 0.049391, 3.840779, 0.074643, 0.06985, 3.820758, -0.023122, 0.049392, 3.869015, 0.034119, 0.049392, 3.820758, -0.023122, -0.04939, 3.840779, 0.074643, -0.069849, 3.869015, 0.034119, -0.04939, 3.840779, 0.074643, -0.069849, 3.731328, 0.018833, -0.04939, 3.812544, 0.115168, -0.04939, 3.720038, 0.017759, 1e-06, 3.70916, -0.105203, 0.049392, 3.731328, 0.018833, 0.049391, 3.70916, -0.105203, 0.049392, 3.776042, -0.002144, 0.06985, 3.731328, 0.018833, 0.049391, 3.758373, -0.101013, 0.06985, 3.820758, -0.023122, 0.049392, 3.776042, -0.002144, 0.06985, 3.807585, -0.096822, -0.04939, 3.776043, -0.002144, -0.069849, 3.820758, -0.023122, -0.04939, 3.776043, -0.002144, -0.069849, 3.70916, -0.105203, -0.04939, 3.731328, 0.018833, -0.04939, 3.70916, -0.105203, -0.04939, 3.720038, 0.017759, 1e-06, 3.731328, 0.018833, -0.04939, 3.688776, -0.106939, 1e-06, 3.75198, -0.223705, 0.049392, 3.70916, -0.105203, 0.049392, 3.75198, -0.223705, 0.049392, 3.758373, -0.101013, 0.06985, 3.70916, -0.105203, 0.049392, 3.792504, -0.19547, 0.06985, 3.807585, -0.096822, 0.049392, 3.758373, -0.101013, 0.06985, 3.807585, -0.096822, -0.04939, 3.792504, -0.19547, -0.069848, 3.758373, -0.101013, -0.069849, 3.758373, -0.101013, -0.069849, 3.75198, -0.223705, -0.04939, 3.70916, -0.105203, -0.04939, 3.75198, -0.223705, -0.04939, 3.688776, -0.106939, 1e-06, 3.70916, -0.105203, -0.04939, 3.735194, -0.235401, 1e-06, 3.848315, -0.304922, 0.049392, 3.75198, -0.223705, 0.049392, 3.848315, -0.304922, 0.049392, 3.792504, -0.19547, 0.06985, 3.75198, -0.223705, 0.049392, 3.792504, -0.19547, 0.06985, 3.890269, -0.215492, 0.049392, 3.833029, -0.167235, 0.049392, 3.890269, -0.215492, -0.04939, 3.792504, -0.19547, -0.069848, 3.833029, -0.167235, -0.04939, 3.792504, -0.19547, -0.069848, 3.848315, -0.304922, -0.04939, 3.75198, -0.223705, -0.04939, 3.848315, -0.304922, -0.04939, 3.735194, -0.235401, 1e-06, 3.75198, -0.223705, -0.04939, 3.839626, -0.323443, 1e-06, 3.972351, -0.32709, 0.049392, 3.848315, -0.304922, 0.049392, 3.972351, -0.32709, 0.049392, 3.869292, -0.260207, 0.06985, 3.848315, -0.304922, 0.049392, 3.869292, -0.260207, 0.06985, 3.96397, -0.228664, 0.049392, 3.890269, -0.215492, 0.049392, 3.96397, -0.228664, -0.04939, 3.869292, -0.260207, -0.069848, 3.890269, -0.215492, -0.04939, 3.869292, -0.260207, -0.069848, 3.972351, -0.32709, -0.04939, 3.848315, -0.304922, -0.04939, 3.972351, -0.32709, -0.04939, 3.839626, -0.323443, 1e-06, 3.848315, -0.304922, -0.04939, 3.974087, -0.347474, 1e-06, 4.090853, -0.28427, 0.049392, 3.972351, -0.32709, 0.049392, 4.090853, -0.28427, 0.049392, 3.96816, -0.277877, 0.06985, 3.972351, -0.32709, 0.049392, 3.96816, -0.277877, 0.06985, 4.034382, -0.203221, 0.049392, 3.96397, -0.228664, 0.049392, 3.96397, -0.228664, -0.04939, 4.062618, -0.243745, -0.069848, 3.96816, -0.277877, -0.069848, 4.062618, -0.243745, -0.069848, 3.972351, -0.32709, -0.04939, 3.96816, -0.277877, -0.069848, 4.090853, -0.28427, -0.04939, 3.974087, -0.347474, 1e-06, 3.972351, -0.32709, -0.04939, 4.190591, -0.196624, 1e-06, 4.090853, -0.28427, 0.049392, 4.102549, -0.301055, 1e-06, 4.090853, -0.28427, 0.049392, 4.127355, -0.166958, 0.06985, 4.062618, -0.243745, 0.06985, 4.062618, -0.243745, 0.06985, 4.08264, -0.14598, 0.049392, 4.034382, -0.203221, 0.049392, 4.08264, -0.14598, -0.04939, 4.062618, -0.243745, -0.069848, 4.034382, -0.203221, -0.04939, 4.127355, -0.166958, -0.069848, 4.090853, -0.28427, -0.04939, 4.062618, -0.243745, -0.069848, 4.090853, -0.28427, -0.04939, 4.190591, -0.196624, 1e-06, 4.102549, -0.301055, 1e-06, 4.190591, -0.196624, 1e-06, 4.194237, -0.063899, 0.049392, 4.17207, -0.187935, 0.049392, 4.194237, -0.063899, 0.049392, 4.127355, -0.166958, 0.06985, 4.17207, -0.187935, 0.049392, 4.145024, -0.068089, 0.06985, 4.08264, -0.14598, 0.049392, 4.127355, -0.166958, 0.06985, 4.08264, -0.14598, -0.04939, 4.145024, -0.068089, -0.069848, 4.127355, -0.166958, -0.069848, 4.127355, -0.166958, -0.069848, 4.194237, -0.063899, -0.04939, 4.17207, -0.187935, -0.04939, 4.194237, -0.063899, -0.04939, 4.190591, -0.196624, 1e-06, 4.17207, -0.187935, -0.04939, 4.151417, 0.054604, 0.049392, 4.145024, -0.068089, 0.06985, 4.194237, -0.063899, 0.049392, 4.145024, -0.068089, 0.06985, 4.070369, -0.001867, 0.049392, 4.095812, -0.07228, 0.049392, 4.070369, -0.001867, -0.04939, 4.145024, -0.068089, -0.069848, 4.095812, -0.07228, -0.04939, 4.145024, -0.068089, -0.069848, 4.151417, 0.054604, -0.04939, 4.194237, -0.063899, -0.04939, 4.151417, 0.054604, 0.049392, 4.034106, 0.091105, 0.06985, 4.110893, 0.026368, 0.06985, 4.110893, 0.026368, 0.06985, 4.013128, 0.04639, 0.049392, 4.070369, -0.001867, 0.049392, 4.013128, 0.04639, -0.04939, 4.110893, 0.026368, -0.069848, 4.070369, -0.001867, -0.04939, 4.034106, 0.091105, -0.069848, 4.151417, 0.054604, -0.04939, 4.110893, 0.026368, -0.069848, 4.055082, 0.13582, 0.049392, 3.935237, 0.108775, 0.06985, 4.034106, 0.091105, 0.06985, 3.935237, 0.108775, 0.06985, 4.013128, 0.04639, 0.049392, 4.034106, 0.091105, 0.06985, 4.013128, 0.04639, -0.04939, 3.935237, 0.108775, -0.069848, 4.034106, 0.091105, -0.069848, 3.935237, 0.108775, -0.069848, 4.055082, 0.13582, -0.04939, 4.034106, 0.091105, -0.069848, 3.869015, 0.034119, 0.049392, 3.820758, -0.023121, 0.049392, 3.951699, -0.084551, 0.049392, 3.96397, -0.228664, 0.049392, 4.034382, -0.203221, 0.049392, 3.951699, -0.084551, 0.049392, 4.034382, -0.203221, 0.049392, 4.08264, -0.14598, 0.049392, 3.951699, -0.084551, 0.049392, 4.013128, 0.046391, 0.049392, 3.939427, 0.059562, 0.049392, 3.951699, -0.084551, 0.049392, 3.939427, 0.059562, 0.049392, 3.869015, 0.034119, 0.049392, 3.951699, -0.084551, 0.049392, 3.820758, -0.023121, 0.049392, 3.807585, -0.096822, 0.049392, 3.951699, -0.084551, 0.049392, 3.807585, -0.096822, 0.049392, 3.833029, -0.167235, 0.049392, 3.951699, -0.084551, 0.049392, 4.08264, -0.14598, 0.049392, 4.095812, -0.072279, 0.049392, 3.951699, -0.084551, 0.049392, 3.833029, -0.167235, 0.049392, 3.890269, -0.215492, 0.049392, 3.951699, -0.084551, 0.049392, 3.890269, -0.215492, 0.049392, 3.96397, -0.228664, 0.049392, 3.951699, -0.084551, 0.049392, 4.070369, -0.001867, 0.049392, 4.013128, 0.046391, 0.049392, 3.951699, -0.084551, 0.049392, 4.095812, -0.072279, 0.049392, 4.070369, -0.001867, 0.049392, 3.951699, -0.084551, 0.049392, 3.890269, -0.215492, -0.04939, 3.833029, -0.167235, -0.04939, 3.951699, -0.084551, -0.04939, 4.095812, -0.07228, -0.04939, 4.08264, -0.14598, -0.04939, 3.951699, -0.084551, -0.04939, 3.807585, -0.096822, -0.04939, 3.820758, -0.023121, -0.04939, 3.951699, -0.084551, -0.04939, 4.013128, 0.046391, -0.04939, 4.070369, -0.001867, -0.04939, 3.951699, -0.084551, -0.04939, 3.833029, -0.167235, -0.04939, 3.807585, -0.096822, -0.04939, 3.951699, -0.084551, -0.04939, 3.869015, 0.034119, -0.04939, 3.939428, 0.059562, -0.04939, 3.951699, -0.084551, -0.04939, 3.939428, 0.059562, -0.04939, 4.013128, 0.046391, -0.04939, 3.951699, -0.084551, -0.04939, 3.820758, -0.023121, -0.04939, 3.869015, 0.034119, -0.04939, 3.951699, -0.084551, -0.04939, 4.034382, -0.203221, -0.04939, 3.96397, -0.228664, -0.04939, 3.951699, -0.084551, -0.04939, 4.08264, -0.14598, -0.04939, 4.034382, -0.203221, -0.04939, 3.951699, -0.084551, -0.04939, 4.070369, -0.001867, -0.04939, 4.095812, -0.07228, -0.04939, 3.951699, -0.084551, -0.04939, 3.96397, -0.228664, -0.04939, 3.890269, -0.215492, -0.04939, 3.951699, -0.084551, -0.04939, 3.788283, 0.148574, 1e-06, 3.930474, 0.158792, 0.081883, 3.927138, 0.199106, 1e-06, 3.930474, 0.158792, -0.081882, 3.788283, 0.148574, 1e-06, 3.927138, 0.199106, 1e-06, 3.788283, 0.148574, 1e-06, 3.731514, 0.018384, 0.081883, 3.81162, 0.115512, 0.081883, 3.731514, 0.018384, -0.081882, 3.788283, 0.148574, 1e-06, 3.81162, 0.115512, -0.081882, 4.186562, 0.077315, 1e-06, 4.195903, -0.064359, 0.081883, 4.242948, -0.060353, 1e-06, 4.195903, -0.064359, -0.081882, 4.186562, 0.077315, 1e-06, 4.242948, -0.060353, 1e-06, 4.072538, 0.172778, 1e-06, 4.152622, 0.054495, 0.081883, 4.186562, 0.077315, 1e-06, 4.152622, 0.054495, -0.081882, 4.072538, 0.172778, 1e-06, 4.186562, 0.077315, 1e-06, 3.927138, 0.199106, 1e-06, 4.054935, 0.13623, 0.081883, 4.072538, 0.172778, 1e-06, 4.054935, 0.13623, -0.081882, 3.927138, 0.199106, 1e-06, 4.072538, 0.172778, 1e-06, 3.731328, 0.018833, 0.049391, 3.68278, 0.015261, 1e-06, 3.720038, 0.017759, 1e-06, 3.731328, 0.018833, -0.04939, 3.68278, 0.015261, 1e-06, 3.731514, 0.018384, -0.081882, 4.194237, -0.063899, -0.04939, 4.242948, -0.060353, 1e-06, 4.214622, -0.062163, 1e-06, 4.194237, -0.063899, 0.049392, 4.242948, -0.060353, 1e-06, 4.195903, -0.064359, 0.081883, 4.151417, 0.054604, 0.049392, 4.054935, 0.13623, 0.081883, 4.055082, 0.13582, 0.049392, 3.812544, 0.115168, -0.04939, 3.930474, 0.158793, -0.081882, 3.931047, 0.157988, -0.04939, 3.812544, 0.115168, 0.049391, 3.930474, 0.158793, 0.081883, 3.81162, 0.115512, 0.081883, 3.931047, 0.157988, -0.04939, 4.054935, 0.13623, -0.081882, 4.055082, 0.13582, -0.04939, 3.731328, 0.018833, 0.049391, 3.81162, 0.115512, 0.081883, 3.731514, 0.018384, 0.081883, 4.194237, -0.063898, 0.049392, 4.152622, 0.054495, 0.081883, 4.151417, 0.054604, 0.049392, 3.731328, 0.018833, -0.04939, 3.81162, 0.115512, -0.081882, 3.812544, 0.115168, -0.04939, 3.931047, 0.157988, 0.049392, 4.054935, 0.13623, 0.081883, 3.930474, 0.158793, 0.081883, 4.151417, 0.054604, -0.04939, 4.054935, 0.13623, -0.081882, 4.152622, 0.054495, -0.081882, 4.194237, -0.063898, -0.04939, 4.152622, 0.054495, -0.081882, 4.195903, -0.064359, -0.081882, -3.567486, 0.218378, 0.019347, -3.543051, 0.248384, 0.019347, -3.867019, 0.512203, 0.019347, -3.867019, 0.512203, 0.019347, -3.543051, 0.248384, 0.019347, -3.543051, 0.248384, -0.019349, -3.867019, 0.512203, -0.019349, -3.543051, 0.248384, -0.019349, -3.567486, 0.218378, -0.019349, -3.567486, 0.218378, -0.019349, -3.567486, 0.218378, 0.019347, -3.891453, 0.482197, 0.019347, -3.691544, 0.053775, 0.027179, -3.269273, 0.46139, 0.027179, -3.307027, 0.5005, 0.027179, -3.729297, 0.092885, 0.027179, -3.307027, 0.5005, 0.027179, -3.307027, 0.5005, -0.02718, -3.307027, 0.5005, -0.02718, -3.269273, 0.46139, -0.02718, -3.691544, 0.053775, -0.02718, -3.269273, 0.46139, -0.02718, -3.269273, 0.46139, 0.027179, -3.691544, 0.053775, 0.027179, -3.729297, 0.092885, 0.027179, -3.729297, 0.092885, -0.02718, -3.691544, 0.053775, -0.02718, -3.764996, 0.188438, 0.065709, -3.759354, 0.179588, 0.091048, -3.704729, 0.196834, 0.091048, -3.704729, 0.196834, 0.091048, -3.759354, 0.179588, 0.091048, -3.74573, 0.158223, 0.101544, -3.703614, 0.171519, 0.101544, -3.74573, 0.158223, 0.101544, -3.732108, 0.136857, 0.091048, -3.732108, 0.136857, 0.04037, -3.74573, 0.158223, 0.029874, -3.703614, 0.171519, 0.029874, -3.74573, 0.158223, 0.029874, -3.759354, 0.179588, 0.04037, -3.704729, 0.196834, 0.04037, -3.704729, 0.196834, 0.04037, -3.759354, 0.179588, 0.04037, -3.764996, 0.188438, 0.065709, -3.807348, 0.142184, 0.065709, -3.798037, 0.137341, 0.091048, -3.759354, 0.179588, 0.091048, -3.759354, 0.179588, 0.091048, -3.798037, 0.137341, 0.091048, -3.775556, 0.125649, 0.101544, -3.74573, 0.158223, 0.101544, -3.775556, 0.125649, 0.101544, -3.753076, 0.113957, 0.091048, -3.753076, 0.113957, 0.04037, -3.775556, 0.125649, 0.029874, -3.74573, 0.158223, 0.029874, -3.775556, 0.125649, 0.029874, -3.798037, 0.137341, 0.04037, -3.759354, 0.179588, 0.04037, -3.759354, 0.179588, 0.04037, -3.798037, 0.137341, 0.04037, -3.807348, 0.142184, 0.065709, -3.820899, 0.08095, 0.065709, -3.810414, 0.081412, 0.091048, -3.798037, 0.137341, 0.091048, -3.810414, 0.081412, 0.091048, -3.785099, 0.082527, 0.101544, -3.775556, 0.125649, 0.101544, -3.785099, 0.082527, 0.101544, -3.759784, 0.083641, 0.091048, -3.753076, 0.113957, 0.091048, -3.753076, 0.113957, 0.04037, -3.759784, 0.083641, 0.04037, -3.785099, 0.082527, 0.029874, -3.775556, 0.125649, 0.029874, -3.785099, 0.082527, 0.029874, -3.810414, 0.081412, 0.04037, -3.798037, 0.137341, 0.04037, -3.810414, 0.081412, 0.04037, -3.820899, 0.08095, 0.065709, -3.820899, 0.08095, 0.065709, -3.802018, 0.021144, 0.065709, -3.793169, 0.026787, 0.091048, -3.793169, 0.026787, 0.091048, -3.771802, 0.04041, 0.101544, -3.785099, 0.082527, 0.101544, -3.785099, 0.082527, 0.101544, -3.771802, 0.04041, 0.101544, -3.750437, 0.054033, 0.091048, -3.750437, 0.054033, 0.04037, -3.771802, 0.04041, 0.029874, -3.785099, 0.082527, 0.029874, -3.785099, 0.082527, 0.029874, -3.771802, 0.04041, 0.029874, -3.793169, 0.026787, 0.04037, -3.793169, 0.026787, 0.04037, -3.802018, 0.021144, 0.065709, -3.820899, 0.08095, 0.065709, -3.802018, 0.021144, 0.065709, -3.755764, -0.021208, 0.065709, -3.750921, -0.011896, 0.091048, -3.750921, -0.011896, 0.091048, -3.739229, 0.010584, 0.101544, -3.771802, 0.04041, 0.101544, -3.739229, 0.010584, 0.101544, -3.727537, 0.033065, 0.091048, -3.750437, 0.054033, 0.091048, -3.750437, 0.054033, 0.04037, -3.727537, 0.033065, 0.04037, -3.739229, 0.010584, 0.029874, -3.771802, 0.04041, 0.029874, -3.739229, 0.010584, 0.029874, -3.750921, -0.011896, 0.04037, -3.750921, -0.011896, 0.04037, -3.755764, -0.021208, 0.065709, -3.802018, 0.021144, 0.065709, -3.69453, -0.034759, 0.065709, -3.694992, -0.024273, 0.091048, -3.750921, -0.011896, 0.091048, -3.750921, -0.011896, 0.091048, -3.694992, -0.024273, 0.091048, -3.696107, 0.001041, 0.101544, -3.696107, 0.001041, 0.101544, -3.697221, 0.026356, 0.091048, -3.727537, 0.033065, 0.091048, -3.727537, 0.033065, 0.04037, -3.697221, 0.026356, 0.04037, -3.696107, 0.001041, 0.029874, -3.696107, 0.001041, 0.029874, -3.694992, -0.024273, 0.04037, -3.750921, -0.011896, 0.04037, -3.750921, -0.011896, 0.04037, -3.694992, -0.024273, 0.04037, -3.69453, -0.034759, 0.065709, -3.634725, -0.015878, 0.065709, -3.640367, -0.007028, 0.091048, -3.694992, -0.024273, 0.091048, -3.694992, -0.024273, 0.091048, -3.640367, -0.007028, 0.091048, -3.65399, 0.014338, 0.101544, -3.65399, 0.014338, 0.101544, -3.667613, 0.035704, 0.091048, -3.697221, 0.026356, 0.091048, -3.697221, 0.026356, 0.04037, -3.667613, 0.035704, 0.04037, -3.65399, 0.014338, 0.029874, -3.65399, 0.014338, 0.029874, -3.640367, -0.007028, 0.04037, -3.694992, -0.024273, 0.04037, -3.694992, -0.024273, 0.04037, -3.640367, -0.007028, 0.04037, -3.634725, -0.015878, 0.065709, -3.592372, 0.030377, 0.065709, -3.601684, 0.03522, 0.091048, -3.640367, -0.007028, 0.091048, -3.640367, -0.007028, 0.091048, -3.601684, 0.03522, 0.091048, -3.624164, 0.046912, 0.101544, -3.65399, 0.014338, 0.101544, -3.624164, 0.046912, 0.101544, -3.646645, 0.058604, 0.091048, -3.646645, 0.058604, 0.04037, -3.624164, 0.046912, 0.029874, -3.65399, 0.014338, 0.029874, -3.624164, 0.046912, 0.029874, -3.601684, 0.03522, 0.04037, -3.640367, -0.007028, 0.04037, -3.640367, -0.007028, 0.04037, -3.601684, 0.03522, 0.04037, -3.592372, 0.030377, 0.065709, -3.578821, 0.091611, 0.065709, -3.589307, 0.091149, 0.091048, -3.601684, 0.03522, 0.091048, -3.589307, 0.091149, 0.091048, -3.614621, 0.090034, 0.101544, -3.624164, 0.046912, 0.101544, -3.614621, 0.090034, 0.101544, -3.639936, 0.088919, 0.091048, -3.646645, 0.058604, 0.091048, -3.646645, 0.058604, 0.04037, -3.639936, 0.088919, 0.04037, -3.614621, 0.090034, 0.029874, -3.624164, 0.046912, 0.029874, -3.614621, 0.090034, 0.029874, -3.589307, 0.091149, 0.04037, -3.601684, 0.03522, 0.04037, -3.589307, 0.091149, 0.04037, -3.578821, 0.091611, 0.065709, -3.578821, 0.091611, 0.065709, -3.597702, 0.151416, 0.065709, -3.606552, 0.145773, 0.091048, -3.589307, 0.091149, 0.091048, -3.606552, 0.145773, 0.091048, -3.627918, 0.132151, 0.101544, -3.614621, 0.090034, 0.101544, -3.627918, 0.132151, 0.101544, -3.649284, 0.118528, 0.091048, -3.649284, 0.118528, 0.04037, -3.627918, 0.132151, 0.029874, -3.614621, 0.090034, 0.029874, -3.627918, 0.132151, 0.029874, -3.606552, 0.145773, 0.04037, -3.589307, 0.091149, 0.04037, -3.606552, 0.145773, 0.04037, -3.597702, 0.151416, 0.065709, -3.578821, 0.091611, 0.065709, -3.643957, 0.193768, 0.065709, -3.6488, 0.184457, 0.091048, -3.606552, 0.145773, 0.091048, -3.6488, 0.184457, 0.091048, -3.660491, 0.161976, 0.101544, -3.627918, 0.132151, 0.101544, -3.660491, 0.161976, 0.101544, -3.672184, 0.139496, 0.091048, -3.649284, 0.118528, 0.091048, -3.649284, 0.118528, 0.04037, -3.672184, 0.139496, 0.04037, -3.660491, 0.161976, 0.029874, -3.627918, 0.132151, 0.029874, -3.660491, 0.161976, 0.029874, -3.6488, 0.184457, 0.04037, -3.606552, 0.145773, 0.04037, -3.6488, 0.184457, 0.04037, -3.643957, 0.193768, 0.065709, -3.70519, 0.20732, 0.065709, -3.704729, 0.196834, 0.091048, -3.6488, 0.184457, 0.091048, -3.6488, 0.184457, 0.091048, -3.704729, 0.196834, 0.091048, -3.703614, 0.171519, 0.101544, -3.703614, 0.171519, 0.101544, -3.702499, 0.146205, 0.091048, -3.672184, 0.139496, 0.091048, -3.672184, 0.139496, 0.04037, -3.702499, 0.146205, 0.04037, -3.703614, 0.171519, 0.029874, -3.703614, 0.171519, 0.029874, -3.704729, 0.196834, 0.04037, -3.6488, 0.184457, 0.04037, -3.6488, 0.184457, 0.04037, -3.704729, 0.196834, 0.04037, -3.70519, 0.20732, 0.065709, -3.704729, 0.196834, -0.09105, -3.759354, 0.179588, -0.09105, -3.764996, 0.188438, -0.065711, -3.704729, 0.196834, -0.09105, -3.703614, 0.171519, -0.101546, -3.74573, 0.158223, -0.101546, -3.703614, 0.171519, -0.101546, -3.702499, 0.146205, -0.09105, -3.732108, 0.136857, -0.09105, -3.703614, 0.171519, -0.029876, -3.74573, 0.158223, -0.029876, -3.732108, 0.136857, -0.040372, -3.704729, 0.196834, -0.040372, -3.759354, 0.179588, -0.040372, -3.74573, 0.158223, -0.029876, -3.704729, 0.196834, -0.040372, -3.70519, 0.20732, -0.065711, -3.764996, 0.188438, -0.065711, -3.759354, 0.179588, -0.09105, -3.798037, 0.137341, -0.09105, -3.807348, 0.142184, -0.065711, -3.759354, 0.179588, -0.09105, -3.74573, 0.158223, -0.101546, -3.775556, 0.125649, -0.101546, -3.74573, 0.158223, -0.101546, -3.732108, 0.136857, -0.09105, -3.753076, 0.113957, -0.09105, -3.74573, 0.158223, -0.029876, -3.775556, 0.125649, -0.029876, -3.753076, 0.113957, -0.040372, -3.759354, 0.179588, -0.040372, -3.798037, 0.137341, -0.040372, -3.775556, 0.125649, -0.029876, -3.759354, 0.179588, -0.040372, -3.764996, 0.188438, -0.065711, -3.807348, 0.142184, -0.065711, -3.798037, 0.137341, -0.09105, -3.810414, 0.081412, -0.09105, -3.820899, 0.08095, -0.065711, -3.775556, 0.125649, -0.101546, -3.785099, 0.082527, -0.101546, -3.810414, 0.081412, -0.09105, -3.753076, 0.113957, -0.09105, -3.759784, 0.083641, -0.09105, -3.785099, 0.082527, -0.101546, -3.753076, 0.113957, -0.040372, -3.775556, 0.125649, -0.029876, -3.785099, 0.082527, -0.029876, -3.775556, 0.125649, -0.029876, -3.798037, 0.137341, -0.040372, -3.810414, 0.081412, -0.040372, -3.798037, 0.137341, -0.040372, -3.807348, 0.142184, -0.065711, -3.820899, 0.08095, -0.065711, -3.820899, 0.08095, -0.065711, -3.810414, 0.081412, -0.09105, -3.793169, 0.026787, -0.09105, -3.785099, 0.082527, -0.101546, -3.771802, 0.04041, -0.101546, -3.793169, 0.026787, -0.09105, -3.785099, 0.082527, -0.101546, -3.759784, 0.083641, -0.09105, -3.750437, 0.054033, -0.09105, -3.785099, 0.082527, -0.029876, -3.771802, 0.04041, -0.029876, -3.750437, 0.054033, -0.040372, -3.785099, 0.082527, -0.029876, -3.810414, 0.081412, -0.040372, -3.793169, 0.026787, -0.040372, -3.820899, 0.08095, -0.065711, -3.802018, 0.021144, -0.065711, -3.793169, 0.026787, -0.040372, -3.802018, 0.021144, -0.065711, -3.793169, 0.026787, -0.09105, -3.750921, -0.011896, -0.09105, -3.771802, 0.04041, -0.101546, -3.739229, 0.010584, -0.101546, -3.750921, -0.011896, -0.09105, -3.750437, 0.054033, -0.09105, -3.727537, 0.033065, -0.09105, -3.739229, 0.010584, -0.101546, -3.750437, 0.054033, -0.040372, -3.771802, 0.04041, -0.029876, -3.739229, 0.010584, -0.029876, -3.771802, 0.04041, -0.029876, -3.793169, 0.026787, -0.040372, -3.750921, -0.011896, -0.040372, -3.802018, 0.021144, -0.065711, -3.755764, -0.021208, -0.065711, -3.750921, -0.011896, -0.040372, -3.750921, -0.011896, -0.09105, -3.694992, -0.024273, -0.09105, -3.69453, -0.034759, -0.065711, -3.750921, -0.011896, -0.09105, -3.739229, 0.010584, -0.101546, -3.696107, 0.001041, -0.101546, -3.727537, 0.033065, -0.09105, -3.697221, 0.026356, -0.09105, -3.696107, 0.001041, -0.101546, -3.727537, 0.033065, -0.040372, -3.739229, 0.010584, -0.029876, -3.696107, 0.001041, -0.029876, -3.750921, -0.011896, -0.040372, -3.694992, -0.024273, -0.040372, -3.696107, 0.001041, -0.029876, -3.750921, -0.011896, -0.040372, -3.755764, -0.021208, -0.065711, -3.69453, -0.034759, -0.065711, -3.694992, -0.024273, -0.09105, -3.640367, -0.007028, -0.09105, -3.634725, -0.015878, -0.065711, -3.694992, -0.024273, -0.09105, -3.696107, 0.001041, -0.101546, -3.65399, 0.014338, -0.101546, -3.697221, 0.026356, -0.09105, -3.667613, 0.035704, -0.09105, -3.65399, 0.014338, -0.101546, -3.697221, 0.026356, -0.040372, -3.696107, 0.001041, -0.029876, -3.65399, 0.014338, -0.029876, -3.694992, -0.024273, -0.040372, -3.640367, -0.007028, -0.040372, -3.65399, 0.014338, -0.029876, -3.694992, -0.024273, -0.040372, -3.69453, -0.034759, -0.065711, -3.634725, -0.015878, -0.065711, -3.640367, -0.007028, -0.09105, -3.601684, 0.03522, -0.09105, -3.592372, 0.030377, -0.065711, -3.640367, -0.007028, -0.09105, -3.65399, 0.014338, -0.101546, -3.624164, 0.046912, -0.101546, -3.65399, 0.014338, -0.101546, -3.667613, 0.035704, -0.09105, -3.646645, 0.058604, -0.09105, -3.65399, 0.014338, -0.029876, -3.624164, 0.046912, -0.029876, -3.646645, 0.058604, -0.040372, -3.640367, -0.007028, -0.040372, -3.601684, 0.03522, -0.040372, -3.624164, 0.046912, -0.029876, -3.640367, -0.007028, -0.040372, -3.634725, -0.015878, -0.065711, -3.592372, 0.030377, -0.065711, -3.601684, 0.03522, -0.09105, -3.589307, 0.091149, -0.09105, -3.578821, 0.091611, -0.065711, -3.624164, 0.046912, -0.101546, -3.614621, 0.090034, -0.101546, -3.589307, 0.091149, -0.09105, -3.646645, 0.058604, -0.09105, -3.639936, 0.088919, -0.09105, -3.614621, 0.090034, -0.101546, -3.646645, 0.058604, -0.040372, -3.624164, 0.046912, -0.029876, -3.614621, 0.090034, -0.029876, -3.624164, 0.046912, -0.029876, -3.601684, 0.03522, -0.040372, -3.589307, 0.091149, -0.040372, -3.601684, 0.03522, -0.040372, -3.592372, 0.030377, -0.065711, -3.578821, 0.091611, -0.065711, -3.578821, 0.091611, -0.065711, -3.589307, 0.091149, -0.09105, -3.606552, 0.145773, -0.09105, -3.589307, 0.091149, -0.09105, -3.614621, 0.090034, -0.101546, -3.627918, 0.132151, -0.101546, -3.614621, 0.090034, -0.101546, -3.639936, 0.088919, -0.09105, -3.649284, 0.118528, -0.09105, -3.614621, 0.090034, -0.029876, -3.627918, 0.132151, -0.029876, -3.649284, 0.118528, -0.040372, -3.589307, 0.091149, -0.040372, -3.606552, 0.145773, -0.040372, -3.627918, 0.132151, -0.029876, -3.578821, 0.091611, -0.065711, -3.597702, 0.151416, -0.065711, -3.606552, 0.145773, -0.040372, -3.606552, 0.145773, -0.09105, -3.6488, 0.184457, -0.09105, -3.643957, 0.193768, -0.065711, -3.627918, 0.132151, -0.101546, -3.660491, 0.161976, -0.101546, -3.6488, 0.184457, -0.09105, -3.649284, 0.118528, -0.09105, -3.672184, 0.139496, -0.09105, -3.660491, 0.161976, -0.101546, -3.649284, 0.118528, -0.040372, -3.627918, 0.132151, -0.029876, -3.660491, 0.161976, -0.029876, -3.627918, 0.132151, -0.029876, -3.606552, 0.145773, -0.040372, -3.6488, 0.184457, -0.040372, -3.606552, 0.145773, -0.040372, -3.597702, 0.151416, -0.065711, -3.643957, 0.193768, -0.065711, -3.6488, 0.184457, -0.09105, -3.704729, 0.196834, -0.09105, -3.70519, 0.20732, -0.065711, -3.6488, 0.184457, -0.09105, -3.660491, 0.161976, -0.101546, -3.703614, 0.171519, -0.101546, -3.672184, 0.139496, -0.09105, -3.702499, 0.146205, -0.09105, -3.703614, 0.171519, -0.101546, -3.672184, 0.139496, -0.040372, -3.660491, 0.161976, -0.029876, -3.703614, 0.171519, -0.029876, -3.6488, 0.184457, -0.040372, -3.704729, 0.196834, -0.040372, -3.703614, 0.171519, -0.029876, -3.6488, 0.184457, -0.040372, -3.643957, 0.193768, -0.065711, -3.70519, 0.20732, -0.065711, -0.571639, 1.030217, 2.035907, -0.571451, 1.025941, 2.022364, -0.53915, 0.533742, 2.178195, 0.334247, 1.083601, 2.016752, 0.334059, 1.087877, 2.030296, 0.36636, 0.595678, 2.186127, -0.539338, 0.538018, 2.191738, -0.53915, 0.533742, 2.178195, 0.366548, 0.591403, 2.172583, 0.36636, 0.595678, 2.186127, 0.334059, 1.087877, 2.030296, -0.571639, 1.030217, 2.035907, -0.571451, 1.025941, 2.022364, 0.334247, 1.083601, 2.016752, 0.366548, 0.591403, 2.172583, 0.397072, 0.545514, 0.977476, 0.380588, 0.919826, 0.869066, -0.251248, 0.892001, 0.869066, -0.251011, 0.886631, 0.850487, 0.380824, 0.914456, 0.850487, 0.397308, 0.540144, 0.958898, -0.240061, 0.500037, 0.962378, 0.397308, 0.540144, 0.958898, 0.412808, 0.188178, 1.060837, 0.412571, 0.193549, 1.079415, 0.397072, 0.545514, 0.977476, -0.240298, 0.505407, 0.980956, -0.240298, 0.505407, 0.980956, -0.251248, 0.892002, 0.869066, -0.251011, 0.886631, 0.850487, 0.380824, 0.914456, 0.850487, 0.380588, 0.919826, 0.869066, 0.397072, 0.545514, 0.977476, -0.487847, 0.125158, 1.067588, 0.412808, 0.188178, 1.060837, 0.412571, 0.193549, 1.079415, 0.397308, 0.540144, 0.958898, 0.397072, 0.545514, 0.977476, 0.412571, 0.193549, 1.079415, -0.240298, 0.505407, 0.980956, -0.240061, 0.500037, 0.962378, -0.487847, 0.125158, 1.067588, -0.195417, 0.298096, 1.326789, -0.182442, 0.281141, 1.386962, -0.016059, 0.333584, 1.384197, -0.182442, 0.281141, 1.386962, -0.150799, 0.232993, 1.414477, -0.013535, 0.276259, 1.412196, -0.150799, 0.232993, 1.414477, -0.119025, 0.181857, 1.393217, -0.010878, 0.215944, 1.39142, -0.010561, 0.208728, 1.273666, -0.118707, 0.174641, 1.275463, -0.15035, 0.222789, 1.247947, -0.15035, 0.222789, 1.247947, -0.182124, 0.273925, 1.269207, -0.015741, 0.326368, 1.266443, -0.015741, 0.326368, 1.266443, -0.182124, 0.273925, 1.269207, -0.195417, 0.298096, 1.326789, -0.321794, 0.160335, 1.33489, -0.300277, 0.152692, 1.394515, -0.182442, 0.281141, 1.386962, -0.182442, 0.281141, 1.386962, -0.300277, 0.152692, 1.394515, -0.248012, 0.127024, 1.420708, -0.248012, 0.127024, 1.420708, -0.195616, 0.098367, 1.398126, -0.119025, 0.181857, 1.393217, -0.118707, 0.174641, 1.275463, -0.195298, 0.091151, 1.280372, -0.247563, 0.116819, 1.254179, -0.247563, 0.116819, 1.254179, -0.299959, 0.145476, 1.276761, -0.182124, 0.273925, 1.269207, -0.182124, 0.273925, 1.269207, -0.299959, 0.145476, 1.276761, -0.321794, 0.160335, 1.33489, -0.362241, -0.022028, 1.345956, -0.33799, -0.017345, 1.404833, -0.300277, 0.152692, 1.394515, -0.300277, 0.152692, 1.394515, -0.33799, -0.017345, 1.404833, -0.279125, -0.013255, 1.42922, -0.279125, -0.013255, 1.42922, -0.220129, -0.012155, 1.404833, -0.195616, 0.098367, 1.398126, -0.195298, 0.091151, 1.280372, -0.219811, -0.019371, 1.287078, -0.278676, -0.02346, 1.262691, -0.247563, 0.116819, 1.254179, -0.278676, -0.02346, 1.262691, -0.337672, -0.024561, 1.287078, -0.299959, 0.145476, 1.276761, -0.337672, -0.024561, 1.287078, -0.362241, -0.022028, 1.345956, -0.362241, -0.022028, 1.345956, -0.30592, -0.200129, 1.357021, -0.285476, -0.183408, 1.415151, -0.33799, -0.017345, 1.404833, -0.285476, -0.183408, 1.415151, -0.235801, -0.150256, 1.437733, -0.235801, -0.150256, 1.437733, -0.185995, -0.120093, 1.411539, -0.220129, -0.012155, 1.404833, -0.185678, -0.127309, 1.293785, -0.235352, -0.160461, 1.271203, -0.278676, -0.02346, 1.262691, -0.278676, -0.02346, 1.262691, -0.235352, -0.160461, 1.271203, -0.285158, -0.190624, 1.297396, -0.285158, -0.190624, 1.297396, -0.30592, -0.200129, 1.357021, -0.362241, -0.022028, 1.345956, -0.30592, -0.200129, 1.357021, -0.167923, -0.326247, 1.365122, -0.156806, -0.301002, 1.422704, -0.156806, -0.301002, 1.422704, -0.12965, -0.24727, 1.443964, -0.235801, -0.150256, 1.437733, -0.235801, -0.150256, 1.437733, -0.12965, -0.24727, 1.443964, -0.102362, -0.196527, 1.416449, -0.102044, -0.203743, 1.298695, -0.1292, -0.257475, 1.277434, -0.235352, -0.160461, 1.271203, -0.235352, -0.160461, 1.271203, -0.1292, -0.257475, 1.277434, -0.156488, -0.308218, 1.30495, -0.156488, -0.308218, 1.30495, -0.167923, -0.326247, 1.365122, -0.30592, -0.200129, 1.357021, -0.167923, -0.326247, 1.365122, 0.014775, -0.366588, 1.368087, 0.013543, -0.338616, 1.425468, 0.013543, -0.338616, 1.425468, 0.010887, -0.278302, 1.446245, -0.12965, -0.24727, 1.443964, 0.010887, -0.278302, 1.446245, 0.008363, -0.220976, 1.418246, -0.102362, -0.196527, 1.416449, 0.00868, -0.228192, 1.300492, 0.011336, -0.288507, 1.279715, -0.1292, -0.257475, 1.277434, -0.1292, -0.257475, 1.277434, 0.011336, -0.288507, 1.279715, 0.013861, -0.345832, 1.307714, 0.013861, -0.345832, 1.307714, 0.014775, -0.366588, 1.368087, -0.167923, -0.326247, 1.365122, 0.193219, -0.310343, 1.365122, 0.179926, -0.286173, 1.422704, 0.013543, -0.338616, 1.425468, 0.013543, -0.338616, 1.425468, 0.179926, -0.286173, 1.422704, 0.148152, -0.235037, 1.443964, 0.148152, -0.235037, 1.443964, 0.116509, -0.186889, 1.416449, 0.008363, -0.220976, 1.418246, 0.116827, -0.194105, 1.298695, 0.148601, -0.245241, 1.277434, 0.011336, -0.288507, 1.279715, 0.148601, -0.245241, 1.277434, 0.180244, -0.293389, 1.30495, 0.013861, -0.345832, 1.307714, 0.013861, -0.345832, 1.307714, 0.180244, -0.293389, 1.30495, 0.193219, -0.310343, 1.365122, 0.319596, -0.172583, 1.357022, 0.297761, -0.157724, 1.415151, 0.179926, -0.286173, 1.422704, 0.179926, -0.286173, 1.422704, 0.297761, -0.157724, 1.415151, 0.245365, -0.129067, 1.437733, 0.245365, -0.129067, 1.437733, 0.1931, -0.103399, 1.411539, 0.116509, -0.186889, 1.416449, 0.116827, -0.194105, 1.298695, 0.193418, -0.110615, 1.293785, 0.245814, -0.139272, 1.271203, 0.245814, -0.139272, 1.271203, 0.298079, -0.16494, 1.297397, 0.180244, -0.293389, 1.30495, 0.180244, -0.293389, 1.30495, 0.298079, -0.16494, 1.297397, 0.319596, -0.172583, 1.357022, 0.360043, 0.00978, 1.345956, 0.335474, 0.012313, 1.404833, 0.297761, -0.157724, 1.415151, 0.297761, -0.157724, 1.415151, 0.335474, 0.012313, 1.404833, 0.276477, 0.011212, 1.42922, 0.245365, -0.129067, 1.437733, 0.276477, 0.011212, 1.42922, 0.217613, 0.007122, 1.404833, 0.193418, -0.110615, 1.293785, 0.217931, -9.3e-05, 1.287079, 0.276927, 0.001007, 1.262691, 0.276927, 0.001007, 1.262691, 0.335792, 0.005097, 1.287079, 0.298079, -0.16494, 1.297397, 0.298079, -0.16494, 1.297397, 0.335792, 0.005097, 1.287079, 0.360043, 0.00978, 1.345956, 0.360043, 0.00978, 1.345956, 0.303722, 0.187881, 1.33489, 0.28296, 0.178376, 1.394515, 0.28296, 0.178376, 1.394515, 0.233154, 0.148213, 1.420708, 0.276477, 0.011212, 1.42922, 0.276477, 0.011212, 1.42922, 0.233154, 0.148213, 1.420708, 0.183479, 0.115061, 1.398126, 0.183797, 0.107845, 1.280372, 0.233603, 0.138009, 1.254179, 0.276927, 0.001007, 1.262691, 0.276927, 0.001007, 1.262691, 0.233603, 0.138009, 1.254179, 0.283278, 0.17116, 1.276761, 0.283278, 0.17116, 1.276761, 0.303722, 0.187881, 1.33489, 0.360043, 0.00978, 1.345956, 0.165725, 0.313999, 1.326789, 0.15429, 0.29597, 1.386962, 0.28296, 0.178376, 1.394515, 0.15429, 0.29597, 1.386962, 0.127002, 0.245227, 1.414477, 0.233154, 0.148213, 1.420708, 0.233154, 0.148213, 1.420708, 0.127002, 0.245227, 1.414477, 0.099846, 0.191495, 1.393217, 0.100164, 0.18428, 1.275463, 0.127452, 0.235022, 1.247947, 0.233603, 0.138009, 1.254179, 0.233603, 0.138009, 1.254179, 0.127452, 0.235022, 1.247947, 0.154608, 0.288754, 1.269207, 0.154608, 0.288754, 1.269207, 0.165725, 0.313999, 1.326789, 0.303722, 0.187881, 1.33489, -0.016973, 0.35434, 1.323824, -0.016059, 0.333584, 1.384197, 0.15429, 0.29597, 1.386962, 0.15429, 0.29597, 1.386962, -0.016059, 0.333584, 1.384197, -0.013535, 0.276259, 1.412196, 0.127002, 0.245227, 1.414477, -0.013535, 0.276259, 1.412196, -0.010878, 0.215944, 1.39142, -0.010561, 0.208728, 1.273666, -0.013085, 0.266054, 1.245667, 0.127452, 0.235022, 1.247947, -0.013085, 0.266054, 1.245667, -0.015741, 0.326368, 1.266443, 0.154608, 0.288754, 1.269207, -0.015741, 0.326368, 1.266443, -0.016973, 0.35434, 1.323824, 0.165725, 0.313999, 1.326789, -0.10159, 0.897246, 1.103788, -0.071382, 0.893425, 1.052063, -0.033688, 0.037488, 1.13731, -0.033688, 0.037488, 1.13731, -0.071382, 0.893425, 1.052063, -0.011417, 0.896066, 1.052063, -0.011417, 0.896066, 1.052063, 0.018339, 0.902528, 1.103789, 0.056032, 0.046591, 1.189036, 0.056032, 0.046591, 1.189036, 0.018339, 0.902528, 1.103789, -0.01187, 0.906349, 1.155514, -0.01187, 0.906349, 1.155514, -0.071835, 0.903708, 1.155514, -0.034141, 0.047771, 1.240762, -0.034141, 0.047771, 1.240762, -0.071835, 0.903708, 1.155514, -0.10159, 0.897246, 1.103788, -0.094219, -0.013225, 1.307315, -0.051522, 0.068712, 1.302451, -0.051027, 0.05749, 1.117748, -0.051522, 0.068712, 1.302451, 0.040911, 0.072782, 1.302451, 0.041405, 0.06156, 1.117748, 0.041405, 0.06156, 1.117748, 0.040911, 0.072782, 1.302451, 0.090645, -0.005084, 1.307315, 0.09114, -0.016306, 1.122612, 0.090645, -0.005084, 1.307315, 0.047948, -0.08702, 1.312178, 0.047948, -0.08702, 1.312178, -0.044484, -0.091091, 1.312178, -0.04399, -0.102313, 1.127476, -0.044484, -0.091091, 1.312178, -0.094219, -0.013225, 1.307315, -0.093725, -0.024447, 1.122612, -0.04399, -0.102313, 1.127476, -0.093725, -0.024447, 1.122612, -0.051027, 0.05749, 1.117748, -0.051027, 0.05749, 1.117748, 0.041405, 0.06156, 1.117748, -0.04399, -0.102313, 1.127476, 0.09114, -0.016306, 1.122612, 0.048442, -0.098242, 1.127476, -0.04399, -0.102313, 1.127476, -0.539149, 0.533742, -2.178194, -0.57145, 1.025941, -2.022363, -0.571638, 1.030217, -2.035907, 0.366361, 0.595678, -2.186126, 0.33406, 1.087877, -2.030295, 0.334248, 1.083601, -2.016752, -0.539338, 0.538018, -2.191738, 0.366361, 0.595678, -2.186126, 0.366549, 0.591403, -2.172583, 0.366361, 0.595678, -2.186126, -0.539338, 0.538018, -2.191738, -0.571638, 1.030217, -2.035907, 0.366549, 0.591403, -2.172583, 0.334248, 1.083601, -2.016752, -0.57145, 1.025941, -2.022363, 0.397072, 0.545514, -0.977476, -0.240297, 0.505407, -0.980956, -0.251247, 0.892001, -0.869065, 0.397308, 0.540144, -0.958898, 0.380825, 0.914456, -0.850487, -0.251011, 0.886631, -0.850487, 0.412808, 0.188178, -1.060836, 0.397308, 0.540144, -0.958898, -0.240061, 0.500037, -0.962378, 0.412572, 0.193549, -1.079414, -0.488083, 0.130528, -1.086166, -0.240297, 0.505407, -0.980956, -0.240297, 0.505407, -0.980956, -0.240061, 0.500037, -0.962378, -0.251011, 0.886631, -0.850487, 0.397072, 0.545514, -0.977476, 0.380588, 0.919826, -0.869065, 0.380825, 0.914456, -0.850487, 0.412572, 0.193549, -1.079414, 0.412808, 0.188178, -1.060836, -0.487846, 0.125158, -1.067588, 0.412572, 0.193549, -1.079414, 0.397072, 0.545514, -0.977476, 0.397308, 0.540144, -0.958898, -0.487846, 0.125158, -1.067588, -0.240061, 0.500037, -0.962378, -0.240297, 0.505407, -0.980956, -0.016058, 0.333584, -1.384197, -0.182442, 0.281141, -1.386961, -0.195417, 0.298096, -1.326789, -0.013534, 0.276259, -1.412195, -0.150799, 0.232993, -1.414476, -0.182442, 0.281141, -1.386961, -0.010878, 0.215944, -1.391419, -0.119025, 0.181857, -1.393216, -0.150799, 0.232993, -1.414476, -0.01056, 0.208728, -1.273665, -0.013085, 0.266054, -1.245666, -0.150349, 0.222789, -1.247947, -0.015741, 0.326368, -1.266442, -0.182124, 0.273925, -1.269207, -0.150349, 0.222789, -1.247947, -0.015741, 0.326368, -1.266442, -0.016973, 0.35434, -1.323824, -0.195417, 0.298096, -1.326789, -0.182442, 0.281141, -1.386961, -0.300277, 0.152692, -1.394514, -0.321793, 0.160335, -1.334889, -0.182442, 0.281141, -1.386961, -0.150799, 0.232993, -1.414476, -0.248012, 0.127024, -1.420708, -0.119025, 0.181857, -1.393216, -0.195615, 0.098367, -1.398126, -0.248012, 0.127024, -1.420708, -0.118707, 0.174641, -1.275462, -0.150349, 0.222789, -1.247947, -0.247562, 0.116819, -1.254178, -0.182124, 0.273925, -1.269207, -0.299959, 0.145476, -1.27676, -0.247562, 0.116819, -1.254178, -0.182124, 0.273925, -1.269207, -0.195417, 0.298096, -1.326789, -0.321793, 0.160335, -1.334889, -0.300277, 0.152692, -1.394514, -0.337989, -0.017345, -1.404832, -0.36224, -0.022028, -1.345955, -0.300277, 0.152692, -1.394514, -0.248012, 0.127024, -1.420708, -0.279125, -0.013255, -1.42922, -0.195615, 0.098367, -1.398126, -0.220128, -0.012155, -1.404832, -0.279125, -0.013255, -1.42922, -0.195298, 0.091151, -1.280372, -0.247562, 0.116819, -1.254178, -0.278675, -0.02346, -1.26269, -0.247562, 0.116819, -1.254178, -0.299959, 0.145476, -1.27676, -0.337672, -0.024561, -1.287078, -0.299959, 0.145476, -1.27676, -0.321793, 0.160335, -1.334889, -0.36224, -0.022028, -1.345955, -0.36224, -0.022028, -1.345955, -0.337989, -0.017345, -1.404832, -0.285476, -0.183408, -1.41515, -0.337989, -0.017345, -1.404832, -0.279125, -0.013255, -1.42922, -0.235801, -0.150256, -1.437732, -0.220128, -0.012155, -1.404832, -0.185995, -0.120093, -1.411539, -0.235801, -0.150256, -1.437732, -0.278675, -0.02346, -1.26269, -0.235351, -0.160461, -1.271203, -0.185677, -0.127309, -1.293785, -0.278675, -0.02346, -1.26269, -0.337672, -0.024561, -1.287078, -0.285158, -0.190624, -1.297396, -0.36224, -0.022028, -1.345955, -0.305919, -0.200129, -1.357021, -0.285158, -0.190624, -1.297396, -0.305919, -0.200129, -1.357021, -0.285476, -0.183408, -1.41515, -0.156805, -0.301002, -1.422704, -0.235801, -0.150256, -1.437732, -0.129649, -0.24727, -1.443964, -0.156805, -0.301002, -1.422704, -0.235801, -0.150256, -1.437732, -0.185995, -0.120093, -1.411539, -0.102361, -0.196527, -1.416448, -0.235351, -0.160461, -1.271203, -0.1292, -0.257475, -1.277434, -0.102043, -0.203743, -1.298694, -0.235351, -0.160461, -1.271203, -0.285158, -0.190624, -1.297396, -0.156488, -0.308218, -1.304949, -0.305919, -0.200129, -1.357021, -0.167922, -0.326247, -1.365122, -0.156488, -0.308218, -1.304949, -0.167922, -0.326247, -1.365122, -0.156805, -0.301002, -1.422704, 0.013544, -0.338616, -1.425468, -0.129649, -0.24727, -1.443964, 0.010887, -0.278302, -1.446244, 0.013544, -0.338616, -1.425468, -0.102361, -0.196527, -1.416448, 0.008363, -0.220976, -1.418245, 0.010887, -0.278302, -1.446244, -0.1292, -0.257475, -1.277434, 0.011337, -0.288507, -1.279715, 0.008681, -0.228192, -1.300491, -0.1292, -0.257475, -1.277434, -0.156488, -0.308218, -1.304949, 0.013861, -0.345832, -1.307714, -0.167922, -0.326247, -1.365122, 0.014776, -0.366588, -1.368087, 0.013861, -0.345832, -1.307714, 0.013544, -0.338616, -1.425468, 0.179927, -0.286173, -1.422704, 0.19322, -0.310343, -1.365122, 0.013544, -0.338616, -1.425468, 0.010887, -0.278302, -1.446244, 0.148152, -0.235037, -1.443964, 0.008363, -0.220976, -1.418245, 0.11651, -0.186889, -1.416448, 0.148152, -0.235037, -1.443964, 0.011337, -0.288507, -1.279715, 0.148602, -0.245241, -1.277434, 0.116827, -0.194105, -1.298694, 0.013861, -0.345832, -1.307714, 0.180245, -0.293389, -1.304949, 0.148602, -0.245241, -1.277434, 0.013861, -0.345832, -1.307714, 0.014776, -0.366588, -1.368087, 0.19322, -0.310343, -1.365122, 0.179927, -0.286173, -1.422704, 0.297762, -0.157724, -1.41515, 0.319597, -0.172583, -1.357021, 0.179927, -0.286173, -1.422704, 0.148152, -0.235037, -1.443964, 0.245365, -0.129067, -1.437732, 0.11651, -0.186889, -1.416448, 0.1931, -0.103399, -1.411539, 0.245365, -0.129067, -1.437732, 0.116827, -0.194105, -1.298694, 0.148602, -0.245241, -1.277434, 0.245815, -0.139272, -1.271203, 0.180245, -0.293389, -1.304949, 0.29808, -0.16494, -1.297396, 0.245815, -0.139272, -1.271203, 0.180245, -0.293389, -1.304949, 0.19322, -0.310343, -1.365122, 0.319597, -0.172583, -1.357021, 0.297762, -0.157724, -1.41515, 0.335475, 0.012313, -1.404832, 0.360043, 0.00978, -1.345955, 0.297762, -0.157724, -1.41515, 0.245365, -0.129067, -1.437732, 0.276478, 0.011212, -1.42922, 0.245365, -0.129067, -1.437732, 0.1931, -0.103399, -1.411539, 0.217613, 0.007122, -1.404832, 0.193418, -0.110615, -1.293785, 0.245815, -0.139272, -1.271203, 0.276928, 0.001007, -1.262691, 0.29808, -0.16494, -1.297396, 0.335793, 0.005097, -1.287078, 0.276928, 0.001007, -1.262691, 0.29808, -0.16494, -1.297396, 0.319597, -0.172583, -1.357021, 0.360043, 0.00978, -1.345955, 0.335475, 0.012313, -1.404832, 0.282961, 0.178376, -1.394514, 0.303723, 0.187881, -1.334889, 0.276478, 0.011212, -1.42922, 0.233154, 0.148213, -1.420708, 0.282961, 0.178376, -1.394514, 0.276478, 0.011212, -1.42922, 0.217613, 0.007122, -1.404832, 0.18348, 0.115061, -1.398126, 0.276928, 0.001007, -1.262691, 0.233604, 0.138009, -1.254178, 0.183798, 0.107845, -1.280372, 0.276928, 0.001007, -1.262691, 0.335793, 0.005097, -1.287078, 0.283279, 0.17116, -1.27676, 0.360043, 0.00978, -1.345955, 0.303723, 0.187881, -1.334889, 0.283279, 0.17116, -1.27676, 0.282961, 0.178376, -1.394514, 0.15429, 0.29597, -1.386961, 0.165725, 0.313999, -1.326789, 0.233154, 0.148213, -1.420708, 0.127003, 0.245227, -1.414476, 0.15429, 0.29597, -1.386961, 0.233154, 0.148213, -1.420708, 0.18348, 0.115061, -1.398126, 0.099847, 0.191495, -1.393216, 0.233604, 0.138009, -1.254178, 0.127452, 0.235022, -1.247947, 0.100164, 0.18428, -1.275462, 0.233604, 0.138009, -1.254178, 0.283279, 0.17116, -1.27676, 0.154608, 0.288754, -1.269207, 0.303723, 0.187881, -1.334889, 0.165725, 0.313999, -1.326789, 0.154608, 0.288754, -1.269207, 0.15429, 0.29597, -1.386961, -0.016058, 0.333584, -1.384197, -0.016973, 0.35434, -1.323824, 0.15429, 0.29597, -1.386961, 0.127003, 0.245227, -1.414476, -0.013534, 0.276259, -1.412195, 0.127003, 0.245227, -1.414476, 0.099847, 0.191495, -1.393216, -0.010878, 0.215944, -1.391419, 0.127452, 0.235022, -1.247947, -0.013085, 0.266054, -1.245666, -0.01056, 0.208728, -1.273665, 0.154608, 0.288754, -1.269207, -0.015741, 0.326368, -1.266442, -0.013085, 0.266054, -1.245666, 0.165725, 0.313999, -1.326789, -0.016973, 0.35434, -1.323824, -0.015741, 0.326368, -1.266442, -0.033688, 0.037488, -1.13731, -0.071381, 0.893425, -1.052062, -0.10159, 0.897246, -1.103788, -0.033688, 0.037488, -1.13731, 0.026277, 0.040129, -1.13731, -0.011417, 0.896066, -1.052062, 0.056033, 0.046591, -1.189035, 0.018339, 0.902528, -1.103788, -0.011417, 0.896066, -1.052062, 0.056033, 0.046591, -1.189035, 0.025824, 0.050412, -1.240761, -0.011869, 0.906349, -1.155514, -0.034141, 0.047771, -1.240761, -0.071834, 0.903708, -1.155514, -0.011869, 0.906349, -1.155514, -0.034141, 0.047771, -1.240761, -0.063897, 0.041309, -1.189035, -0.10159, 0.897246, -1.103788, -0.051027, 0.05749, -1.117747, -0.051521, 0.068712, -1.30245, -0.094219, -0.013225, -1.307314, 0.041405, 0.06156, -1.117747, 0.040911, 0.072782, -1.30245, -0.051521, 0.068712, -1.30245, 0.041405, 0.06156, -1.117747, 0.09114, -0.016306, -1.122611, 0.090646, -0.005084, -1.307314, 0.09114, -0.016306, -1.122611, 0.048443, -0.098242, -1.127476, 0.047948, -0.08702, -1.312178, -0.04399, -0.102313, -1.127476, -0.044484, -0.091091, -1.312178, 0.047948, -0.08702, -1.312178, -0.04399, -0.102313, -1.127476, -0.093725, -0.024447, -1.122611, -0.094219, -0.013225, -1.307314, -0.051027, 0.05749, -1.117748, -0.093725, -0.024447, -1.122611, -0.04399, -0.102313, -1.127476, -0.04399, -0.102313, -1.127476, 0.048443, -0.098242, -1.127476, 0.09114, -0.016306, -1.122612, 0.09114, -0.016306, -1.122612, 0.041405, 0.06156, -1.117748, -0.04399, -0.102313, -1.127476, 3.879606, 0.244354, 1e-06, 3.818022, 0.967583, 1e-06, 3.839262, 0.969392, -0.036921, 3.839262, 0.969392, -0.036921, 3.881742, 0.973009, -0.036921, 3.943325, 0.249779, -0.036921, 3.943325, 0.249779, -0.036921, 3.881742, 0.973009, -0.036921, 3.902982, 0.974817, 1e-06, 3.902982, 0.974817, 1e-06, 3.881742, 0.973009, 0.036922, 3.943325, 0.249779, 0.036923, 3.881742, 0.973009, 0.036922, 3.839262, 0.969392, 0.036922, 3.900845, 0.246162, 0.036922, 3.839262, 0.969392, 0.036922, 3.818022, 0.967583, 1e-06, 3.879606, 0.244354, 1e-06, 3.968907, 0.198026, 0.147181, 3.964153, 0.239415, 0.133771, 3.878291, 0.232104, 0.133771, 3.873927, 0.189938, -0.087716, 3.868504, 0.253627, -0.087716, 3.878291, 0.232104, -0.13377, 3.878291, 0.232104, -0.13377, 3.964153, 0.239415, -0.13377, 3.968907, 0.198026, -0.14718, 3.975583, 0.198594, 0.087717, 3.97016, 0.262283, 0.087717, 3.964153, 0.239415, 0.133771, 3.975583, 0.198594, 0.087717, 3.98091, -0.114641, 0.056459, 3.921637, -0.119688, 0.056459, 3.878291, 0.232104, 0.133771, 3.964153, 0.239415, 0.133771, 3.97016, 0.262283, 0.087717, 3.878291, 0.232104, -0.13377, 3.868504, 0.253627, -0.087716, 3.97016, 0.262283, -0.087716, 3.868504, 0.253627, 0.087717, 3.97016, 0.262283, 0.087717, 3.97016, 0.262283, -0.087716, 3.873927, 0.189938, 0.087717, 3.921637, -0.119688, 0.056459, 3.925529, -0.119357, 0.091627, 3.873927, 0.189938, 0.087717, 3.873927, 0.189938, -0.087716, 3.975583, 0.198594, -0.087716, 3.964153, 0.239415, -0.13377, 3.97016, 0.262283, -0.087716, 3.975583, 0.198594, -0.087716, 3.97016, 0.262283, -0.087716, 3.97016, 0.262283, 0.087717, 3.975583, 0.198594, 0.087717, 3.878291, 0.232104, 0.133771, 3.868504, 0.253627, 0.087717, 3.873927, 0.189938, 0.087717, 3.868504, 0.253627, 0.087717, 3.868504, 0.253627, -0.087716, 3.873927, 0.189938, -0.087716, 3.921637, -0.119688, -0.056457, 3.925529, -0.119357, -0.091626, 3.977018, -0.114972, -0.091626, 3.925529, -0.119357, 0.091627, 3.921637, -0.119688, 0.056459, 3.98091, -0.114641, 0.056459, 3.968907, 0.198026, 0.147181, 3.880602, 0.190507, 0.147181, 3.925529, -0.119357, 0.091627, 3.968907, 0.198026, -0.14718, 3.977018, -0.114972, -0.091626, 3.925529, -0.119357, -0.091626, 3.975583, 0.198594, 0.087717, 3.968907, 0.198026, 0.147181, 3.977018, -0.114972, 0.091627, 3.975583, 0.198594, -0.087716, 3.873927, 0.189938, -0.087716, 3.921637, -0.119688, -0.056457, 3.873927, 0.189938, -0.087716, 3.880602, 0.190507, -0.14718, 3.925529, -0.119357, -0.091626, 3.975583, 0.198594, -0.087716, 3.98091, -0.114641, -0.056457, 3.977018, -0.114972, -0.091626, 3.812544, 0.115168, 0.049391, 3.840779, 0.074643, 0.06985, 3.935237, 0.108775, 0.06985, 3.840779, 0.074643, 0.06985, 3.869015, 0.034119, 0.049392, 3.939427, 0.059562, 0.049392, 3.869015, 0.034119, -0.04939, 3.840779, 0.074643, -0.069849, 3.935237, 0.108775, -0.069848, 3.935237, 0.108775, -0.069848, 3.840779, 0.074643, -0.069849, 3.812544, 0.115168, -0.04939, 3.731328, 0.018833, 0.049391, 3.776042, -0.002144, 0.06985, 3.840779, 0.074643, 0.06985, 3.840779, 0.074643, 0.06985, 3.776042, -0.002144, 0.06985, 3.820758, -0.023122, 0.049392, 3.820758, -0.023122, -0.04939, 3.776043, -0.002144, -0.069849, 3.840779, 0.074643, -0.069849, 3.840779, 0.074643, -0.069849, 3.776043, -0.002144, -0.069849, 3.731328, 0.018833, -0.04939, 3.720038, 0.017759, 1e-06, 3.688776, -0.106939, 1e-06, 3.70916, -0.105203, 0.049392, 3.70916, -0.105203, 0.049392, 3.758373, -0.101013, 0.06985, 3.776042, -0.002144, 0.06985, 3.758373, -0.101013, 0.06985, 3.807585, -0.096822, 0.049392, 3.820758, -0.023122, 0.049392, 3.807585, -0.096822, -0.04939, 3.758373, -0.101013, -0.069849, 3.776043, -0.002144, -0.069849, 3.776043, -0.002144, -0.069849, 3.758373, -0.101013, -0.069849, 3.70916, -0.105203, -0.04939, 3.70916, -0.105203, -0.04939, 3.688776, -0.106939, 1e-06, 3.720038, 0.017759, 1e-06, 3.688776, -0.106939, 1e-06, 3.735194, -0.235401, 1e-06, 3.75198, -0.223705, 0.049392, 3.75198, -0.223705, 0.049392, 3.792504, -0.19547, 0.06985, 3.758373, -0.101013, 0.06985, 3.792504, -0.19547, 0.06985, 3.833029, -0.167235, 0.049392, 3.807585, -0.096822, 0.049392, 3.807585, -0.096822, -0.04939, 3.833029, -0.167235, -0.04939, 3.792504, -0.19547, -0.069848, 3.758373, -0.101013, -0.069849, 3.792504, -0.19547, -0.069848, 3.75198, -0.223705, -0.04939, 3.75198, -0.223705, -0.04939, 3.735194, -0.235401, 1e-06, 3.688776, -0.106939, 1e-06, 3.735194, -0.235401, 1e-06, 3.839626, -0.323443, 1e-06, 3.848315, -0.304922, 0.049392, 3.848315, -0.304922, 0.049392, 3.869292, -0.260207, 0.06985, 3.792504, -0.19547, 0.06985, 3.792504, -0.19547, 0.06985, 3.869292, -0.260207, 0.06985, 3.890269, -0.215492, 0.049392, 3.890269, -0.215492, -0.04939, 3.869292, -0.260207, -0.069848, 3.792504, -0.19547, -0.069848, 3.792504, -0.19547, -0.069848, 3.869292, -0.260207, -0.069848, 3.848315, -0.304922, -0.04939, 3.848315, -0.304922, -0.04939, 3.839626, -0.323443, 1e-06, 3.735194, -0.235401, 1e-06, 3.839626, -0.323443, 1e-06, 3.974087, -0.347474, 1e-06, 3.972351, -0.32709, 0.049392, 3.972351, -0.32709, 0.049392, 3.96816, -0.277877, 0.06985, 3.869292, -0.260207, 0.06985, 3.869292, -0.260207, 0.06985, 3.96816, -0.277877, 0.06985, 3.96397, -0.228664, 0.049392, 3.96397, -0.228664, -0.04939, 3.96816, -0.277877, -0.069848, 3.869292, -0.260207, -0.069848, 3.869292, -0.260207, -0.069848, 3.96816, -0.277877, -0.069848, 3.972351, -0.32709, -0.04939, 3.972351, -0.32709, -0.04939, 3.974087, -0.347474, 1e-06, 3.839626, -0.323443, 1e-06, 3.974087, -0.347474, 1e-06, 4.102549, -0.301055, 1e-06, 4.090853, -0.28427, 0.049392, 4.090853, -0.28427, 0.049392, 4.062618, -0.243745, 0.06985, 3.96816, -0.277877, 0.06985, 3.96816, -0.277877, 0.06985, 4.062618, -0.243745, 0.06985, 4.034382, -0.203221, 0.049392, 3.96397, -0.228664, -0.04939, 4.034382, -0.203221, -0.04939, 4.062618, -0.243745, -0.069848, 4.062618, -0.243745, -0.069848, 4.090853, -0.28427, -0.04939, 3.972351, -0.32709, -0.04939, 4.090853, -0.28427, -0.04939, 4.102549, -0.301055, 1e-06, 3.974087, -0.347474, 1e-06, 4.190591, -0.196624, 1e-06, 4.17207, -0.187935, 0.049392, 4.090853, -0.28427, 0.049392, 4.090853, -0.28427, 0.049392, 4.17207, -0.187935, 0.049392, 4.127355, -0.166958, 0.06985, 4.062618, -0.243745, 0.06985, 4.127355, -0.166958, 0.06985, 4.08264, -0.14598, 0.049392, 4.08264, -0.14598, -0.04939, 4.127355, -0.166958, -0.069848, 4.062618, -0.243745, -0.069848, 4.127355, -0.166958, -0.069848, 4.17207, -0.187935, -0.04939, 4.090853, -0.28427, -0.04939, 4.090853, -0.28427, -0.04939, 4.17207, -0.187935, -0.04939, 4.190591, -0.196624, 1e-06, 4.190591, -0.196624, 1e-06, 4.214622, -0.062163, 1e-06, 4.194237, -0.063899, 0.049392, 4.194237, -0.063899, 0.049392, 4.145024, -0.068089, 0.06985, 4.127355, -0.166958, 0.06985, 4.145024, -0.068089, 0.06985, 4.095812, -0.07228, 0.049392, 4.08264, -0.14598, 0.049392, 4.08264, -0.14598, -0.04939, 4.095812, -0.07228, -0.04939, 4.145024, -0.068089, -0.069848, 4.127355, -0.166958, -0.069848, 4.145024, -0.068089, -0.069848, 4.194237, -0.063899, -0.04939, 4.194237, -0.063899, -0.04939, 4.214622, -0.062163, 1e-06, 4.190591, -0.196624, 1e-06, 4.151417, 0.054604, 0.049392, 4.110893, 0.026368, 0.06985, 4.145024, -0.068089, 0.06985, 4.145024, -0.068089, 0.06985, 4.110893, 0.026368, 0.06985, 4.070369, -0.001867, 0.049392, 4.070369, -0.001867, -0.04939, 4.110893, 0.026368, -0.069848, 4.145024, -0.068089, -0.069848, 4.145024, -0.068089, -0.069848, 4.110893, 0.026368, -0.069848, 4.151417, 0.054604, -0.04939, 4.151417, 0.054604, 0.049392, 4.055082, 0.13582, 0.049392, 4.034106, 0.091105, 0.06985, 4.110893, 0.026368, 0.06985, 4.034106, 0.091105, 0.06985, 4.013128, 0.04639, 0.049392, 4.013128, 0.04639, -0.04939, 4.034106, 0.091105, -0.069848, 4.110893, 0.026368, -0.069848, 4.034106, 0.091105, -0.069848, 4.055082, 0.13582, -0.04939, 4.151417, 0.054604, -0.04939, 4.055082, 0.13582, 0.049392, 3.931047, 0.157988, 0.049392, 3.935237, 0.108775, 0.06985, 3.935237, 0.108775, 0.06985, 3.939427, 0.059562, 0.049392, 4.013128, 0.04639, 0.049392, 4.013128, 0.04639, -0.04939, 3.939428, 0.059562, -0.04939, 3.935237, 0.108775, -0.069848, 3.935237, 0.108775, -0.069848, 3.931047, 0.157988, -0.04939, 4.055082, 0.13582, -0.04939, 3.788283, 0.148574, 1e-06, 3.81162, 0.115512, 0.081883, 3.930474, 0.158792, 0.081883, 3.930474, 0.158792, -0.081882, 3.81162, 0.115512, -0.081882, 3.788283, 0.148574, 1e-06, 3.788283, 0.148574, 1e-06, 3.68278, 0.015261, 1e-06, 3.731514, 0.018384, 0.081883, 3.731514, 0.018384, -0.081882, 3.68278, 0.015261, 1e-06, 3.788283, 0.148574, 1e-06, 4.186562, 0.077315, 1e-06, 4.152622, 0.054495, 0.081883, 4.195903, -0.064359, 0.081883, 4.195903, -0.064359, -0.081882, 4.152622, 0.054495, -0.081882, 4.186562, 0.077315, 1e-06, 4.072538, 0.172778, 1e-06, 4.054935, 0.13623, 0.081883, 4.152622, 0.054495, 0.081883, 4.152622, 0.054495, -0.081882, 4.054935, 0.13623, -0.081882, 4.072538, 0.172778, 1e-06, 3.927138, 0.199106, 1e-06, 3.930474, 0.158792, 0.081883, 4.054935, 0.13623, 0.081883, 4.054935, 0.13623, -0.081882, 3.930474, 0.158792, -0.081882, 3.927138, 0.199106, 1e-06, 3.731328, 0.018833, 0.049391, 3.731514, 0.018384, 0.081883, 3.68278, 0.015261, 1e-06, 3.731328, 0.018833, -0.04939, 3.720038, 0.017759, 1e-06, 3.68278, 0.015261, 1e-06, 4.194237, -0.063899, -0.04939, 4.195903, -0.064359, -0.081882, 4.242948, -0.060353, 1e-06, 4.194237, -0.063899, 0.049392, 4.214622, -0.062163, 1e-06, 4.242948, -0.060353, 1e-06, 4.151417, 0.054604, 0.049392, 4.152622, 0.054495, 0.081883, 4.054935, 0.13623, 0.081883, 3.812544, 0.115168, -0.04939, 3.81162, 0.115512, -0.081882, 3.930474, 0.158793, -0.081882, 3.812544, 0.115168, 0.049391, 3.931047, 0.157988, 0.049392, 3.930474, 0.158793, 0.081883, 3.931047, 0.157988, -0.04939, 3.930474, 0.158793, -0.081882, 4.054935, 0.13623, -0.081882, 3.731328, 0.018833, 0.049391, 3.812544, 0.115168, 0.049391, 3.81162, 0.115512, 0.081883, 4.194237, -0.063898, 0.049392, 4.195903, -0.064359, 0.081883, 4.152622, 0.054495, 0.081883, 3.731328, 0.018833, -0.04939, 3.731514, 0.018384, -0.081882, 3.81162, 0.115512, -0.081882, 3.931047, 0.157988, 0.049392, 4.055082, 0.13582, 0.049392, 4.054935, 0.13623, 0.081883, 4.151417, 0.054604, -0.04939, 4.055082, 0.13582, -0.04939, 4.054935, 0.13623, -0.081882, 4.194237, -0.063898, -0.04939, 4.151417, 0.054604, -0.04939, 4.152622, 0.054495, -0.081882};
+
+               // set normals for Draken plane
+               static GLfloat j_35_draken_wheels_normals[] = {-0.446486, -0.548296, 0.707083, 0.446486, 0.548296, 0.707083, -0.446486, -0.548296, 0.707083, 0.446486, 0.548296, 0.707083, 0.446486, 0.548296, -0.707083, 0.446486, 0.548296, -0.707083, 0.446486, 0.548296, -0.707083, -0.446486, -0.548296, -0.707083, -0.446486, -0.548296, -0.707083, -0.446486, -0.548296, -0.707083, -0.446486, -0.548296, 0.707083, -0.446486, -0.548296, -0.707083, -0.014405, -0.81634, 0.577349, -0.491073, 0.508744, 0.707083, -0.81634, 0.014405, 0.577349, -0.81634, 0.014405, 0.577349, -0.491073, 0.508744, -0.707083, -0.81634, 0.014405, -0.577349, -0.491073, 0.508744, -0.707083, -0.014405, -0.81634, -0.577349, -0.81634, 0.014405, -0.577349, 0.491073, -0.508744, -0.707083, -0.014405, -0.81634, 0.577349, -0.014405, -0.81634, -0.577349, -0.81634, 0.014405, 0.577349, -0.014405, -0.81634, -0.577349, -0.014405, -0.81634, 0.577349, -0.537614, 0.843165, 0.0, -0.03238, 0.735435, 0.676778, -0.043977, 0.999023, 0.0, -0.03238, 0.735435, 0.676778, -0.03415, 0.05356, 0.997955, -0.002777, 0.063478, 0.997955, -0.002777, 0.063478, 0.997955, 0.205725, -0.322672, 0.923856, 0.016816, -0.382305, 0.923856, 0.205725, -0.322672, -0.923856, -0.002777, 0.063478, -0.997955, 0.016816, -0.382305, -0.923856, -0.03415, 0.05356, -0.997955, -0.03238, 0.735435, -0.676778, -0.002777, 0.063478, -0.997955, -0.03238, 0.735435, -0.676778, -0.537614, 0.843165, 0.0, -0.043977, 0.999023, 0.0, -0.887173, 0.461409, 0.0, -0.395764, 0.620716, 0.676778, -0.537614, 0.843165, 0.0, -0.395764, 0.620716, 0.676778, -0.056368, 0.029298, 0.997955, -0.03415, 0.05356, 0.997955, -0.03415, 0.05356, 0.997955, 0.339488, -0.17655, 0.923856, 0.205725, -0.322672, 0.923856, 0.339488, -0.17655, -0.923856, -0.03415, 0.05356, -0.997955, 0.205725, -0.322672, -0.923856, -0.056368, 0.029298, -0.997955, -0.395764, 0.620716, -0.676778, -0.03415, 0.05356, -0.997955, -0.395764, 0.620716, -0.676778, -0.887173, 0.461409, 0.0, -0.537614, 0.843165, 0.0, -0.999023, -0.043977, 0.0, -0.653096, 0.339671, 0.676778, -0.887173, 0.461409, 0.0, -0.735435, -0.03238, 0.676778, -0.056368, 0.029298, 0.997955, -0.653096, 0.339671, 0.676778, -0.063448, -0.002777, 0.997955, 0.339488, -0.17655, 0.923856, -0.056368, 0.029298, 0.997955, 0.339488, -0.17655, -0.923856, -0.063448, -0.002777, -0.997955, -0.056368, 0.029298, -0.997955, -0.056368, 0.029298, -0.997955, -0.735435, -0.03238, -0.676778, -0.653096, 0.339671, -0.676778, -0.653096, 0.339671, -0.676778, -0.999023, -0.043977, 0.0, -0.887173, 0.461409, 0.0, -0.999023, -0.043977, 0.0, -0.620716, -0.395764, 0.676778, -0.735435, -0.03238, 0.676778, -0.620716, -0.395764, 0.676778, -0.063448, -0.002777, 0.997955, -0.735435, -0.03238, 0.676778, -0.063448, -0.002777, 0.997955, 0.322672, 0.205725, 0.923856, 0.382305, 0.016816, 0.923856, 0.322672, 0.205725, -0.923856, -0.063448, -0.002777, -0.997955, 0.382305, 0.016816, -0.923856, -0.063448, -0.002777, -0.997955, -0.620716, -0.395764, -0.676778, -0.735435, -0.03238, -0.676778, -0.620716, -0.395764, -0.676778, -0.999023, -0.043977, 0.0, -0.735435, -0.03238, -0.676778, -0.843165, -0.537614, 0.0, -0.339671, -0.653096, 0.676778, -0.620716, -0.395764, 0.676778, -0.339671, -0.653096, 0.676778, -0.05356, -0.03415, 0.997955, -0.620716, -0.395764, 0.676778, -0.029298, -0.056368, 0.997955, 0.322672, 0.205725, 0.923856, -0.05356, -0.03415, 0.997955, 0.322672, 0.205725, -0.923856, -0.029298, -0.056368, -0.997955, -0.05356, -0.03415, -0.997955, -0.05356, -0.03415, -0.997955, -0.339671, -0.653096, -0.676778, -0.620716, -0.395764, -0.676778, -0.339671, -0.653096, -0.676778, -0.843165, -0.537614, 0.0, -0.620716, -0.395764, -0.676778, 0.043977, -0.999023, 0.0, -0.339671, -0.653096, 0.676778, -0.461409, -0.887173, 0.0, -0.339671, -0.653096, 0.676778, 0.002777, -0.063478, 0.997955, -0.029298, -0.056368, 0.997955, 0.002777, -0.063478, 0.997955, 0.17655, 0.339488, 0.923856, -0.029298, -0.056368, 0.997955, 0.17655, 0.339488, -0.923856, 0.002777, -0.063478, -0.997955, -0.029298, -0.056368, -0.997955, 0.002777, -0.063478, -0.997955, -0.339671, -0.653096, -0.676778, -0.029298, -0.056368, -0.997955, -0.339671, -0.653096, -0.676778, 0.043977, -0.999023, 0.0, -0.461409, -0.887173, 0.0, 0.537614, -0.843165, 0.0, 0.03238, -0.735435, 0.676778, 0.043977, -0.999023, 0.0, 0.03238, -0.735435, 0.676778, 0.03415, -0.05356, 0.997955, 0.002777, -0.063478, 0.997955, 0.03415, -0.05356, 0.997955, -0.016816, 0.382305, 0.923856, 0.002777, -0.063478, 0.997955, -0.016816, 0.382305, -0.923856, 0.03415, -0.05356, -0.997955, 0.002777, -0.063478, -0.997955, 0.03415, -0.05356, -0.997955, 0.03238, -0.735435, -0.676778, 0.002777, -0.063478, -0.997955, 0.03238, -0.735435, -0.676778, 0.537614, -0.843165, 0.0, 0.043977, -0.999023, 0.0, 0.887173, -0.461409, 0.0, 0.395764, -0.620716, 0.676778, 0.537614, -0.843165, 0.0, 0.395764, -0.620716, 0.676778, 0.056368, -0.029298, 0.997955, 0.03415, -0.05356, 0.997955, 0.03415, -0.05356, 0.997955, -0.339488, 0.17655, 0.923856, -0.205725, 0.322672, 0.923856, -0.339488, 0.17655, -0.923856, 0.03415, -0.05356, -0.997955, -0.205725, 0.322672, -0.923856, 0.056368, -0.029298, -0.997955, 0.395764, -0.620716, -0.676778, 0.03415, -0.05356, -0.997955, 0.395764, -0.620716, -0.676778, 0.887173, -0.461409, 0.0, 0.537614, -0.843165, 0.0, 0.999023, 0.043977, 0.0, 0.653127, -0.339671, 0.676778, 0.887173, -0.461409, 0.0, 0.735466, 0.03238, 0.676778, 0.056368, -0.029298, 0.997955, 0.653127, -0.339671, 0.676778, 0.063478, 0.002777, 0.997955, -0.339488, 0.17655, 0.923856, 0.056368, -0.029298, 0.997955, -0.339488, 0.17655, -0.923856, 0.063478, 0.002777, -0.997955, 0.056368, -0.029298, -0.997955, 0.056368, -0.029298, -0.997955, 0.735466, 0.03238, -0.676778, 0.653127, -0.339671, -0.676778, 0.653127, -0.339671, -0.676778, 0.999023, 0.043977, 0.0, 0.887173, -0.461409, 0.0, 0.999023, 0.043977, 0.0, 0.620716, 0.395764, 0.676778, 0.735466, 0.03238, 0.676778, 0.735466, 0.03238, 0.676778, 0.05356, 0.03415, 0.997955, 0.063478, 0.002777, 0.997955, 0.063478, 0.002777, 0.997955, -0.322672, -0.205725, 0.923856, -0.382305, -0.016816, 0.923856, -0.322672, -0.205725, -0.923856, 0.063478, 0.002777, -0.997955, -0.382305, -0.016816, -0.923856, 0.05356, 0.03415, -0.997955, 0.735466, 0.03238, -0.676778, 0.063478, 0.002777, -0.997955, 0.620716, 0.395764, -0.676778, 0.999023, 0.043977, 0.0, 0.735466, 0.03238, -0.676778, 0.461409, 0.887173, 0.0, 0.620716, 0.395764, 0.676778, 0.843165, 0.537614, 0.0, 0.339671, 0.653096, 0.676778, 0.05356, 0.03415, 0.997955, 0.620716, 0.395764, 0.676778, 0.029298, 0.056368, 0.997955, -0.322672, -0.205725, 0.923856, 0.05356, 0.03415, 0.997955, -0.322672, -0.205725, -0.923856, 0.029298, 0.056368, -0.997955, 0.05356, 0.03415, -0.997955, 0.05356, 0.03415, -0.997955, 0.339671, 0.653096, -0.676778, 0.620716, 0.395764, -0.676778, 0.620716, 0.395764, -0.676778, 0.461409, 0.887173, 0.0, 0.843165, 0.537614, 0.0, -0.043977, 0.999023, 0.0, 0.339671, 0.653096, 0.676778, 0.461409, 0.887173, 0.0, 0.339671, 0.653096, 0.676778, -0.002777, 0.063478, 0.997955, 0.029298, 0.056368, 0.997955, -0.002777, 0.063478, 0.997955, -0.17655, -0.339488, 0.923856, 0.029298, 0.056368, 0.997955, -0.17655, -0.339488, -0.923856, -0.002777, 0.063478, -0.997955, 0.029298, 0.056368, -0.997955, -0.002777, 0.063478, -0.997955, 0.339671, 0.653096, -0.676778, 0.029298, 0.056368, -0.997955, 0.339671, 0.653096, -0.676778, -0.043977, 0.999023, 0.0, 0.461409, 0.887173, 0.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, -0.999969, 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, 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, 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, -0.999969, 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, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.999969, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.999969, 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, 0.999969, 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, 0.999969, 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.03238, 0.735435, -0.676778, -0.537614, 0.843165, 0.0, -0.043977, 0.999023, 0.0, -0.03238, 0.735435, -0.676778, -0.03415, 0.05356, -0.997955, -0.395764, 0.620716, -0.676778, -0.002777, 0.063478, -0.997955, 0.205725, -0.322672, -0.923856, -0.03415, 0.05356, -0.997955, -0.002777, 0.063478, 0.997955, 0.205725, -0.322642, 0.923856, 0.016816, -0.382305, 0.923856, -0.03238, 0.735435, 0.676778, -0.03415, 0.05356, 0.997955, -0.002777, 0.063478, 0.997955, -0.03238, 0.735435, 0.676778, -0.537614, 0.843165, 0.0, -0.395764, 0.620716, 0.676778, -0.395764, 0.620716, -0.676778, -0.887173, 0.461409, 0.0, -0.537614, 0.843165, 0.0, -0.395764, 0.620716, -0.676778, -0.056368, 0.029298, -0.997955, -0.653096, 0.339671, -0.676778, -0.03415, 0.05356, -0.997955, 0.339488, -0.17655, -0.923856, -0.056368, 0.029298, -0.997955, -0.03415, 0.05356, 0.997955, 0.339488, -0.17655, 0.923856, 0.205725, -0.322642, 0.923856, -0.395764, 0.620716, 0.676778, -0.056368, 0.029298, 0.997955, -0.03415, 0.05356, 0.997955, -0.395764, 0.620716, 0.676778, -0.887173, 0.461409, 0.0, -0.653096, 0.339671, 0.676778, -0.653096, 0.339671, -0.676778, -0.999023, -0.043977, 0.0, -0.887173, 0.461409, 0.0, -0.056368, 0.029298, -0.997955, -0.735435, -0.03238, -0.676778, -0.653096, 0.339671, -0.676778, 0.339488, -0.17655, -0.923856, -0.063448, -0.002777, -0.997955, -0.056368, 0.029298, -0.997955, 0.339488, -0.17655, 0.923856, -0.063448, -0.002777, 0.997955, 0.382305, 0.016816, 0.923856, -0.056368, 0.029298, 0.997955, -0.735435, -0.03238, 0.676778, -0.063448, -0.002777, 0.997955, -0.653096, 0.339671, 0.676778, -0.999023, -0.043977, 0.0, -0.735435, -0.03238, 0.676778, -0.999023, -0.043977, 0.0, -0.620716, -0.395764, -0.676778, -0.843165, -0.537614, 0.0, -0.063448, -0.002777, -0.997955, -0.620716, -0.395764, -0.676778, -0.735435, -0.03238, -0.676778, -0.063448, -0.002777, -0.997955, 0.322672, 0.205725, -0.923856, -0.05356, -0.03415, -0.997955, -0.063448, -0.002777, 0.997955, 0.322672, 0.205725, 0.923856, 0.382305, 0.016816, 0.923856, -0.063448, -0.002777, 0.997955, -0.620716, -0.395764, 0.676778, -0.05356, -0.03415, 0.997955, -0.999023, -0.043977, 0.0, -0.620716, -0.395764, 0.676778, -0.735435, -0.03238, 0.676778, -0.843165, -0.537614, 0.0, -0.339671, -0.653096, -0.676778, -0.461409, -0.887173, 0.0, -0.05356, -0.03415, -0.997955, -0.339671, -0.653096, -0.676778, -0.620716, -0.395764, -0.676778, 0.322672, 0.205725, -0.923856, -0.029298, -0.056368, -0.997955, -0.05356, -0.03415, -0.997955, 0.322672, 0.205725, 0.923856, -0.029298, -0.056368, 0.997955, 0.17655, 0.339488, 0.923856, -0.05356, -0.03415, 0.997955, -0.339671, -0.653096, 0.676778, -0.029298, -0.056368, 0.997955, -0.843165, -0.537614, 0.0, -0.339671, -0.653096, 0.676778, -0.620716, -0.395764, 0.676778, -0.339671, -0.653096, -0.676778, 0.043977, -0.999023, 0.0, -0.461409, -0.887173, 0.0, -0.339671, -0.653096, -0.676778, 0.002777, -0.063478, -0.997955, 0.03238, -0.735435, -0.676778, 0.17655, 0.339488, -0.923856, 0.002777, -0.063478, -0.997955, -0.029298, -0.056368, -0.997955, 0.17655, 0.339488, 0.923856, 0.002777, -0.063478, 0.997955, -0.016816, 0.382305, 0.923856, -0.339671, -0.653096, 0.676778, 0.002777, -0.063478, 0.997955, -0.029298, -0.056368, 0.997955, -0.339671, -0.653096, 0.676778, 0.043977, -0.999023, 0.0, 0.03238, -0.735435, 0.676778, 0.03238, -0.735435, -0.676778, 0.537614, -0.843165, 0.0, 0.043977, -0.999023, 0.0, 0.03238, -0.735435, -0.676778, 0.03415, -0.05356, -0.997955, 0.395764, -0.620716, -0.676778, -0.016816, 0.382305, -0.923856, 0.03415, -0.05356, -0.997955, 0.002777, -0.063478, -0.997955, -0.016816, 0.382305, 0.923856, 0.03415, -0.05356, 0.997955, -0.205725, 0.322642, 0.923856, 0.03238, -0.735435, 0.676778, 0.03415, -0.05356, 0.997955, 0.002777, -0.063478, 0.997955, 0.03238, -0.735435, 0.676778, 0.537614, -0.843165, 0.0, 0.395764, -0.620716, 0.676778, 0.395764, -0.620716, -0.676778, 0.887173, -0.461409, 0.0, 0.537614, -0.843165, 0.0, 0.395764, -0.620716, -0.676778, 0.056368, -0.029298, -0.997955, 0.653127, -0.339671, -0.676778, 0.03415, -0.05356, -0.997955, -0.339488, 0.17655, -0.923856, 0.056368, -0.029298, -0.997955, 0.03415, -0.05356, 0.997955, -0.339488, 0.17655, 0.923856, -0.205725, 0.322642, 0.923856, 0.395764, -0.620716, 0.676778, 0.056368, -0.029298, 0.997955, 0.03415, -0.05356, 0.997955, 0.395764, -0.620716, 0.676778, 0.887173, -0.461409, 0.0, 0.653127, -0.339671, 0.676778, 0.653127, -0.339671, -0.676778, 0.999023, 0.043977, 0.0, 0.887173, -0.461409, 0.0, 0.056368, -0.029298, -0.997955, 0.735466, 0.03238, -0.676778, 0.653127, -0.339671, -0.676778, -0.339488, 0.17655, -0.923856, 0.063478, 0.002777, -0.997955, 0.056368, -0.029298, -0.997955, -0.339488, 0.17655, 0.923856, 0.063478, 0.002777, 0.997955, -0.382305, -0.016816, 0.923856, 0.056368, -0.029298, 0.997955, 0.735466, 0.03238, 0.676778, 0.063478, 0.002777, 0.997955, 0.653127, -0.339671, 0.676778, 0.999023, 0.043977, 0.0, 0.735466, 0.03238, 0.676778, 0.999023, 0.043977, 0.0, 0.620716, 0.395764, -0.676778, 0.843165, 0.537614, 0.0, 0.735466, 0.03238, -0.676778, 0.05356, 0.03415, -0.997955, 0.620716, 0.395764, -0.676778, 0.063478, 0.002777, -0.997955, -0.322672, -0.205725, -0.923856, 0.05356, 0.03415, -0.997955, 0.063478, 0.002777, 0.997955, -0.322672, -0.205725, 0.923856, -0.382305, -0.016816, 0.923856, 0.735466, 0.03238, 0.676778, 0.05356, 0.03415, 0.997955, 0.063478, 0.002777, 0.997955, 0.999023, 0.043977, 0.0, 0.620716, 0.395764, 0.676778, 0.735466, 0.03238, 0.676778, 0.620716, 0.395764, -0.676778, 0.461409, 0.887173, 0.0, 0.843165, 0.537614, 0.0, 0.05356, 0.03415, -0.997955, 0.339671, 0.653096, -0.676778, 0.620716, 0.395764, -0.676778, -0.322672, -0.205725, -0.923856, 0.029298, 0.056368, -0.997955, 0.05356, 0.03415, -0.997955, -0.322672, -0.205725, 0.923856, 0.029298, 0.056368, 0.997955, -0.17655, -0.339488, 0.923856, 0.05356, 0.03415, 0.997955, 0.339671, 0.653096, 0.676778, 0.029298, 0.056368, 0.997955, 0.620716, 0.395764, 0.676778, 0.461409, 0.887173, 0.0, 0.339671, 0.653096, 0.676778, 0.339671, 0.653096, -0.676778, -0.043977, 0.999023, 0.0, 0.461409, 0.887173, 0.0, 0.339671, 0.653096, -0.676778, -0.002777, 0.063478, -0.997955, -0.03238, 0.735435, -0.676778, -0.17655, -0.339488, -0.923856, -0.002777, 0.063478, -0.997955, 0.029298, 0.056368, -0.997955, -0.17655, -0.339488, 0.923856, -0.002777, 0.063478, 0.997955, 0.016816, -0.382305, 0.923856, 0.339671, 0.653096, 0.676778, -0.002777, 0.063478, 0.997955, 0.029298, 0.056368, 0.997955, 0.339671, 0.653096, 0.676778, -0.043977, 0.999023, 0.0, -0.03238, 0.735435, 0.676778, 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, 0.999969, 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, 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, 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, 0.999969, 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, 0.0, 0.0, -1.0, 0.0, 0.0, -1.0, 0.0, 0.0, -1.0, 0.0, 0.0, -0.999969, 0.0, 0.0, -1.0, 0.0, 0.0, -1.0, 0.0, 0.0, -0.999969, 0.0, 0.0, -1.0, 0.0, 0.0, -1.0, 0.0, 0.0, -1.0, 0.0, 0.0, -0.999969, 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, -0.999969, 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.997955, -0.063509, 0.006165, -0.661489, -0.717734, 0.217383, -0.661489, -0.717734, 0.217383, 0.997955, 0.063509, -0.006165, 0.749809, -0.627888, 0.208625, 0.749809, -0.627888, 0.208625, -0.661489, -0.717734, 0.217383, 0.749809, -0.627888, 0.208625, 0.749809, -0.627888, 0.208625, -0.013245, 0.301004, 0.95352, -0.013245, 0.301004, 0.95352, -0.013245, 0.301004, 0.95352, 0.013245, -0.301004, -0.95352, 0.013245, -0.301004, -0.95352, 0.013245, -0.301004, -0.95352, -0.012207, 0.277657, 0.96057, -0.012207, 0.277657, 0.96057, -0.012207, 0.277657, 0.96057, 0.012207, -0.277657, -0.96057, 0.012207, -0.277657, -0.96057, 0.012207, -0.277657, -0.96057, 0.012207, -0.277657, -0.96057, 0.012207, -0.277657, -0.96057, 0.012207, -0.277657, -0.96057, -0.012207, 0.277657, 0.96057, -0.012207, 0.277657, 0.96057, -0.012207, 0.277657, 0.96057, -0.963744, 0.252754, -0.08533, -0.999542, -0.029511, -0.004181, -0.963744, 0.252754, -0.08533, 0.999023, 0.043977, 0.0, 0.999023, 0.043977, 0.0, 0.999023, 0.043977, 0.0, -0.859371, -0.494003, 0.13184, 0.745323, -0.637867, 0.193854, -0.859371, -0.494003, 0.13184, 0.999023, 0.043977, 0.0, 0.745323, -0.637867, 0.193854, 0.745323, -0.637867, 0.193854, -0.963744, 0.252754, -0.08533, -0.859371, -0.494003, 0.13184, -0.859371, -0.494003, 0.13184, -0.537522, 0.841548, -0.053011, -0.03412, 0.775475, 0.630421, -0.043886, 0.997131, -0.06122, -0.397534, 0.660909, 0.636464, -0.005463, 0.124393, 0.992187, -0.03412, 0.775475, 0.630421, -0.036836, 0.114505, 0.992737, 0.014313, -0.325083, 0.945555, -0.005463, 0.124393, 0.992187, 0.019288, -0.438093, -0.898709, -0.031465, -0.007538, -0.999451, -9.2e-05, 0.002319, -0.999969, -0.031465, -0.007538, -0.999451, -0.030488, 0.692679, -0.720573, -9.2e-05, 0.002319, -0.999969, -0.030488, 0.692679, -0.720573, -0.537522, 0.841548, -0.053011, -0.043886, 0.997131, -0.06122, -0.887143, 0.460463, -0.03061, -0.397534, 0.660909, 0.636464, -0.537522, 0.841548, -0.053011, -0.397534, 0.660909, 0.636464, -0.059053, 0.090274, 0.99414, -0.036836, 0.114505, 0.992737, -0.059053, 0.090274, 0.99414, 0.203192, -0.265542, 0.942412, -0.036836, 0.114505, 0.992737, 0.208197, -0.378552, -0.901852, -0.053682, -0.03177, -0.998047, -0.031465, -0.007538, -0.999451, -0.053682, -0.03177, -0.998047, -0.393902, 0.578143, -0.71453, -0.031465, -0.007538, -0.999451, -0.393902, 0.578143, -0.71453, -0.887143, 0.460463, -0.03061, -0.537522, 0.841548, -0.053011, -0.999023, -0.043977, 0.0, -0.654897, 0.380383, 0.652974, -0.887143, 0.460463, -0.03061, -0.654897, 0.380383, 0.652974, -0.066164, 0.058229, 0.996094, -0.059053, 0.090274, 0.99414, -0.066164, 0.058229, 0.996094, 0.336985, -0.119694, 0.933836, -0.059053, 0.090274, 0.99414, 0.34196, -0.232704, -0.910428, -0.060793, -0.063814, -0.996094, -0.053682, -0.03177, -0.998047, -0.053682, -0.03177, -0.998047, -0.733634, -0.073763, -0.675497, -0.651265, 0.297586, -0.69805, -0.651265, 0.297586, -0.69805, -0.999023, -0.043977, 0.0, -0.887143, 0.460463, -0.03061, -0.999023, -0.043977, 0.0, -0.622578, -0.353679, 0.69805, -0.737266, 0.009003, 0.675497, -0.737266, 0.009003, 0.675497, -0.056246, 0.026917, 0.998047, -0.066164, 0.058229, 0.996094, -0.056246, 0.026917, 0.998047, 0.379803, 0.073336, 0.922117, -0.066164, 0.058229, 0.996094, 0.325175, 0.148869, -0.933836, -0.060793, -0.063814, -0.996094, 0.384777, -0.039644, -0.922147, -0.060793, -0.063814, -0.996094, -0.618915, -0.436476, -0.652974, -0.733634, -0.073763, -0.675497, -0.618915, -0.436476, -0.652974, -0.999023, -0.043977, 0.0, -0.733634, -0.073763, -0.675497, -0.843226, -0.536668, 0.03061, -0.341533, -0.610523, 0.71453, -0.622578, -0.353679, 0.69805, -0.341533, -0.610523, 0.71453, -0.056246, 0.026917, 0.998047, -0.622578, -0.353679, 0.69805, -0.056246, 0.026917, 0.998047, 0.174108, 0.395367, 0.901852, 0.3202, 0.261879, 0.910428, 0.179083, 0.282357, -0.942412, -0.050874, -0.095126, -0.99414, 0.325175, 0.148869, -0.933836, -0.050874, -0.095126, -0.99414, -0.337901, -0.693319, -0.636464, -0.618915, -0.436476, -0.652974, -0.337901, -0.693319, -0.636464, -0.843226, -0.536668, 0.03061, -0.618915, -0.436476, -0.652974, -0.46147, -0.885556, 0.053011, 0.030488, -0.692679, 0.720573, -0.341533, -0.610523, 0.71453, 0.030488, -0.692679, 0.720573, -0.031983, 0.004761, 0.999451, -0.341533, -0.610523, 0.71453, 9.2e-05, -0.002319, 0.999969, 0.174108, 0.395367, 0.901852, -0.031983, 0.004761, 0.999451, -0.014313, 0.325083, -0.945555, -0.026612, -0.117283, -0.992737, 0.179083, 0.282357, -0.942412, -0.026612, -0.117283, -0.992737, 0.03412, -0.775475, -0.630421, -0.337901, -0.693319, -0.636464, 0.03412, -0.775475, -0.630421, -0.46147, -0.885556, 0.053011, -0.337901, -0.693319, -0.636464, 0.537522, -0.841548, 0.053011, 0.030488, -0.692679, 0.720573, 0.043886, -0.997131, 0.06122, 0.030488, -0.692679, 0.720573, 0.031465, 0.007538, 0.999451, 9.2e-05, -0.002319, 0.999969, 0.031465, 0.007538, 0.999451, -0.019288, 0.438093, 0.898709, 9.2e-05, -0.002319, 0.999969, -0.203192, 0.265542, -0.942412, 0.005463, -0.124393, -0.992187, -0.014313, 0.325083, -0.945555, 0.036836, -0.114505, -0.992737, 0.03412, -0.775475, -0.630421, 0.005463, -0.124393, -0.992187, 0.03412, -0.775475, -0.630421, 0.537522, -0.841548, 0.053011, 0.043886, -0.997131, 0.06122, 0.887143, -0.460463, 0.03061, 0.393902, -0.578143, 0.71453, 0.537522, -0.841548, 0.053011, 0.393902, -0.578143, 0.71453, 0.053682, 0.03177, 0.998047, 0.031465, 0.007538, 0.999451, 0.053682, 0.03177, 0.998047, -0.208197, 0.378552, 0.901852, 0.031465, 0.007538, 0.999451, -0.203192, 0.265542, -0.942412, 0.059053, -0.090274, -0.99414, 0.036836, -0.114505, -0.992737, 0.059053, -0.090274, -0.99414, 0.397534, -0.660909, -0.636464, 0.036836, -0.114505, -0.992737, 0.397534, -0.660909, -0.636464, 0.887143, -0.460463, 0.03061, 0.537522, -0.841548, 0.053011, 0.999023, 0.043977, 0.0, 0.651265, -0.297586, 0.69805, 0.887143, -0.460463, 0.03061, 0.651265, -0.297586, 0.69805, 0.060762, 0.063814, 0.996094, 0.053682, 0.03177, 0.998047, 0.053682, 0.03177, 0.998047, -0.384777, 0.039644, 0.922117, -0.34196, 0.232704, 0.910428, -0.336985, 0.119694, -0.933836, 0.066164, -0.058229, -0.996094, 0.059053, -0.090274, -0.99414, 0.066164, -0.058229, -0.996094, 0.654897, -0.380383, -0.652974, 0.059053, -0.090274, -0.99414, 0.654897, -0.380383, -0.652974, 0.999023, 0.043977, 0.0, 0.887143, -0.460463, 0.03061, 0.999023, 0.043977, 0.0, 0.618915, 0.436476, 0.652974, 0.733634, 0.073763, 0.675497, 0.618915, 0.436476, 0.652974, 0.060762, 0.063814, 0.996094, 0.733634, 0.073763, 0.675497, 0.060762, 0.063814, 0.996094, -0.325175, -0.148869, 0.933836, -0.384777, 0.039644, 0.922117, -0.32017, -0.261879, -0.910428, 0.066164, -0.058229, -0.996094, -0.379803, -0.073336, -0.922117, 0.066164, -0.058229, -0.996094, 0.622578, 0.353679, -0.69805, 0.737266, -0.009003, -0.675497, 0.622578, 0.353679, -0.69805, 0.999023, 0.043977, 0.0, 0.737266, -0.009003, -0.675497, 0.46147, 0.885556, -0.053011, 0.618915, 0.436476, 0.652974, 0.843226, 0.536668, -0.03058, 0.337901, 0.693319, 0.636464, 0.050874, 0.095126, 0.99414, 0.618915, 0.436476, 0.652974, 0.050874, 0.095126, 0.99414, -0.179083, -0.282357, 0.942412, -0.325175, -0.148869, 0.933836, -0.174108, -0.395367, -0.901852, 0.056246, -0.026917, -0.998047, -0.32017, -0.261879, -0.910428, 0.056246, -0.026917, -0.998047, 0.341533, 0.610523, -0.71453, 0.622578, 0.353679, -0.69805, 0.341533, 0.610523, -0.71453, 0.843226, 0.536668, -0.03058, 0.622578, 0.353679, -0.69805, -0.043886, 0.997131, -0.06122, 0.337901, 0.693319, 0.636464, 0.46147, 0.885556, -0.053011, 0.337901, 0.693319, 0.636464, -0.005463, 0.124393, 0.992187, 0.026612, 0.117283, 0.992737, 0.026612, 0.117283, 0.992737, 0.014313, -0.325083, 0.945555, -0.179083, -0.282357, 0.942412, 0.019288, -0.438093, -0.898709, 0.031983, -0.004761, -0.999451, -0.174108, -0.395367, -0.901852, -9.2e-05, 0.002319, -0.999969, 0.341533, 0.610523, -0.71453, 0.031983, -0.004761, -0.999451, -0.030488, 0.692679, -0.720573, 0.46147, 0.885556, -0.053011, 0.341533, 0.610523, -0.71453, 0.002686, -0.061159, -0.998108, 0.002686, -0.061159, -0.998108, 0.002686, -0.061159, -0.998108, 0.002686, -0.061159, -0.998108, 0.002686, -0.061159, -0.998108, 0.002686, -0.061159, -0.998108, 0.002686, -0.061159, -0.998108, 0.002686, -0.061159, -0.998108, 0.002686, -0.061159, -0.998108, 0.002686, -0.061159, -0.998108, 0.002686, -0.061159, -0.998108, 0.002686, -0.061159, -0.998108, 0.002686, -0.061159, -0.998108, 0.002686, -0.061159, -0.998108, 0.002686, -0.061159, -0.998108, 0.002686, -0.061159, -0.998108, 0.002686, -0.061159, -0.998108, 0.002686, -0.061159, -0.998108, 0.002686, -0.061159, -0.998108, 0.002686, -0.061159, -0.998108, 0.002686, -0.061159, -0.998108, 0.002686, -0.061159, -0.998108, 0.002686, -0.061159, -0.998108, 0.002686, -0.061159, -0.998108, 0.002686, -0.061159, -0.998108, 0.002686, -0.061159, -0.998108, 0.002686, -0.061159, -0.998108, 0.002686, -0.061159, -0.998108, 0.002686, -0.061159, -0.998108, 0.002686, -0.061159, -0.998108, -0.002686, 0.061159, 0.998108, -0.002686, 0.061159, 0.998108, -0.002686, 0.061159, 0.998108, -0.002686, 0.061159, 0.998108, -0.002686, 0.061159, 0.998108, -0.002686, 0.061159, 0.998108, -0.002686, 0.061159, 0.998108, -0.002686, 0.061159, 0.998108, -0.002686, 0.061159, 0.998108, -0.002686, 0.061159, 0.998108, -0.002686, 0.061159, 0.998108, -0.002686, 0.061159, 0.998108, -0.002686, 0.061159, 0.998108, -0.002686, 0.061159, 0.998108, -0.002686, 0.061159, 0.998108, -0.002686, 0.061159, 0.998108, -0.002686, 0.061159, 0.998108, -0.002686, 0.061159, 0.998108, -0.002686, 0.061159, 0.998108, -0.002686, 0.061159, 0.998108, -0.002686, 0.061159, 0.998108, -0.002686, 0.061159, 0.998108, -0.002686, 0.061159, 0.998108, -0.002686, 0.061159, 0.998108, -0.002686, 0.061159, 0.998108, -0.002686, 0.061159, 0.998108, -0.002686, 0.061159, 0.998108, -0.002686, 0.061159, 0.998108, -0.002686, 0.061159, 0.998108, -0.002686, 0.061159, 0.998108, -0.002686, 0.061159, 0.998108, -0.002686, 0.061159, 0.998108, -0.002686, 0.061159, 0.998108, -0.002686, 0.061159, 0.998108, -0.002686, 0.061159, 0.998108, -0.002686, 0.061159, 0.998108, 0.002686, -0.061159, -0.998108, 0.002686, -0.061159, -0.998108, 0.002686, -0.061159, -0.998108, 0.002686, -0.061159, -0.998108, 0.002686, -0.061159, -0.998108, 0.002686, -0.061159, -0.998108, -0.999023, -0.043977, 0.0, -0.495743, -0.107639, -0.861751, -0.999023, -0.043977, 0.0, -0.495743, -0.107639, -0.861751, 0.503281, -0.063662, -0.861751, 0.503281, -0.063662, -0.861751, 0.503281, -0.063662, -0.861751, 0.999023, 0.043977, 0.0, 0.503281, -0.063662, -0.861751, 0.999023, 0.043977, 0.0, 0.495712, 0.107639, 0.861751, 0.495743, 0.107639, 0.861751, 0.495712, 0.107639, 0.861751, -0.503281, 0.063662, 0.861751, 0.495743, 0.107639, 0.861751, -0.503281, 0.063662, 0.861751, -0.999023, -0.043977, 0.0, -0.999023, -0.043977, 0.0, -0.999023, -0.043977, 0.0, -0.537522, 0.841578, -0.052553, -0.999023, -0.043977, 0.0, -0.537522, 0.841578, -0.052553, 0.46147, 0.885586, -0.052553, -0.537522, 0.841578, -0.052553, 0.46147, 0.885586, -0.052553, 0.999023, 0.043977, 0.0, 0.999023, 0.043977, 0.0, 0.999023, 0.043977, 0.0, 0.537522, -0.841578, 0.052553, 0.537522, -0.841578, 0.052553, 0.537522, -0.841578, 0.052553, -0.46147, -0.885586, 0.052553, 0.537522, -0.841578, 0.052553, -0.46147, -0.885586, 0.052553, -0.999023, -0.043977, 0.0, -0.46147, -0.885586, 0.052553, 0.002655, -0.06064, -0.998138, 0.002655, -0.06064, -0.998138, 0.002655, -0.06064, -0.998138, -0.661489, -0.717734, -0.217383, -0.997955, -0.063509, -0.006165, -0.661489, -0.717734, -0.217383, 0.749809, -0.627888, -0.208625, 0.997955, 0.063509, 0.006165, 0.749809, -0.627888, -0.208625, -0.661489, -0.717734, -0.217383, 0.749809, -0.627888, -0.208625, -0.661489, -0.717734, -0.217383, -0.013245, 0.301004, -0.95352, -0.013245, 0.301004, -0.95352, -0.013245, 0.301004, -0.95352, 0.013245, -0.301004, 0.95352, 0.013245, -0.301004, 0.95352, 0.013245, -0.301004, 0.95352, -0.012207, 0.277657, -0.96057, -0.012207, 0.277657, -0.96057, -0.012207, 0.277657, -0.96057, 0.012207, -0.277657, 0.96057, 0.012207, -0.277657, 0.96057, 0.012207, -0.277657, 0.96057, 0.012207, -0.277657, 0.96057, 0.012207, -0.277657, 0.96057, 0.012207, -0.277657, 0.96057, -0.012207, 0.277657, -0.96057, -0.012207, 0.277657, -0.96057, -0.012207, 0.277657, -0.96057, -0.963744, 0.252754, 0.08533, -0.999542, -0.029511, 0.004181, -0.999542, -0.029511, 0.004181, 0.999023, 0.043977, 0.0, 0.999023, 0.043977, 0.0, 0.999023, 0.043977, 0.0, 0.745323, -0.637867, -0.193854, -0.859371, -0.494003, -0.13184, -0.859371, -0.494003, -0.13184, 0.745323, -0.637867, -0.193854, 0.999023, 0.043977, 0.0, 0.745323, -0.637867, -0.193854, -0.859371, -0.494003, -0.13184, -0.963744, 0.252754, 0.08533, -0.859371, -0.494003, -0.13184, -0.03412, 0.775475, -0.630421, -0.537522, 0.841548, 0.053011, -0.043886, 0.997131, 0.06122, -0.005463, 0.124393, -0.992187, -0.397534, 0.660909, -0.636464, -0.03412, 0.775475, -0.630421, 0.014313, -0.325083, -0.945555, -0.036836, 0.114505, -0.992737, -0.005463, 0.124393, -0.992187, 0.019288, -0.438093, 0.898709, -0.031465, -0.007538, 0.999451, 0.208197, -0.378552, 0.901852, -0.030488, 0.692679, 0.720573, -0.031465, -0.007538, 0.999451, -9.2e-05, 0.002319, 0.999969, -0.030488, 0.692679, 0.720573, -0.537522, 0.841548, 0.053011, -0.393902, 0.578143, 0.71453, -0.397534, 0.660909, -0.636464, -0.887143, 0.460463, 0.03061, -0.537522, 0.841548, 0.053011, -0.397534, 0.660909, -0.636464, -0.059053, 0.090274, -0.99414, -0.654897, 0.380383, -0.652974, 0.203192, -0.265542, -0.942412, -0.059053, 0.090274, -0.99414, -0.036836, 0.114505, -0.992737, 0.208197, -0.378552, 0.901852, -0.053682, -0.03177, 0.998047, 0.34196, -0.232704, 0.910428, -0.393902, 0.578143, 0.71453, -0.053682, -0.03177, 0.998047, -0.031465, -0.007538, 0.999451, -0.393902, 0.578143, 0.71453, -0.887143, 0.460463, 0.03061, -0.651265, 0.297586, 0.69805, -0.654897, 0.380383, -0.652974, -0.999023, -0.043977, 0.0, -0.887143, 0.460463, 0.03061, -0.654897, 0.380383, -0.652974, -0.066164, 0.058229, -0.996094, -0.737266, 0.009003, -0.675497, 0.336985, -0.119694, -0.933836, -0.066164, 0.058229, -0.996094, -0.059053, 0.090274, -0.99414, 0.34196, -0.232704, 0.910428, -0.060793, -0.063814, 0.996094, 0.384777, -0.039644, 0.922147, -0.053682, -0.03177, 0.998047, -0.733634, -0.073763, 0.675497, -0.060793, -0.063814, 0.996094, -0.651265, 0.297586, 0.69805, -0.999023, -0.043977, 0.0, -0.733634, -0.073763, 0.675497, -0.999023, -0.043977, 0.0, -0.622578, -0.353679, -0.69805, -0.843226, -0.536668, -0.03061, -0.737266, 0.009003, -0.675497, -0.056246, 0.026917, -0.998047, -0.622578, -0.353679, -0.69805, 0.379803, 0.073336, -0.922117, -0.056246, 0.026917, -0.998047, -0.066164, 0.058229, -0.996094, -0.060793, -0.063814, 0.996094, 0.325175, 0.148869, 0.933836, 0.384777, -0.039644, 0.922147, -0.060793, -0.063814, 0.996094, -0.618915, -0.436476, 0.652974, -0.050874, -0.095126, 0.99414, -0.999023, -0.043977, 0.0, -0.618915, -0.436476, 0.652974, -0.733634, -0.073763, 0.675497, -0.843226, -0.536668, -0.03061, -0.341533, -0.610523, -0.71453, -0.46147, -0.885556, -0.053011, -0.056246, 0.026917, -0.998047, -0.341533, -0.610523, -0.71453, -0.622578, -0.353679, -0.69805, -0.056246, 0.026917, -0.998047, 0.174108, 0.395367, -0.901852, -0.031983, 0.004761, -0.999451, -0.050874, -0.095126, 0.99414, 0.179083, 0.282357, 0.942412, 0.325175, 0.148869, 0.933836, -0.050874, -0.095126, 0.99414, -0.337901, -0.693319, 0.636464, -0.026612, -0.117283, 0.992737, -0.843226, -0.536668, -0.03061, -0.337901, -0.693319, 0.636464, -0.618915, -0.436476, 0.652974, -0.46147, -0.885556, -0.053011, 0.030488, -0.692679, -0.720573, 0.043886, -0.997131, -0.06122, -0.031983, 0.004761, -0.999451, 0.030488, -0.692679, -0.720573, -0.341533, -0.610523, -0.71453, 0.174108, 0.395367, -0.901852, 9.2e-05, -0.002319, -0.999969, -0.031983, 0.004761, -0.999451, -0.026612, -0.117283, 0.992737, -0.014313, 0.325083, 0.945555, 0.179083, 0.282357, 0.942412, -0.026612, -0.117283, 0.992737, 0.03412, -0.775475, 0.630421, 0.005463, -0.124393, 0.992187, -0.46147, -0.885556, -0.053011, 0.03412, -0.775475, 0.630421, -0.337901, -0.693319, 0.636464, 0.030488, -0.692679, -0.720573, 0.537522, -0.841548, -0.053011, 0.043886, -0.997131, -0.06122, 0.030488, -0.692679, -0.720573, 0.031465, 0.007538, -0.999451, 0.393902, -0.578143, -0.71453, -0.019288, 0.438093, -0.898709, 0.031465, 0.007538, -0.999451, 9.2e-05, -0.002319, -0.999969, 0.005463, -0.124393, 0.992187, -0.203192, 0.265542, 0.942412, -0.014313, 0.325083, 0.945555, 0.03412, -0.775475, 0.630421, 0.036836, -0.114505, 0.992737, 0.005463, -0.124393, 0.992187, 0.03412, -0.775475, 0.630421, 0.537522, -0.841548, -0.053011, 0.397534, -0.660909, 0.636464, 0.393902, -0.578143, -0.71453, 0.887143, -0.460463, -0.03061, 0.537522, -0.841548, -0.053011, 0.393902, -0.578143, -0.71453, 0.053682, 0.03177, -0.998047, 0.651265, -0.297586, -0.69805, -0.208197, 0.378552, -0.901852, 0.053682, 0.03177, -0.998047, 0.031465, 0.007538, -0.999451, -0.203192, 0.265542, 0.942412, 0.059053, -0.090274, 0.99414, -0.336985, 0.119694, 0.933836, 0.397534, -0.660909, 0.636464, 0.059053, -0.090274, 0.99414, 0.036836, -0.114505, 0.992737, 0.397534, -0.660909, 0.636464, 0.887143, -0.460463, -0.03061, 0.654897, -0.380383, 0.652974, 0.651265, -0.297586, -0.69805, 0.999023, 0.043977, 0.0, 0.887143, -0.460463, -0.03061, 0.651265, -0.297586, -0.69805, 0.060762, 0.063814, -0.996094, 0.733634, 0.073763, -0.675497, 0.053682, 0.03177, -0.998047, -0.384777, 0.039644, -0.922117, 0.060762, 0.063814, -0.996094, -0.336985, 0.119694, 0.933836, 0.066164, -0.058229, 0.996094, -0.379803, -0.073336, 0.922117, 0.654897, -0.380383, 0.652974, 0.066164, -0.058229, 0.996094, 0.059053, -0.090274, 0.99414, 0.654897, -0.380383, 0.652974, 0.999023, 0.043977, 0.0, 0.737266, -0.009003, 0.675497, 0.733634, 0.073763, -0.675497, 0.843226, 0.536668, 0.03061, 0.999023, 0.043977, 0.0, 0.060762, 0.063814, -0.996094, 0.618915, 0.436476, -0.652974, 0.733634, 0.073763, -0.675497, 0.060762, 0.063814, -0.996094, -0.325175, -0.148869, -0.933836, 0.050874, 0.095126, -0.99414, 0.066164, -0.058229, 0.996094, -0.32017, -0.261879, 0.910428, -0.379803, -0.073336, 0.922117, 0.066164, -0.058229, 0.996094, 0.622578, 0.353679, 0.69805, 0.056246, -0.026917, 0.998047, 0.999023, 0.043977, 0.0, 0.622578, 0.353679, 0.69805, 0.737266, -0.009003, 0.675497, 0.618915, 0.436476, -0.652974, 0.46147, 0.885556, 0.053011, 0.843226, 0.536668, 0.03061, 0.050874, 0.095126, -0.99414, 0.337901, 0.693319, -0.636464, 0.618915, 0.436476, -0.652974, 0.050874, 0.095126, -0.99414, -0.179083, -0.282357, -0.942412, 0.026612, 0.117283, -0.992737, 0.056246, -0.026917, 0.998047, -0.174108, -0.395367, 0.901852, -0.32017, -0.261879, 0.910428, 0.056246, -0.026917, 0.998047, 0.341533, 0.610523, 0.71453, 0.031983, -0.004761, 0.999451, 0.843226, 0.536668, 0.03061, 0.341533, 0.610523, 0.71453, 0.622578, 0.353679, 0.69805, 0.337901, 0.693319, -0.636464, -0.043886, 0.997131, 0.06122, 0.46147, 0.885556, 0.053011, 0.337901, 0.693319, -0.636464, -0.005463, 0.124393, -0.992187, -0.03412, 0.775475, -0.630421, 0.026612, 0.117283, -0.992737, 0.014313, -0.325083, -0.945555, -0.005463, 0.124393, -0.992187, 0.031983, -0.004761, 0.999451, 0.019288, -0.438093, 0.898709, -0.174108, -0.395367, 0.901852, 0.341533, 0.610523, 0.71453, -9.2e-05, 0.002319, 0.999969, 0.031983, -0.004761, 0.999451, 0.46147, 0.885556, 0.053011, -0.030488, 0.692679, 0.720573, 0.341533, 0.610523, 0.71453, 0.002686, -0.061159, 0.998108, 0.002686, -0.061159, 0.998108, 0.002686, -0.061159, 0.998108, 0.002686, -0.061159, 0.998108, 0.002686, -0.061159, 0.998108, 0.002686, -0.061159, 0.998108, 0.002686, -0.061159, 0.998108, 0.002686, -0.061159, 0.998108, 0.002686, -0.061159, 0.998108, 0.002686, -0.061159, 0.998108, 0.002686, -0.061159, 0.998108, 0.002686, -0.061159, 0.998108, 0.002686, -0.061159, 0.998108, 0.002686, -0.061159, 0.998108, 0.002686, -0.061159, 0.998108, 0.002686, -0.061159, 0.998108, 0.002686, -0.061159, 0.998108, 0.002686, -0.061159, 0.998108, 0.002686, -0.061159, 0.998108, 0.002686, -0.061159, 0.998108, 0.002686, -0.061159, 0.998108, 0.002686, -0.061159, 0.998108, 0.002686, -0.061159, 0.998108, 0.002686, -0.061159, 0.998108, 0.002686, -0.061159, 0.998108, 0.002686, -0.061159, 0.998108, 0.002686, -0.061159, 0.998108, 0.002686, -0.061159, 0.998108, 0.002686, -0.061159, 0.998108, 0.002686, -0.061159, 0.998108, -0.002686, 0.061159, -0.998108, -0.002686, 0.061159, -0.998108, -0.002686, 0.061159, -0.998108, -0.002686, 0.061159, -0.998108, -0.002686, 0.061159, -0.998108, -0.002686, 0.061159, -0.998108, -0.002686, 0.061159, -0.998108, -0.002686, 0.061159, -0.998108, -0.002686, 0.061159, -0.998108, -0.002686, 0.061159, -0.998108, -0.002686, 0.061159, -0.998108, -0.002686, 0.061159, -0.998108, -0.002686, 0.061159, -0.998108, -0.002686, 0.061159, -0.998108, -0.002686, 0.061159, -0.998108, -0.002686, 0.061159, -0.998108, -0.002686, 0.061159, -0.998108, -0.002686, 0.061159, -0.998108, -0.002686, 0.061159, -0.998108, -0.002686, 0.061159, -0.998108, -0.002686, 0.061159, -0.998108, -0.002686, 0.061159, -0.998108, -0.002686, 0.061159, -0.998108, -0.002686, 0.061159, -0.998108, -0.002686, 0.061159, -0.998108, -0.002686, 0.061159, -0.998108, -0.002686, 0.061159, -0.998108, -0.002686, 0.061159, -0.998108, -0.002686, 0.061159, -0.998108, -0.002686, 0.061159, -0.998108, -0.002686, 0.061159, -0.998108, -0.002686, 0.061159, -0.998108, -0.002686, 0.061159, -0.998108, -0.002686, 0.061159, -0.998108, -0.002686, 0.061159, -0.998108, -0.002686, 0.061159, -0.998108, 0.002686, -0.061159, 0.998108, 0.002686, -0.061159, 0.998108, 0.002686, -0.061159, 0.998108, 0.002686, -0.061159, 0.998108, 0.002686, -0.061159, 0.998108, 0.002686, -0.061159, 0.998108, -0.495743, -0.107639, 0.861751, -0.999023, -0.043977, 0.0, -0.999023, -0.043977, 0.0, -0.495743, -0.107639, 0.861751, 0.503281, -0.063662, 0.861751, -0.495743, -0.107639, 0.861751, 0.999023, 0.043977, 0.0, 0.503281, -0.063662, 0.861751, 0.503281, -0.063662, 0.861751, 0.999023, 0.043977, 0.0, 0.495743, 0.107639, -0.861751, 0.999023, 0.043977, 0.0, -0.503281, 0.063662, -0.861751, 0.495743, 0.107639, -0.861751, 0.495743, 0.107639, -0.861751, -0.503281, 0.063662, -0.861751, -0.999023, -0.043977, 0.0, -0.503281, 0.063662, -0.861751, -0.537522, 0.841578, 0.052553, -0.999023, -0.043977, 0.0, -0.999023, -0.043977, 0.0, 0.46147, 0.885586, 0.052553, -0.537522, 0.841578, 0.052553, -0.537522, 0.841578, 0.052553, 0.46147, 0.885586, 0.052553, 0.999023, 0.043977, 0.0, 0.46147, 0.885586, 0.052553, 0.999023, 0.043977, 0.0, 0.537522, -0.841578, -0.052553, 0.999023, 0.043977, 0.0, -0.46147, -0.885586, -0.052553, 0.537522, -0.841578, -0.052553, 0.537522, -0.841578, -0.052553, -0.46147, -0.885586, -0.052553, -0.999023, -0.043977, 0.0, -0.46147, -0.885586, -0.052553, 0.002655, -0.06064, 0.998138, 0.002655, -0.06064, 0.998138, 0.002655, -0.06064, 0.998138, -0.996368, -0.084841, 0.0, -0.498184, -0.042421, -0.866024, -0.498184, -0.042421, -0.866024, -0.498184, -0.042421, -0.866024, 0.498184, 0.042421, -0.866024, -0.498184, -0.042421, -0.866024, 0.498184, 0.042421, -0.866024, 0.996368, 0.084841, 0.0, 0.996368, 0.084841, 0.0, 0.996368, 0.084841, 0.0, 0.498184, 0.042421, 0.866024, 0.996368, 0.084841, 0.0, 0.498184, 0.042421, 0.866024, -0.498184, -0.042421, 0.866024, 0.498184, 0.042421, 0.866024, -0.498184, -0.042421, 0.866024, -0.996368, -0.084841, 0.0, -0.498184, -0.042421, 0.866024, 0.623859, 0.096286, 0.775536, -0.606708, 0.471419, 0.640004, -0.631184, -0.010559, 0.775536, -0.903745, -0.371776, 0.212104, -0.606708, 0.471419, -0.640004, -0.631184, -0.010559, -0.775536, -0.606708, 0.471419, -0.640004, 0.623859, 0.096286, -0.775536, -0.631184, -0.010559, -0.775536, 0.953581, -0.213599, -0.212104, 0.518265, 0.567217, 0.640004, 0.623859, 0.096286, 0.775536, 0.953581, -0.213599, -0.212104, -0.534165, -0.610553, -0.584674, -0.903745, -0.371776, -0.212104, -0.606708, 0.471419, 0.640004, 0.608448, 0.767327, 0.202368, -0.729423, 0.653401, 0.202368, -0.606708, 0.471419, -0.640004, 0.608448, 0.767327, -0.202368, 0.518265, 0.567217, -0.640004, -0.729423, 0.653401, 0.202368, 0.608448, 0.767327, -0.202368, -0.729423, 0.653401, -0.202368, -0.903745, -0.371776, -0.212104, -0.472152, -0.687979, 0.551103, -0.631184, -0.010559, 0.775536, -0.903745, -0.371776, -0.212104, 0.953581, -0.213599, 0.212104, 0.953581, -0.213599, -0.212104, 0.518265, 0.567217, -0.640004, 0.953581, -0.213599, 0.212104, 0.623859, 0.096286, -0.775536, 0.608448, 0.767327, -0.202368, 0.953581, -0.213599, -0.212104, 0.953581, -0.213599, 0.212104, -0.606708, 0.471419, 0.640004, -0.903745, -0.371776, -0.212104, -0.631184, -0.010559, 0.775536, -0.729423, 0.653401, 0.202368, -0.903745, -0.371776, 0.212104, -0.903745, -0.371776, -0.212104, -0.534165, -0.610553, 0.584674, 0.581652, -0.598254, -0.551103, 0.629688, -0.51146, 0.584674, -0.472152, -0.687979, 0.551103, 0.629688, -0.51146, -0.584674, 0.581652, -0.598254, 0.551103, 0.623859, 0.096286, 0.775536, -0.472152, -0.687979, 0.551103, 0.581652, -0.598254, 0.551103, 0.623859, 0.096286, -0.775536, -0.472152, -0.687979, -0.551103, -0.631184, -0.010559, -0.775536, 0.953581, -0.213599, -0.212104, 0.581652, -0.598254, 0.551103, 0.629688, -0.51146, -0.584674, 0.953581, -0.213599, 0.212104, -0.534165, -0.610553, 0.584674, 0.629688, -0.51146, 0.584674, -0.903745, -0.371776, 0.212104, -0.472152, -0.687979, -0.551103, -0.534165, -0.610553, 0.584674, 0.953581, -0.213599, 0.212104, 0.581652, -0.598254, -0.551103, 0.623859, 0.096286, -0.775536, -0.218757, 0.313974, 0.923856, -0.005371, 0.063295, 0.997955, -0.032441, 0.381298, 0.923856, -0.036317, 0.052126, 0.997955, 0.032441, -0.381298, 0.923856, -0.005371, 0.063295, 0.997955, 0.218757, -0.313974, -0.923856, -0.005371, 0.063295, -0.997955, 0.032441, -0.381298, -0.923856, -0.005371, 0.063295, -0.997955, -0.218757, 0.313974, -0.923856, -0.032441, 0.381298, -0.923856, -0.638539, 0.185858, 0.746757, -0.036317, 0.052126, 0.997955, -0.218757, 0.313974, 0.923856, -0.036317, 0.052126, 0.997955, 0.346446, -0.162511, 0.923856, 0.218757, -0.313974, 0.923856, 0.346446, -0.162511, -0.923856, -0.036317, 0.052126, -0.997955, 0.218757, -0.313974, -0.923856, -0.036317, 0.052126, -0.997955, -0.638539, 0.185858, -0.746757, -0.218757, 0.313974, -0.923856, -0.981353, 0.192145, 0.0, -0.741081, -0.047182, 0.669698, -0.638539, 0.185858, 0.746757, -0.741081, -0.047182, 0.669698, -0.057527, 0.026978, 0.997955, -0.638539, 0.185858, 0.746757, -0.063295, -0.005371, 0.997955, 0.346446, -0.162511, 0.923856, -0.057527, 0.026978, 0.997955, 0.381298, 0.032441, -0.923856, -0.057497, 0.026978, -0.997955, 0.346446, -0.162511, -0.923856, -0.057497, 0.026978, -0.997955, -0.741081, -0.047182, -0.669698, -0.638539, 0.185858, -0.746757, -0.741081, -0.047182, -0.669698, -0.981353, 0.192145, 0.0, -0.638539, 0.185858, -0.746757, -0.998596, -0.052736, 0.0, -0.603992, -0.42085, 0.676778, -0.741081, -0.047182, 0.669698, -0.603992, -0.42085, 0.676778, -0.063295, -0.005371, 0.997955, -0.741081, -0.047182, 0.669698, -0.052126, -0.036317, 0.997955, 0.381298, 0.032441, 0.923856, -0.063295, -0.005371, 0.997955, 0.381298, 0.032441, -0.923856, -0.052126, -0.036317, -0.997955, -0.063295, -0.005371, -0.997955, -0.063295, -0.005371, -0.997955, -0.603992, -0.42085, -0.676778, -0.741081, -0.047182, -0.669698, -0.603992, -0.42085, -0.676778, -0.998596, -0.052736, 0.0, -0.741081, -0.047182, -0.669698, -0.82046, -0.571642, 0.0, -0.312662, -0.666463, 0.676778, -0.603992, -0.42085, 0.676778, -0.312662, -0.666463, 0.676778, -0.052126, -0.036317, 0.997955, -0.603992, -0.42085, 0.676778, -0.052126, -0.036317, 0.997955, 0.162511, 0.346446, 0.923856, 0.313974, 0.218757, 0.923856, 0.162511, 0.346446, -0.923856, -0.052126, -0.036317, -0.997955, 0.313974, 0.218757, -0.923856, -0.052126, -0.036317, -0.997955, -0.312662, -0.666463, -0.676778, -0.603992, -0.42085, -0.676778, -0.312662, -0.666463, -0.676778, -0.82046, -0.571642, 0.0, -0.603992, -0.42085, -0.676778, -0.424696, -0.905301, 0.0, 0.062441, -0.733512, 0.676778, -0.312662, -0.666463, 0.676778, 0.062441, -0.733512, 0.676778, -0.026978, -0.057497, 0.997955, -0.312662, -0.666463, 0.676778, -0.026978, -0.057497, 0.997955, -0.032441, 0.381298, 0.923856, 0.162511, 0.346446, 0.923856, -0.032441, 0.381298, -0.923856, -0.026978, -0.057497, -0.997955, 0.162511, 0.346446, -0.923856, -0.026978, -0.057497, -0.997955, 0.062441, -0.733512, -0.676778, -0.312662, -0.666463, -0.676778, 0.062441, -0.733512, -0.676778, -0.424696, -0.905301, 0.0, -0.312662, -0.666463, -0.676778, 0.084841, -0.996368, 0.0, 0.42085, -0.603992, 0.676778, 0.062441, -0.733512, 0.676778, 0.42085, -0.603992, 0.676778, 0.005371, -0.063295, 0.997955, 0.062441, -0.733512, 0.676778, 0.005371, -0.063295, 0.997955, -0.218757, 0.313974, 0.923856, -0.032441, 0.381298, 0.923856, -0.032441, 0.381298, -0.923856, 0.036317, -0.052126, -0.997955, 0.005371, -0.063295, -0.997955, 0.036317, -0.052126, -0.997955, 0.062441, -0.733512, -0.676778, 0.005371, -0.063295, -0.997955, 0.42085, -0.603992, -0.676778, 0.084841, -0.996368, 0.0, 0.062441, -0.733512, -0.676778, 0.905301, -0.424696, 0.0, 0.42085, -0.603992, 0.676778, 0.571642, -0.82046, 0.0, 0.42085, -0.603992, 0.676778, 0.057497, -0.026978, 0.997955, 0.036317, -0.052126, 0.997955, 0.036317, -0.052126, 0.997955, -0.346446, 0.162511, 0.923856, -0.218757, 0.313974, 0.923856, -0.346446, 0.162511, -0.923856, 0.036317, -0.052126, -0.997955, -0.218757, 0.313974, -0.923856, 0.057497, -0.026978, -0.997955, 0.42085, -0.603992, -0.676778, 0.036317, -0.052126, -0.997955, 0.42085, -0.603992, -0.676778, 0.905301, -0.424696, 0.0, 0.571642, -0.82046, 0.0, 0.905301, -0.424696, 0.0, 0.636738, -0.046937, 0.769616, 0.666463, -0.312662, 0.676778, 0.636738, -0.046937, 0.769616, 0.057497, -0.026978, 0.997955, 0.666463, -0.312662, 0.676778, 0.063295, 0.005371, 0.997955, -0.346446, 0.162511, 0.923856, 0.057497, -0.026978, 0.997955, -0.346446, 0.162511, -0.923856, 0.063295, 0.005371, -0.997955, 0.057497, -0.026978, -0.997955, 0.057497, -0.026978, -0.997955, 0.636738, -0.046937, -0.769616, 0.666463, -0.312662, -0.676778, 0.636738, -0.046937, -0.769616, 0.905301, -0.424696, 0.0, 0.666463, -0.312662, -0.676778, 0.313974, 0.218757, 0.923856, 0.063295, 0.005371, 0.997955, 0.636738, -0.046937, 0.769616, 0.063295, 0.005371, 0.997955, -0.313974, -0.218757, 0.923856, -0.381298, -0.032441, 0.923856, -0.313974, -0.218757, -0.923856, 0.063295, 0.005371, -0.997955, -0.381298, -0.032441, -0.923856, 0.063295, 0.005371, -0.997955, 0.313974, 0.218757, -0.923856, 0.636738, -0.046937, -0.769616, 0.313974, 0.218757, 0.923856, 0.026978, 0.057527, 0.997955, 0.052126, 0.036317, 0.997955, 0.052126, 0.036317, 0.997955, -0.162511, -0.346446, 0.923856, -0.313974, -0.218757, 0.923856, -0.162511, -0.346446, -0.923856, 0.052126, 0.036317, -0.997955, -0.313974, -0.218757, -0.923856, 0.026978, 0.057527, -0.997955, 0.313974, 0.218757, -0.923856, 0.052126, 0.036317, -0.997955, 0.162511, 0.346446, 0.923856, -0.005371, 0.063295, 0.997955, 0.026978, 0.057527, 0.997955, -0.005371, 0.063295, 0.997955, -0.162511, -0.346446, 0.923856, 0.026978, 0.057527, 0.997955, -0.162511, -0.346446, -0.923856, -0.005371, 0.063295, -0.997955, 0.026978, 0.057527, -0.997955, -0.005371, 0.063295, -0.997955, 0.162511, 0.346446, -0.923856, 0.026978, 0.057527, -0.997955, 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, 0.999969, 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, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.999969, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.999969, 0.0, 0.0, 1.0, 0.0, 0.0, 0.999969, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.999969, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.999969, 0.0, 0.0, 1.0, 0.0, 0.0, -0.999969, 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, 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, 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, 0.0, 0.0, -1.0, 0.0, 0.0, -1.0, 0.0, 0.0, -1.0, 0.0, 0.0, -0.999969, 0.0, 0.0, -1.0, -0.580279, 0.814417, 0.0, -0.076174, 0.893277, 0.442946, -0.084628, 0.996399, 0.0, -0.076144, 0.893277, -0.442946, -0.580279, 0.814417, 0.0, -0.084628, 0.996399, 0.0, -0.580279, 0.814417, 0.0, -0.710746, 0.569536, 0.412793, -0.51738, 0.732109, 0.443068, -0.710746, 0.569536, -0.412793, -0.580279, 0.814417, 0.0, -0.51738, 0.732109, -0.443068, 0.814997, 0.579424, 0.0, 0.823115, 0.323832, 0.466414, 0.925382, 0.379009, 0.0, 0.823115, 0.323832, -0.466414, 0.814997, 0.579424, 0.0, 0.925382, 0.379009, 0.0, 0.424757, 0.905301, 0.0, 0.73162, 0.514817, 0.446822, 0.814997, 0.579424, 0.0, 0.73162, 0.514817, -0.446822, 0.424757, 0.905301, 0.0, 0.814997, 0.579424, 0.0, -0.084628, 0.996399, 0.0, 0.379284, 0.811853, 0.443831, 0.424757, 0.905301, 0.0, 0.379284, 0.811853, -0.443831, -0.084628, 0.996399, 0.0, 0.424757, 0.905301, 0.0, 0.083865, -0.996399, -0.010346, 0.071749, -0.997406, 0.0, 0.066897, -0.997742, 0.0, 0.083865, -0.996399, 0.010346, 0.071749, -0.997406, 0.0, 0.087802, -0.996033, 0.014283, 0.056642, -0.99826, 0.015778, 0.061739, -0.998077, 0.0, 0.063753, -0.997955, 0.0, 0.056642, -0.99826, -0.015778, 0.061739, -0.998077, 0.0, 0.055452, -0.998291, -0.016968, -0.81695, -0.576006, 0.027161, -0.42317, -0.905942, 0.011505, -0.426099, -0.904599, 0.009461, 0.569994, -0.821223, -0.025697, 0.086306, -0.995941, -0.025361, 0.081179, -0.996368, -0.0253, 0.569994, -0.821223, 0.025697, 0.086306, -0.995941, 0.025361, 0.575549, -0.817438, 0.021485, 0.081179, -0.996368, -0.0253, -0.42317, -0.905942, -0.011505, -0.426099, -0.904599, -0.009461, 0.770318, -0.637593, -0.0065, 0.575549, -0.817438, 0.021485, 0.771386, -0.636189, -0.013184, -0.938932, -0.341502, 0.04178, -0.821192, -0.569872, 0.029359, -0.81695, -0.576006, 0.027161, 0.770318, -0.637593, 0.0065, 0.575549, -0.817438, -0.021485, 0.569994, -0.821223, -0.025697, 0.081179, -0.996368, 0.0253, -0.42317, -0.905942, 0.011505, 0.086306, -0.995941, 0.025361, -0.81695, -0.576006, -0.027161, -0.42317, -0.905942, -0.011505, -0.821192, -0.569872, -0.029359, -0.938932, -0.341502, -0.04178, -0.821192, -0.569872, -0.029359, -0.938749, -0.341838, -0.043275, -0.446486, -0.548296, 0.707083, 0.446486, 0.548296, 0.707083, 0.446486, 0.548296, 0.707083, 0.446486, 0.548296, 0.707083, 0.446486, 0.548296, 0.707083, 0.446486, 0.548296, -0.707083, 0.446486, 0.548296, -0.707083, 0.446486, 0.548296, -0.707083, -0.446486, -0.548296, -0.707083, -0.446486, -0.548296, -0.707083, -0.446486, -0.548296, 0.707083, -0.446486, -0.548296, 0.707083, -0.014405, -0.81634, 0.577349, 0.491073, -0.508744, 0.707083, -0.491073, 0.508744, 0.707083, -0.81634, 0.014405, 0.577349, -0.491073, 0.508744, 0.707083, -0.491073, 0.508744, -0.707083, -0.491073, 0.508744, -0.707083, 0.491073, -0.508744, -0.707083, -0.014405, -0.81634, -0.577349, 0.491073, -0.508744, -0.707083, 0.491073, -0.508744, 0.707083, -0.014405, -0.81634, 0.577349, -0.81634, 0.014405, 0.577349, -0.81634, 0.014405, -0.577349, -0.014405, -0.81634, -0.577349, -0.537614, 0.843165, 0.0, -0.395764, 0.620716, 0.676778, -0.03238, 0.735435, 0.676778, -0.03238, 0.735435, 0.676778, -0.395764, 0.620716, 0.676778, -0.03415, 0.05356, 0.997955, -0.002777, 0.063478, 0.997955, -0.03415, 0.05356, 0.997955, 0.205725, -0.322672, 0.923856, 0.205725, -0.322672, -0.923856, -0.03415, 0.05356, -0.997955, -0.002777, 0.063478, -0.997955, -0.03415, 0.05356, -0.997955, -0.395764, 0.620716, -0.676778, -0.03238, 0.735435, -0.676778, -0.03238, 0.735435, -0.676778, -0.395764, 0.620716, -0.676778, -0.537614, 0.843165, 0.0, -0.887173, 0.461409, 0.0, -0.653096, 0.339671, 0.676778, -0.395764, 0.620716, 0.676778, -0.395764, 0.620716, 0.676778, -0.653096, 0.339671, 0.676778, -0.056368, 0.029298, 0.997955, -0.03415, 0.05356, 0.997955, -0.056368, 0.029298, 0.997955, 0.339488, -0.17655, 0.923856, 0.339488, -0.17655, -0.923856, -0.056368, 0.029298, -0.997955, -0.03415, 0.05356, -0.997955, -0.056368, 0.029298, -0.997955, -0.653096, 0.339671, -0.676778, -0.395764, 0.620716, -0.676778, -0.395764, 0.620716, -0.676778, -0.653096, 0.339671, -0.676778, -0.887173, 0.461409, 0.0, -0.999023, -0.043977, 0.0, -0.735435, -0.03238, 0.676778, -0.653096, 0.339671, 0.676778, -0.735435, -0.03238, 0.676778, -0.063448, -0.002777, 0.997955, -0.056368, 0.029298, 0.997955, -0.063448, -0.002777, 0.997955, 0.382305, 0.016816, 0.923856, 0.339488, -0.17655, 0.923856, 0.339488, -0.17655, -0.923856, 0.382305, 0.016816, -0.923856, -0.063448, -0.002777, -0.997955, -0.056368, 0.029298, -0.997955, -0.063448, -0.002777, -0.997955, -0.735435, -0.03238, -0.676778, -0.653096, 0.339671, -0.676778, -0.735435, -0.03238, -0.676778, -0.999023, -0.043977, 0.0, -0.999023, -0.043977, 0.0, -0.843165, -0.537614, 0.0, -0.620716, -0.395764, 0.676778, -0.620716, -0.395764, 0.676778, -0.05356, -0.03415, 0.997955, -0.063448, -0.002777, 0.997955, -0.063448, -0.002777, 0.997955, -0.05356, -0.03415, 0.997955, 0.322672, 0.205725, 0.923856, 0.322672, 0.205725, -0.923856, -0.05356, -0.03415, -0.997955, -0.063448, -0.002777, -0.997955, -0.063448, -0.002777, -0.997955, -0.05356, -0.03415, -0.997955, -0.620716, -0.395764, -0.676778, -0.620716, -0.395764, -0.676778, -0.843165, -0.537614, 0.0, -0.999023, -0.043977, 0.0, -0.843165, -0.537614, 0.0, -0.461409, -0.887173, 0.0, -0.339671, -0.653096, 0.676778, -0.339671, -0.653096, 0.676778, -0.029298, -0.056368, 0.997955, -0.05356, -0.03415, 0.997955, -0.029298, -0.056368, 0.997955, 0.17655, 0.339488, 0.923856, 0.322672, 0.205725, 0.923856, 0.322672, 0.205725, -0.923856, 0.17655, 0.339488, -0.923856, -0.029298, -0.056368, -0.997955, -0.05356, -0.03415, -0.997955, -0.029298, -0.056368, -0.997955, -0.339671, -0.653096, -0.676778, -0.339671, -0.653096, -0.676778, -0.461409, -0.887173, 0.0, -0.843165, -0.537614, 0.0, 0.043977, -0.999023, 0.0, 0.03238, -0.735435, 0.676778, -0.339671, -0.653096, 0.676778, -0.339671, -0.653096, 0.676778, 0.03238, -0.735435, 0.676778, 0.002777, -0.063478, 0.997955, 0.002777, -0.063478, 0.997955, -0.016816, 0.382305, 0.923856, 0.17655, 0.339488, 0.923856, 0.17655, 0.339488, -0.923856, -0.016816, 0.382305, -0.923856, 0.002777, -0.063478, -0.997955, 0.002777, -0.063478, -0.997955, 0.03238, -0.735435, -0.676778, -0.339671, -0.653096, -0.676778, -0.339671, -0.653096, -0.676778, 0.03238, -0.735435, -0.676778, 0.043977, -0.999023, 0.0, 0.537614, -0.843165, 0.0, 0.395764, -0.620716, 0.676778, 0.03238, -0.735435, 0.676778, 0.03238, -0.735435, 0.676778, 0.395764, -0.620716, 0.676778, 0.03415, -0.05356, 0.997955, 0.03415, -0.05356, 0.997955, -0.205725, 0.322672, 0.923856, -0.016816, 0.382305, 0.923856, -0.016816, 0.382305, -0.923856, -0.205725, 0.322672, -0.923856, 0.03415, -0.05356, -0.997955, 0.03415, -0.05356, -0.997955, 0.395764, -0.620716, -0.676778, 0.03238, -0.735435, -0.676778, 0.03238, -0.735435, -0.676778, 0.395764, -0.620716, -0.676778, 0.537614, -0.843165, 0.0, 0.887173, -0.461409, 0.0, 0.653127, -0.339671, 0.676778, 0.395764, -0.620716, 0.676778, 0.395764, -0.620716, 0.676778, 0.653127, -0.339671, 0.676778, 0.056368, -0.029298, 0.997955, 0.03415, -0.05356, 0.997955, 0.056368, -0.029298, 0.997955, -0.339488, 0.17655, 0.923856, -0.339488, 0.17655, -0.923856, 0.056368, -0.029298, -0.997955, 0.03415, -0.05356, -0.997955, 0.056368, -0.029298, -0.997955, 0.653127, -0.339671, -0.676778, 0.395764, -0.620716, -0.676778, 0.395764, -0.620716, -0.676778, 0.653127, -0.339671, -0.676778, 0.887173, -0.461409, 0.0, 0.999023, 0.043977, 0.0, 0.735466, 0.03238, 0.676778, 0.653127, -0.339671, 0.676778, 0.735466, 0.03238, 0.676778, 0.063478, 0.002777, 0.997955, 0.056368, -0.029298, 0.997955, 0.063478, 0.002777, 0.997955, -0.382305, -0.016816, 0.923856, -0.339488, 0.17655, 0.923856, -0.339488, 0.17655, -0.923856, -0.382305, -0.016816, -0.923856, 0.063478, 0.002777, -0.997955, 0.056368, -0.029298, -0.997955, 0.063478, 0.002777, -0.997955, 0.735466, 0.03238, -0.676778, 0.653127, -0.339671, -0.676778, 0.735466, 0.03238, -0.676778, 0.999023, 0.043977, 0.0, 0.999023, 0.043977, 0.0, 0.843165, 0.537614, 0.0, 0.620716, 0.395764, 0.676778, 0.735466, 0.03238, 0.676778, 0.620716, 0.395764, 0.676778, 0.05356, 0.03415, 0.997955, 0.063478, 0.002777, 0.997955, 0.05356, 0.03415, 0.997955, -0.322672, -0.205725, 0.923856, -0.322672, -0.205725, -0.923856, 0.05356, 0.03415, -0.997955, 0.063478, 0.002777, -0.997955, 0.05356, 0.03415, -0.997955, 0.620716, 0.395764, -0.676778, 0.735466, 0.03238, -0.676778, 0.620716, 0.395764, -0.676778, 0.843165, 0.537614, 0.0, 0.999023, 0.043977, 0.0, 0.461409, 0.887173, 0.0, 0.339671, 0.653096, 0.676778, 0.620716, 0.395764, 0.676778, 0.339671, 0.653096, 0.676778, 0.029298, 0.056368, 0.997955, 0.05356, 0.03415, 0.997955, 0.029298, 0.056368, 0.997955, -0.17655, -0.339488, 0.923856, -0.322672, -0.205725, 0.923856, -0.322672, -0.205725, -0.923856, -0.17655, -0.339488, -0.923856, 0.029298, 0.056368, -0.997955, 0.05356, 0.03415, -0.997955, 0.029298, 0.056368, -0.997955, 0.339671, 0.653096, -0.676778, 0.620716, 0.395764, -0.676778, 0.339671, 0.653096, -0.676778, 0.461409, 0.887173, 0.0, -0.043977, 0.999023, 0.0, -0.03238, 0.735435, 0.676778, 0.339671, 0.653096, 0.676778, 0.339671, 0.653096, 0.676778, -0.03238, 0.735435, 0.676778, -0.002777, 0.063478, 0.997955, -0.002777, 0.063478, 0.997955, 0.016816, -0.382305, 0.923856, -0.17655, -0.339488, 0.923856, -0.17655, -0.339488, -0.923856, 0.016816, -0.382305, -0.923856, -0.002777, 0.063478, -0.997955, -0.002777, 0.063478, -0.997955, -0.03238, 0.735435, -0.676778, 0.339671, 0.653096, -0.676778, 0.339671, 0.653096, -0.676778, -0.03238, 0.735435, -0.676778, -0.043977, 0.999023, 0.0, -0.03238, 0.735435, -0.676778, -0.395764, 0.620716, -0.676778, -0.537614, 0.843165, 0.0, -0.03238, 0.735435, -0.676778, -0.002777, 0.063478, -0.997955, -0.03415, 0.05356, -0.997955, -0.002777, 0.063478, -0.997955, 0.016816, -0.382305, -0.923856, 0.205725, -0.322672, -0.923856, -0.002777, 0.063478, 0.997955, -0.03415, 0.05356, 0.997955, 0.205725, -0.322642, 0.923856, -0.03238, 0.735435, 0.676778, -0.395764, 0.620716, 0.676778, -0.03415, 0.05356, 0.997955, -0.03238, 0.735435, 0.676778, -0.043977, 0.999023, 0.0, -0.537614, 0.843165, 0.0, -0.395764, 0.620716, -0.676778, -0.653096, 0.339671, -0.676778, -0.887173, 0.461409, 0.0, -0.395764, 0.620716, -0.676778, -0.03415, 0.05356, -0.997955, -0.056368, 0.029298, -0.997955, -0.03415, 0.05356, -0.997955, 0.205725, -0.322672, -0.923856, 0.339488, -0.17655, -0.923856, -0.03415, 0.05356, 0.997955, -0.056368, 0.029298, 0.997955, 0.339488, -0.17655, 0.923856, -0.395764, 0.620716, 0.676778, -0.653096, 0.339671, 0.676778, -0.056368, 0.029298, 0.997955, -0.395764, 0.620716, 0.676778, -0.537614, 0.843165, 0.0, -0.887173, 0.461409, 0.0, -0.653096, 0.339671, -0.676778, -0.735435, -0.03238, -0.676778, -0.999023, -0.043977, 0.0, -0.056368, 0.029298, -0.997955, -0.063448, -0.002777, -0.997955, -0.735435, -0.03238, -0.676778, 0.339488, -0.17655, -0.923856, 0.382305, 0.016816, -0.923856, -0.063448, -0.002777, -0.997955, 0.339488, -0.17655, 0.923856, -0.056368, 0.029298, 0.997955, -0.063448, -0.002777, 0.997955, -0.056368, 0.029298, 0.997955, -0.653096, 0.339671, 0.676778, -0.735435, -0.03238, 0.676778, -0.653096, 0.339671, 0.676778, -0.887173, 0.461409, 0.0, -0.999023, -0.043977, 0.0, -0.999023, -0.043977, 0.0, -0.735435, -0.03238, -0.676778, -0.620716, -0.395764, -0.676778, -0.063448, -0.002777, -0.997955, -0.05356, -0.03415, -0.997955, -0.620716, -0.395764, -0.676778, -0.063448, -0.002777, -0.997955, 0.382305, 0.016816, -0.923856, 0.322672, 0.205725, -0.923856, -0.063448, -0.002777, 0.997955, -0.05356, -0.03415, 0.997955, 0.322672, 0.205725, 0.923856, -0.063448, -0.002777, 0.997955, -0.735435, -0.03238, 0.676778, -0.620716, -0.395764, 0.676778, -0.999023, -0.043977, 0.0, -0.843165, -0.537614, 0.0, -0.620716, -0.395764, 0.676778, -0.843165, -0.537614, 0.0, -0.620716, -0.395764, -0.676778, -0.339671, -0.653096, -0.676778, -0.05356, -0.03415, -0.997955, -0.029298, -0.056368, -0.997955, -0.339671, -0.653096, -0.676778, 0.322672, 0.205725, -0.923856, 0.17655, 0.339488, -0.923856, -0.029298, -0.056368, -0.997955, 0.322672, 0.205725, 0.923856, -0.05356, -0.03415, 0.997955, -0.029298, -0.056368, 0.997955, -0.05356, -0.03415, 0.997955, -0.620716, -0.395764, 0.676778, -0.339671, -0.653096, 0.676778, -0.843165, -0.537614, 0.0, -0.461409, -0.887173, 0.0, -0.339671, -0.653096, 0.676778, -0.339671, -0.653096, -0.676778, 0.03238, -0.735435, -0.676778, 0.043977, -0.999023, 0.0, -0.339671, -0.653096, -0.676778, -0.029298, -0.056368, -0.997955, 0.002777, -0.063478, -0.997955, 0.17655, 0.339488, -0.923856, -0.016816, 0.382305, -0.923856, 0.002777, -0.063478, -0.997955, 0.17655, 0.339488, 0.923856, -0.029298, -0.056368, 0.997955, 0.002777, -0.063478, 0.997955, -0.339671, -0.653096, 0.676778, 0.03238, -0.735435, 0.676778, 0.002777, -0.063478, 0.997955, -0.339671, -0.653096, 0.676778, -0.461409, -0.887173, 0.0, 0.043977, -0.999023, 0.0, 0.03238, -0.735435, -0.676778, 0.395764, -0.620716, -0.676778, 0.537614, -0.843165, 0.0, 0.03238, -0.735435, -0.676778, 0.002777, -0.063478, -0.997955, 0.03415, -0.05356, -0.997955, -0.016816, 0.382305, -0.923856, -0.205725, 0.322672, -0.923856, 0.03415, -0.05356, -0.997955, -0.016816, 0.382305, 0.923856, 0.002777, -0.063478, 0.997955, 0.03415, -0.05356, 0.997955, 0.03238, -0.735435, 0.676778, 0.395764, -0.620716, 0.676778, 0.03415, -0.05356, 0.997955, 0.03238, -0.735435, 0.676778, 0.043977, -0.999023, 0.0, 0.537614, -0.843165, 0.0, 0.395764, -0.620716, -0.676778, 0.653127, -0.339671, -0.676778, 0.887173, -0.461409, 0.0, 0.395764, -0.620716, -0.676778, 0.03415, -0.05356, -0.997955, 0.056368, -0.029298, -0.997955, 0.03415, -0.05356, -0.997955, -0.205725, 0.322672, -0.923856, -0.339488, 0.17655, -0.923856, 0.03415, -0.05356, 0.997955, 0.056368, -0.029298, 0.997955, -0.339488, 0.17655, 0.923856, 0.395764, -0.620716, 0.676778, 0.653127, -0.339671, 0.676778, 0.056368, -0.029298, 0.997955, 0.395764, -0.620716, 0.676778, 0.537614, -0.843165, 0.0, 0.887173, -0.461409, 0.0, 0.653127, -0.339671, -0.676778, 0.735466, 0.03238, -0.676778, 0.999023, 0.043977, 0.0, 0.056368, -0.029298, -0.997955, 0.063478, 0.002777, -0.997955, 0.735466, 0.03238, -0.676778, -0.339488, 0.17655, -0.923856, -0.382305, -0.016816, -0.923856, 0.063478, 0.002777, -0.997955, -0.339488, 0.17655, 0.923856, 0.056368, -0.029298, 0.997955, 0.063478, 0.002777, 0.997955, 0.056368, -0.029298, 0.997955, 0.653127, -0.339671, 0.676778, 0.735466, 0.03238, 0.676778, 0.653127, -0.339671, 0.676778, 0.887173, -0.461409, 0.0, 0.999023, 0.043977, 0.0, 0.999023, 0.043977, 0.0, 0.735466, 0.03238, -0.676778, 0.620716, 0.395764, -0.676778, 0.735466, 0.03238, -0.676778, 0.063478, 0.002777, -0.997955, 0.05356, 0.03415, -0.997955, 0.063478, 0.002777, -0.997955, -0.382305, -0.016816, -0.923856, -0.322672, -0.205725, -0.923856, 0.063478, 0.002777, 0.997955, 0.05356, 0.03415, 0.997955, -0.322672, -0.205725, 0.923856, 0.735466, 0.03238, 0.676778, 0.620716, 0.395764, 0.676778, 0.05356, 0.03415, 0.997955, 0.999023, 0.043977, 0.0, 0.843165, 0.537614, 0.0, 0.620716, 0.395764, 0.676778, 0.620716, 0.395764, -0.676778, 0.339671, 0.653096, -0.676778, 0.461409, 0.887173, 0.0, 0.05356, 0.03415, -0.997955, 0.029298, 0.056368, -0.997955, 0.339671, 0.653096, -0.676778, -0.322672, -0.205725, -0.923856, -0.17655, -0.339488, -0.923856, 0.029298, 0.056368, -0.997955, -0.322672, -0.205725, 0.923856, 0.05356, 0.03415, 0.997955, 0.029298, 0.056368, 0.997955, 0.05356, 0.03415, 0.997955, 0.620716, 0.395764, 0.676778, 0.339671, 0.653096, 0.676778, 0.620716, 0.395764, 0.676778, 0.843165, 0.537614, 0.0, 0.461409, 0.887173, 0.0, 0.339671, 0.653096, -0.676778, -0.03238, 0.735435, -0.676778, -0.043977, 0.999023, 0.0, 0.339671, 0.653096, -0.676778, 0.029298, 0.056368, -0.997955, -0.002777, 0.063478, -0.997955, -0.17655, -0.339488, -0.923856, 0.016816, -0.382305, -0.923856, -0.002777, 0.063478, -0.997955, -0.17655, -0.339488, 0.923856, 0.029298, 0.056368, 0.997955, -0.002777, 0.063478, 0.997955, 0.339671, 0.653096, 0.676778, -0.03238, 0.735435, 0.676778, -0.002777, 0.063478, 0.997955, 0.339671, 0.653096, 0.676778, 0.461409, 0.887173, 0.0, -0.043977, 0.999023, 0.0, -0.997955, -0.063509, 0.006165, -0.997955, -0.063509, 0.006165, -0.661489, -0.717734, 0.217383, 0.997955, 0.063509, -0.006165, 0.997955, 0.063509, -0.006165, 0.749809, -0.627888, 0.208625, -0.661489, -0.717734, 0.217383, -0.661489, -0.717734, 0.217383, 0.749809, -0.627888, 0.208625, -0.013245, 0.301004, 0.95352, -0.013245, 0.301004, 0.95352, -0.013245, 0.301004, 0.95352, 0.013245, -0.301004, -0.95352, 0.013245, -0.301004, -0.95352, 0.013245, -0.301004, -0.95352, -0.012207, 0.277657, 0.96057, -0.012207, 0.277657, 0.96057, -0.012207, 0.277657, 0.96057, 0.012207, -0.277657, -0.96057, 0.012207, -0.277657, -0.96057, 0.012207, -0.277657, -0.96057, 0.012207, -0.277657, -0.96057, 0.012207, -0.277657, -0.96057, 0.012207, -0.277657, -0.96057, -0.012207, 0.277657, 0.96057, -0.012207, 0.277657, 0.96057, -0.012207, 0.277657, 0.96057, -0.963744, 0.252754, -0.08533, -0.999542, -0.029511, -0.004181, -0.999542, -0.029511, -0.004181, 0.999023, 0.043977, 0.0, 0.999023, 0.043977, 0.0, 0.999023, 0.043977, 0.0, -0.859371, -0.494003, 0.13184, 0.745323, -0.637867, 0.193854, 0.745323, -0.637867, 0.193854, 0.999023, 0.043977, 0.0, 0.999023, 0.043977, 0.0, 0.745323, -0.637867, 0.193854, -0.963744, 0.252754, -0.08533, -0.963744, 0.252754, -0.08533, -0.859371, -0.494003, 0.13184, -0.537522, 0.841548, -0.053011, -0.397534, 0.660909, 0.636464, -0.03412, 0.775475, 0.630421, -0.397534, 0.660909, 0.636464, -0.036836, 0.114505, 0.992737, -0.005463, 0.124393, 0.992187, -0.036836, 0.114505, 0.992737, 0.203192, -0.265542, 0.942412, 0.014313, -0.325083, 0.945555, 0.019288, -0.438093, -0.898709, 0.208197, -0.378552, -0.901852, -0.031465, -0.007538, -0.999451, -0.031465, -0.007538, -0.999451, -0.393902, 0.578143, -0.71453, -0.030488, 0.692679, -0.720573, -0.030488, 0.692679, -0.720573, -0.393902, 0.578143, -0.71453, -0.537522, 0.841548, -0.053011, -0.887143, 0.460463, -0.03061, -0.654897, 0.380383, 0.652974, -0.397534, 0.660909, 0.636464, -0.397534, 0.660909, 0.636464, -0.654897, 0.380383, 0.652974, -0.059053, 0.090274, 0.99414, -0.059053, 0.090274, 0.99414, 0.336985, -0.119694, 0.933836, 0.203192, -0.265542, 0.942412, 0.208197, -0.378552, -0.901852, 0.34196, -0.232704, -0.910428, -0.053682, -0.03177, -0.998047, -0.053682, -0.03177, -0.998047, -0.651265, 0.297586, -0.69805, -0.393902, 0.578143, -0.71453, -0.393902, 0.578143, -0.71453, -0.651265, 0.297586, -0.69805, -0.887143, 0.460463, -0.03061, -0.999023, -0.043977, 0.0, -0.737266, 0.009003, 0.675497, -0.654897, 0.380383, 0.652974, -0.654897, 0.380383, 0.652974, -0.737266, 0.009003, 0.675497, -0.066164, 0.058229, 0.996094, -0.066164, 0.058229, 0.996094, 0.379803, 0.073336, 0.922117, 0.336985, -0.119694, 0.933836, 0.34196, -0.232704, -0.910428, 0.384777, -0.039644, -0.922147, -0.060793, -0.063814, -0.996094, -0.053682, -0.03177, -0.998047, -0.060793, -0.063814, -0.996094, -0.733634, -0.073763, -0.675497, -0.651265, 0.297586, -0.69805, -0.733634, -0.073763, -0.675497, -0.999023, -0.043977, 0.0, -0.999023, -0.043977, 0.0, -0.843226, -0.536668, 0.03061, -0.622578, -0.353679, 0.69805, -0.737266, 0.009003, 0.675497, -0.622578, -0.353679, 0.69805, -0.056246, 0.026917, 0.998047, -0.056246, 0.026917, 0.998047, 0.3202, 0.261879, 0.910428, 0.379803, 0.073336, 0.922117, 0.325175, 0.148869, -0.933836, -0.050874, -0.095126, -0.99414, -0.060793, -0.063814, -0.996094, -0.060793, -0.063814, -0.996094, -0.050874, -0.095126, -0.99414, -0.618915, -0.436476, -0.652974, -0.618915, -0.436476, -0.652974, -0.843226, -0.536668, 0.03061, -0.999023, -0.043977, 0.0, -0.843226, -0.536668, 0.03061, -0.46147, -0.885556, 0.053011, -0.341533, -0.610523, 0.71453, -0.341533, -0.610523, 0.71453, -0.031983, 0.004761, 0.999451, -0.056246, 0.026917, 0.998047, -0.056246, 0.026917, 0.998047, -0.031983, 0.004761, 0.999451, 0.174108, 0.395367, 0.901852, 0.179083, 0.282357, -0.942412, -0.026612, -0.117283, -0.992737, -0.050874, -0.095126, -0.99414, -0.050874, -0.095126, -0.99414, -0.026612, -0.117283, -0.992737, -0.337901, -0.693319, -0.636464, -0.337901, -0.693319, -0.636464, -0.46147, -0.885556, 0.053011, -0.843226, -0.536668, 0.03061, -0.46147, -0.885556, 0.053011, 0.043886, -0.997131, 0.06122, 0.030488, -0.692679, 0.720573, 0.030488, -0.692679, 0.720573, 9.2e-05, -0.002319, 0.999969, -0.031983, 0.004761, 0.999451, 9.2e-05, -0.002319, 0.999969, -0.019288, 0.438093, 0.898709, 0.174108, 0.395367, 0.901852, -0.014313, 0.325083, -0.945555, 0.005463, -0.124393, -0.992187, -0.026612, -0.117283, -0.992737, -0.026612, -0.117283, -0.992737, 0.005463, -0.124393, -0.992187, 0.03412, -0.775475, -0.630421, 0.03412, -0.775475, -0.630421, 0.043886, -0.997131, 0.06122, -0.46147, -0.885556, 0.053011, 0.537522, -0.841548, 0.053011, 0.393902, -0.578143, 0.71453, 0.030488, -0.692679, 0.720573, 0.030488, -0.692679, 0.720573, 0.393902, -0.578143, 0.71453, 0.031465, 0.007538, 0.999451, 0.031465, 0.007538, 0.999451, -0.208197, 0.378552, 0.901852, -0.019288, 0.438093, 0.898709, -0.203192, 0.265542, -0.942412, 0.036836, -0.114505, -0.992737, 0.005463, -0.124393, -0.992187, 0.036836, -0.114505, -0.992737, 0.397534, -0.660909, -0.636464, 0.03412, -0.775475, -0.630421, 0.03412, -0.775475, -0.630421, 0.397534, -0.660909, -0.636464, 0.537522, -0.841548, 0.053011, 0.887143, -0.460463, 0.03061, 0.651265, -0.297586, 0.69805, 0.393902, -0.578143, 0.71453, 0.393902, -0.578143, 0.71453, 0.651265, -0.297586, 0.69805, 0.053682, 0.03177, 0.998047, 0.053682, 0.03177, 0.998047, -0.34196, 0.232704, 0.910428, -0.208197, 0.378552, 0.901852, -0.203192, 0.265542, -0.942412, -0.336985, 0.119694, -0.933836, 0.059053, -0.090274, -0.99414, 0.059053, -0.090274, -0.99414, 0.654897, -0.380383, -0.652974, 0.397534, -0.660909, -0.636464, 0.397534, -0.660909, -0.636464, 0.654897, -0.380383, -0.652974, 0.887143, -0.460463, 0.03061, 0.999023, 0.043977, 0.0, 0.733634, 0.073763, 0.675497, 0.651265, -0.297586, 0.69805, 0.651265, -0.297586, 0.69805, 0.733634, 0.073763, 0.675497, 0.060762, 0.063814, 0.996094, 0.053682, 0.03177, 0.998047, 0.060762, 0.063814, 0.996094, -0.384777, 0.039644, 0.922117, -0.336985, 0.119694, -0.933836, -0.379803, -0.073336, -0.922117, 0.066164, -0.058229, -0.996094, 0.066164, -0.058229, -0.996094, 0.737266, -0.009003, -0.675497, 0.654897, -0.380383, -0.652974, 0.654897, -0.380383, -0.652974, 0.737266, -0.009003, -0.675497, 0.999023, 0.043977, 0.0, 0.999023, 0.043977, 0.0, 0.843226, 0.536668, -0.03058, 0.618915, 0.436476, 0.652974, 0.618915, 0.436476, 0.652974, 0.050874, 0.095126, 0.99414, 0.060762, 0.063814, 0.996094, 0.060762, 0.063814, 0.996094, 0.050874, 0.095126, 0.99414, -0.325175, -0.148869, 0.933836, -0.32017, -0.261879, -0.910428, 0.056246, -0.026917, -0.998047, 0.066164, -0.058229, -0.996094, 0.066164, -0.058229, -0.996094, 0.056246, -0.026917, -0.998047, 0.622578, 0.353679, -0.69805, 0.622578, 0.353679, -0.69805, 0.843226, 0.536668, -0.03058, 0.999023, 0.043977, 0.0, 0.46147, 0.885556, -0.053011, 0.337901, 0.693319, 0.636464, 0.618915, 0.436476, 0.652974, 0.337901, 0.693319, 0.636464, 0.026612, 0.117283, 0.992737, 0.050874, 0.095126, 0.99414, 0.050874, 0.095126, 0.99414, 0.026612, 0.117283, 0.992737, -0.179083, -0.282357, 0.942412, -0.174108, -0.395367, -0.901852, 0.031983, -0.004761, -0.999451, 0.056246, -0.026917, -0.998047, 0.056246, -0.026917, -0.998047, 0.031983, -0.004761, -0.999451, 0.341533, 0.610523, -0.71453, 0.341533, 0.610523, -0.71453, 0.46147, 0.885556, -0.053011, 0.843226, 0.536668, -0.03058, -0.043886, 0.997131, -0.06122, -0.03412, 0.775475, 0.630421, 0.337901, 0.693319, 0.636464, 0.337901, 0.693319, 0.636464, -0.03412, 0.775475, 0.630421, -0.005463, 0.124393, 0.992187, 0.026612, 0.117283, 0.992737, -0.005463, 0.124393, 0.992187, 0.014313, -0.325083, 0.945555, 0.019288, -0.438093, -0.898709, -9.2e-05, 0.002319, -0.999969, 0.031983, -0.004761, -0.999451, -9.2e-05, 0.002319, -0.999969, -0.030488, 0.692679, -0.720573, 0.341533, 0.610523, -0.71453, -0.030488, 0.692679, -0.720573, -0.043886, 0.997131, -0.06122, 0.46147, 0.885556, -0.053011, -0.999023, -0.043977, 0.0, -0.495743, -0.107639, -0.861751, -0.495743, -0.107639, -0.861751, -0.495743, -0.107639, -0.861751, -0.495743, -0.107639, -0.861751, 0.503281, -0.063662, -0.861751, 0.503281, -0.063662, -0.861751, 0.999023, 0.043977, 0.0, 0.999023, 0.043977, 0.0, 0.999023, 0.043977, 0.0, 0.999023, 0.043977, 0.0, 0.495712, 0.107639, 0.861751, 0.495712, 0.107639, 0.861751, -0.503281, 0.063662, 0.861751, -0.503281, 0.063662, 0.861751, -0.503281, 0.063662, 0.861751, -0.503281, 0.063662, 0.861751, -0.999023, -0.043977, 0.0, -0.999023, -0.043977, 0.0, -0.537522, 0.841578, -0.052553, -0.537522, 0.841578, -0.052553, -0.537522, 0.841578, -0.052553, 0.46147, 0.885586, -0.052553, 0.46147, 0.885586, -0.052553, 0.46147, 0.885586, -0.052553, 0.46147, 0.885586, -0.052553, 0.999023, 0.043977, 0.0, 0.999023, 0.043977, 0.0, 0.999023, 0.043977, 0.0, 0.537522, -0.841578, 0.052553, 0.537522, -0.841578, 0.052553, -0.46147, -0.885586, 0.052553, -0.46147, -0.885586, 0.052553, -0.46147, -0.885586, 0.052553, -0.999023, -0.043977, 0.0, -0.999023, -0.043977, 0.0, 0.002655, -0.06064, -0.998138, 0.002655, -0.06064, -0.998138, 0.002655, -0.06064, -0.998138, 0.002655, -0.06064, -0.998138, 0.002655, -0.06064, -0.998138, 0.002655, -0.06064, -0.998138, 0.002655, -0.06064, -0.998138, 0.002655, -0.06064, -0.998138, 0.002655, -0.06064, -0.998138, -0.661489, -0.717734, -0.217383, -0.997955, -0.063509, -0.006165, -0.997955, -0.063509, -0.006165, 0.749809, -0.627888, -0.208625, 0.997955, 0.063509, 0.006165, 0.997955, 0.063509, 0.006165, -0.661489, -0.717734, -0.217383, 0.749809, -0.627888, -0.208625, 0.749809, -0.627888, -0.208625, -0.013245, 0.301004, -0.95352, -0.013245, 0.301004, -0.95352, -0.013245, 0.301004, -0.95352, 0.013245, -0.301004, 0.95352, 0.013245, -0.301004, 0.95352, 0.013245, -0.301004, 0.95352, -0.012207, 0.277657, -0.96057, -0.012207, 0.277657, -0.96057, -0.012207, 0.277657, -0.96057, 0.012207, -0.277657, 0.96057, 0.012207, -0.277657, 0.96057, 0.012207, -0.277657, 0.96057, 0.012207, -0.277657, 0.96057, 0.012207, -0.277657, 0.96057, 0.012207, -0.277657, 0.96057, -0.012207, 0.277657, -0.96057, -0.012207, 0.277657, -0.96057, -0.012207, 0.277657, -0.96057, -0.963744, 0.252754, 0.08533, -0.963744, 0.252754, 0.08533, -0.999542, -0.029511, 0.004181, 0.999023, 0.043977, 0.0, 0.999023, 0.043977, 0.0, 0.999023, 0.043977, 0.0, 0.745323, -0.637867, -0.193854, 0.745323, -0.637867, -0.193854, -0.859371, -0.494003, -0.13184, 0.745323, -0.637867, -0.193854, 0.999023, 0.043977, 0.0, 0.999023, 0.043977, 0.0, -0.859371, -0.494003, -0.13184, -0.963744, 0.252754, 0.08533, -0.963744, 0.252754, 0.08533, -0.03412, 0.775475, -0.630421, -0.397534, 0.660909, -0.636464, -0.537522, 0.841548, 0.053011, -0.005463, 0.124393, -0.992187, -0.036836, 0.114505, -0.992737, -0.397534, 0.660909, -0.636464, 0.014313, -0.325083, -0.945555, 0.203192, -0.265542, -0.942412, -0.036836, 0.114505, -0.992737, 0.019288, -0.438093, 0.898709, -9.2e-05, 0.002319, 0.999969, -0.031465, -0.007538, 0.999451, -0.030488, 0.692679, 0.720573, -0.393902, 0.578143, 0.71453, -0.031465, -0.007538, 0.999451, -0.030488, 0.692679, 0.720573, -0.043886, 0.997131, 0.06122, -0.537522, 0.841548, 0.053011, -0.397534, 0.660909, -0.636464, -0.654897, 0.380383, -0.652974, -0.887143, 0.460463, 0.03061, -0.397534, 0.660909, -0.636464, -0.036836, 0.114505, -0.992737, -0.059053, 0.090274, -0.99414, 0.203192, -0.265542, -0.942412, 0.336985, -0.119694, -0.933836, -0.059053, 0.090274, -0.99414, 0.208197, -0.378552, 0.901852, -0.031465, -0.007538, 0.999451, -0.053682, -0.03177, 0.998047, -0.393902, 0.578143, 0.71453, -0.651265, 0.297586, 0.69805, -0.053682, -0.03177, 0.998047, -0.393902, 0.578143, 0.71453, -0.537522, 0.841548, 0.053011, -0.887143, 0.460463, 0.03061, -0.654897, 0.380383, -0.652974, -0.737266, 0.009003, -0.675497, -0.999023, -0.043977, 0.0, -0.654897, 0.380383, -0.652974, -0.059053, 0.090274, -0.99414, -0.066164, 0.058229, -0.996094, 0.336985, -0.119694, -0.933836, 0.379803, 0.073336, -0.922117, -0.066164, 0.058229, -0.996094, 0.34196, -0.232704, 0.910428, -0.053682, -0.03177, 0.998047, -0.060793, -0.063814, 0.996094, -0.053682, -0.03177, 0.998047, -0.651265, 0.297586, 0.69805, -0.733634, -0.073763, 0.675497, -0.651265, 0.297586, 0.69805, -0.887143, 0.460463, 0.03061, -0.999023, -0.043977, 0.0, -0.999023, -0.043977, 0.0, -0.737266, 0.009003, -0.675497, -0.622578, -0.353679, -0.69805, -0.737266, 0.009003, -0.675497, -0.066164, 0.058229, -0.996094, -0.056246, 0.026917, -0.998047, 0.379803, 0.073336, -0.922117, 0.3202, 0.261879, -0.910428, -0.056246, 0.026917, -0.998047, -0.060793, -0.063814, 0.996094, -0.050874, -0.095126, 0.99414, 0.325175, 0.148869, 0.933836, -0.060793, -0.063814, 0.996094, -0.733634, -0.073763, 0.675497, -0.618915, -0.436476, 0.652974, -0.999023, -0.043977, 0.0, -0.843226, -0.536668, -0.03061, -0.618915, -0.436476, 0.652974, -0.843226, -0.536668, -0.03061, -0.622578, -0.353679, -0.69805, -0.341533, -0.610523, -0.71453, -0.056246, 0.026917, -0.998047, -0.031983, 0.004761, -0.999451, -0.341533, -0.610523, -0.71453, -0.056246, 0.026917, -0.998047, 0.3202, 0.261879, -0.910428, 0.174108, 0.395367, -0.901852, -0.050874, -0.095126, 0.99414, -0.026612, -0.117283, 0.992737, 0.179083, 0.282357, 0.942412, -0.050874, -0.095126, 0.99414, -0.618915, -0.436476, 0.652974, -0.337901, -0.693319, 0.636464, -0.843226, -0.536668, -0.03061, -0.46147, -0.885556, -0.053011, -0.337901, -0.693319, 0.636464, -0.46147, -0.885556, -0.053011, -0.341533, -0.610523, -0.71453, 0.030488, -0.692679, -0.720573, -0.031983, 0.004761, -0.999451, 9.2e-05, -0.002319, -0.999969, 0.030488, -0.692679, -0.720573, 0.174108, 0.395367, -0.901852, -0.019288, 0.438093, -0.898709, 9.2e-05, -0.002319, -0.999969, -0.026612, -0.117283, 0.992737, 0.005463, -0.124393, 0.992187, -0.014313, 0.325083, 0.945555, -0.026612, -0.117283, 0.992737, -0.337901, -0.693319, 0.636464, 0.03412, -0.775475, 0.630421, -0.46147, -0.885556, -0.053011, 0.043886, -0.997131, -0.06122, 0.03412, -0.775475, 0.630421, 0.030488, -0.692679, -0.720573, 0.393902, -0.578143, -0.71453, 0.537522, -0.841548, -0.053011, 0.030488, -0.692679, -0.720573, 9.2e-05, -0.002319, -0.999969, 0.031465, 0.007538, -0.999451, -0.019288, 0.438093, -0.898709, -0.208197, 0.378552, -0.901852, 0.031465, 0.007538, -0.999451, 0.005463, -0.124393, 0.992187, 0.036836, -0.114505, 0.992737, -0.203192, 0.265542, 0.942412, 0.03412, -0.775475, 0.630421, 0.397534, -0.660909, 0.636464, 0.036836, -0.114505, 0.992737, 0.03412, -0.775475, 0.630421, 0.043886, -0.997131, -0.06122, 0.537522, -0.841548, -0.053011, 0.393902, -0.578143, -0.71453, 0.651265, -0.297586, -0.69805, 0.887143, -0.460463, -0.03061, 0.393902, -0.578143, -0.71453, 0.031465, 0.007538, -0.999451, 0.053682, 0.03177, -0.998047, -0.208197, 0.378552, -0.901852, -0.34196, 0.232704, -0.910428, 0.053682, 0.03177, -0.998047, -0.203192, 0.265542, 0.942412, 0.036836, -0.114505, 0.992737, 0.059053, -0.090274, 0.99414, 0.397534, -0.660909, 0.636464, 0.654897, -0.380383, 0.652974, 0.059053, -0.090274, 0.99414, 0.397534, -0.660909, 0.636464, 0.537522, -0.841548, -0.053011, 0.887143, -0.460463, -0.03061, 0.651265, -0.297586, -0.69805, 0.733634, 0.073763, -0.675497, 0.999023, 0.043977, 0.0, 0.651265, -0.297586, -0.69805, 0.053682, 0.03177, -0.998047, 0.060762, 0.063814, -0.996094, 0.053682, 0.03177, -0.998047, -0.34196, 0.232704, -0.910428, -0.384777, 0.039644, -0.922117, -0.336985, 0.119694, 0.933836, 0.059053, -0.090274, 0.99414, 0.066164, -0.058229, 0.996094, 0.654897, -0.380383, 0.652974, 0.737266, -0.009003, 0.675497, 0.066164, -0.058229, 0.996094, 0.654897, -0.380383, 0.652974, 0.887143, -0.460463, -0.03061, 0.999023, 0.043977, 0.0, 0.733634, 0.073763, -0.675497, 0.618915, 0.436476, -0.652974, 0.843226, 0.536668, 0.03061, 0.060762, 0.063814, -0.996094, 0.050874, 0.095126, -0.99414, 0.618915, 0.436476, -0.652974, 0.060762, 0.063814, -0.996094, -0.384777, 0.039644, -0.922117, -0.325175, -0.148869, -0.933836, 0.066164, -0.058229, 0.996094, 0.056246, -0.026917, 0.998047, -0.32017, -0.261879, 0.910428, 0.066164, -0.058229, 0.996094, 0.737266, -0.009003, 0.675497, 0.622578, 0.353679, 0.69805, 0.999023, 0.043977, 0.0, 0.843226, 0.536668, 0.03061, 0.622578, 0.353679, 0.69805, 0.618915, 0.436476, -0.652974, 0.337901, 0.693319, -0.636464, 0.46147, 0.885556, 0.053011, 0.050874, 0.095126, -0.99414, 0.026612, 0.117283, -0.992737, 0.337901, 0.693319, -0.636464, 0.050874, 0.095126, -0.99414, -0.325175, -0.148869, -0.933836, -0.179083, -0.282357, -0.942412, 0.056246, -0.026917, 0.998047, 0.031983, -0.004761, 0.999451, -0.174108, -0.395367, 0.901852, 0.056246, -0.026917, 0.998047, 0.622578, 0.353679, 0.69805, 0.341533, 0.610523, 0.71453, 0.843226, 0.536668, 0.03061, 0.46147, 0.885556, 0.053011, 0.341533, 0.610523, 0.71453, 0.337901, 0.693319, -0.636464, -0.03412, 0.775475, -0.630421, -0.043886, 0.997131, 0.06122, 0.337901, 0.693319, -0.636464, 0.026612, 0.117283, -0.992737, -0.005463, 0.124393, -0.992187, 0.026612, 0.117283, -0.992737, -0.179083, -0.282357, -0.942412, 0.014313, -0.325083, -0.945555, 0.031983, -0.004761, 0.999451, -9.2e-05, 0.002319, 0.999969, 0.019288, -0.438093, 0.898709, 0.341533, 0.610523, 0.71453, -0.030488, 0.692679, 0.720573, -9.2e-05, 0.002319, 0.999969, 0.46147, 0.885556, 0.053011, -0.043886, 0.997131, 0.06122, -0.030488, 0.692679, 0.720573, -0.495743, -0.107639, 0.861751, -0.495743, -0.107639, 0.861751, -0.999023, -0.043977, 0.0, -0.495743, -0.107639, 0.861751, 0.503281, -0.063662, 0.861751, 0.503281, -0.063662, 0.861751, 0.999023, 0.043977, 0.0, 0.999023, 0.043977, 0.0, 0.503281, -0.063662, 0.861751, 0.999023, 0.043977, 0.0, 0.495743, 0.107639, -0.861751, 0.495743, 0.107639, -0.861751, -0.503281, 0.063662, -0.861751, -0.503281, 0.063662, -0.861751, 0.495743, 0.107639, -0.861751, -0.503281, 0.063662, -0.861751, -0.999023, -0.043977, 0.0, -0.999023, -0.043977, 0.0, -0.537522, 0.841578, 0.052553, -0.537522, 0.841578, 0.052553, -0.999023, -0.043977, 0.0, 0.46147, 0.885586, 0.052553, 0.46147, 0.885586, 0.052553, -0.537522, 0.841578, 0.052553, 0.46147, 0.885586, 0.052553, 0.999023, 0.043977, 0.0, 0.999023, 0.043977, 0.0, 0.999023, 0.043977, 0.0, 0.537522, -0.841578, -0.052553, 0.537522, -0.841578, -0.052553, -0.46147, -0.885586, -0.052553, -0.46147, -0.885586, -0.052553, 0.537522, -0.841578, -0.052553, -0.46147, -0.885586, -0.052553, -0.999023, -0.043977, 0.0, -0.999023, -0.043977, 0.0, 0.002655, -0.06064, 0.998138, 0.002655, -0.06064, 0.998138, 0.002655, -0.06064, 0.998138, 0.002655, -0.06064, 0.998138, 0.002655, -0.06064, 0.998138, 0.002655, -0.06064, 0.998138, 0.002655, -0.06064, 0.998138, 0.002655, -0.06064, 0.998138, 0.002655, -0.06064, 0.998138, -0.996368, -0.084841, 0.0, -0.996368, -0.084841, 0.0, -0.498184, -0.042421, -0.866024, -0.498184, -0.042421, -0.866024, 0.498184, 0.042421, -0.866024, 0.498184, 0.042421, -0.866024, 0.498184, 0.042421, -0.866024, 0.498184, 0.042421, -0.866024, 0.996368, 0.084841, 0.0, 0.996368, 0.084841, 0.0, 0.498184, 0.042421, 0.866024, 0.498184, 0.042421, 0.866024, 0.498184, 0.042421, 0.866024, -0.498184, -0.042421, 0.866024, -0.498184, -0.042421, 0.866024, -0.498184, -0.042421, 0.866024, -0.996368, -0.084841, 0.0, -0.996368, -0.084841, 0.0, 0.623859, 0.096286, 0.775536, 0.518265, 0.567217, 0.640004, -0.606708, 0.471419, 0.640004, -0.903745, -0.371776, 0.212104, -0.729423, 0.653401, -0.202368, -0.606708, 0.471419, -0.640004, -0.606708, 0.471419, -0.640004, 0.518265, 0.567217, -0.640004, 0.623859, 0.096286, -0.775536, 0.953581, -0.213599, -0.212104, 0.608448, 0.767327, 0.202368, 0.518265, 0.567217, 0.640004, 0.953581, -0.213599, -0.212104, 0.629688, -0.51146, -0.584674, -0.534165, -0.610553, -0.584674, -0.606708, 0.471419, 0.640004, 0.518265, 0.567217, 0.640004, 0.608448, 0.767327, 0.202368, -0.606708, 0.471419, -0.640004, -0.729423, 0.653401, -0.202368, 0.608448, 0.767327, -0.202368, -0.729423, 0.653401, 0.202368, 0.608448, 0.767327, 0.202368, 0.608448, 0.767327, -0.202368, -0.903745, -0.371776, -0.212104, -0.534165, -0.610553, -0.584674, -0.472152, -0.687979, 0.551103, -0.903745, -0.371776, -0.212104, -0.903745, -0.371776, 0.212104, 0.953581, -0.213599, 0.212104, 0.518265, 0.567217, -0.640004, 0.608448, 0.767327, -0.202368, 0.953581, -0.213599, 0.212104, 0.608448, 0.767327, -0.202368, 0.608448, 0.767327, 0.202368, 0.953581, -0.213599, -0.212104, -0.606708, 0.471419, 0.640004, -0.729423, 0.653401, 0.202368, -0.903745, -0.371776, -0.212104, -0.729423, 0.653401, 0.202368, -0.729423, 0.653401, -0.202368, -0.903745, -0.371776, 0.212104, -0.534165, -0.610553, 0.584674, -0.472152, -0.687979, -0.551103, 0.581652, -0.598254, -0.551103, -0.472152, -0.687979, 0.551103, -0.534165, -0.610553, -0.584674, 0.629688, -0.51146, -0.584674, 0.623859, 0.096286, 0.775536, -0.631184, -0.010559, 0.775536, -0.472152, -0.687979, 0.551103, 0.623859, 0.096286, -0.775536, 0.581652, -0.598254, -0.551103, -0.472152, -0.687979, -0.551103, 0.953581, -0.213599, -0.212104, 0.623859, 0.096286, 0.775536, 0.581652, -0.598254, 0.551103, 0.953581, -0.213599, 0.212104, -0.903745, -0.371776, 0.212104, -0.534165, -0.610553, 0.584674, -0.903745, -0.371776, 0.212104, -0.631184, -0.010559, -0.775536, -0.472152, -0.687979, -0.551103, 0.953581, -0.213599, 0.212104, 0.629688, -0.51146, 0.584674, 0.581652, -0.598254, -0.551103, -0.218757, 0.313974, 0.923856, -0.036317, 0.052126, 0.997955, -0.005371, 0.063295, 0.997955, -0.036317, 0.052126, 0.997955, 0.218757, -0.313974, 0.923856, 0.032441, -0.381298, 0.923856, 0.218757, -0.313974, -0.923856, -0.036317, 0.052126, -0.997955, -0.005371, 0.063295, -0.997955, -0.005371, 0.063295, -0.997955, -0.036317, 0.052126, -0.997955, -0.218757, 0.313974, -0.923856, -0.638539, 0.185858, 0.746757, -0.057527, 0.026978, 0.997955, -0.036317, 0.052126, 0.997955, -0.036317, 0.052126, 0.997955, -0.057527, 0.026978, 0.997955, 0.346446, -0.162511, 0.923856, 0.346446, -0.162511, -0.923856, -0.057497, 0.026978, -0.997955, -0.036317, 0.052126, -0.997955, -0.036317, 0.052126, -0.997955, -0.057497, 0.026978, -0.997955, -0.638539, 0.185858, -0.746757, -0.981353, 0.192145, 0.0, -0.998596, -0.052736, 0.0, -0.741081, -0.047182, 0.669698, -0.741081, -0.047182, 0.669698, -0.063295, -0.005371, 0.997955, -0.057527, 0.026978, 0.997955, -0.063295, -0.005371, 0.997955, 0.381298, 0.032441, 0.923856, 0.346446, -0.162511, 0.923856, 0.381298, 0.032441, -0.923856, -0.063295, -0.005371, -0.997955, -0.057497, 0.026978, -0.997955, -0.057497, 0.026978, -0.997955, -0.063295, -0.005371, -0.997955, -0.741081, -0.047182, -0.669698, -0.741081, -0.047182, -0.669698, -0.998596, -0.052736, 0.0, -0.981353, 0.192145, 0.0, -0.998596, -0.052736, 0.0, -0.82046, -0.571642, 0.0, -0.603992, -0.42085, 0.676778, -0.603992, -0.42085, 0.676778, -0.052126, -0.036317, 0.997955, -0.063295, -0.005371, 0.997955, -0.052126, -0.036317, 0.997955, 0.313974, 0.218757, 0.923856, 0.381298, 0.032441, 0.923856, 0.381298, 0.032441, -0.923856, 0.313974, 0.218757, -0.923856, -0.052126, -0.036317, -0.997955, -0.063295, -0.005371, -0.997955, -0.052126, -0.036317, -0.997955, -0.603992, -0.42085, -0.676778, -0.603992, -0.42085, -0.676778, -0.82046, -0.571642, 0.0, -0.998596, -0.052736, 0.0, -0.82046, -0.571642, 0.0, -0.424696, -0.905301, 0.0, -0.312662, -0.666463, 0.676778, -0.312662, -0.666463, 0.676778, -0.026978, -0.057497, 0.997955, -0.052126, -0.036317, 0.997955, -0.052126, -0.036317, 0.997955, -0.026978, -0.057497, 0.997955, 0.162511, 0.346446, 0.923856, 0.162511, 0.346446, -0.923856, -0.026978, -0.057497, -0.997955, -0.052126, -0.036317, -0.997955, -0.052126, -0.036317, -0.997955, -0.026978, -0.057497, -0.997955, -0.312662, -0.666463, -0.676778, -0.312662, -0.666463, -0.676778, -0.424696, -0.905301, 0.0, -0.82046, -0.571642, 0.0, -0.424696, -0.905301, 0.0, 0.084841, -0.996368, 0.0, 0.062441, -0.733512, 0.676778, 0.062441, -0.733512, 0.676778, 0.005371, -0.063295, 0.997955, -0.026978, -0.057497, 0.997955, -0.026978, -0.057497, 0.997955, 0.005371, -0.063295, 0.997955, -0.032441, 0.381298, 0.923856, -0.032441, 0.381298, -0.923856, 0.005371, -0.063295, -0.997955, -0.026978, -0.057497, -0.997955, -0.026978, -0.057497, -0.997955, 0.005371, -0.063295, -0.997955, 0.062441, -0.733512, -0.676778, 0.062441, -0.733512, -0.676778, 0.084841, -0.996368, 0.0, -0.424696, -0.905301, 0.0, 0.084841, -0.996368, 0.0, 0.571642, -0.82046, 0.0, 0.42085, -0.603992, 0.676778, 0.42085, -0.603992, 0.676778, 0.036317, -0.052126, 0.997955, 0.005371, -0.063295, 0.997955, 0.005371, -0.063295, 0.997955, 0.036317, -0.052126, 0.997955, -0.218757, 0.313974, 0.923856, -0.032441, 0.381298, -0.923856, -0.218757, 0.313974, -0.923856, 0.036317, -0.052126, -0.997955, 0.036317, -0.052126, -0.997955, 0.42085, -0.603992, -0.676778, 0.062441, -0.733512, -0.676778, 0.42085, -0.603992, -0.676778, 0.571642, -0.82046, 0.0, 0.084841, -0.996368, 0.0, 0.905301, -0.424696, 0.0, 0.666463, -0.312662, 0.676778, 0.42085, -0.603992, 0.676778, 0.42085, -0.603992, 0.676778, 0.666463, -0.312662, 0.676778, 0.057497, -0.026978, 0.997955, 0.036317, -0.052126, 0.997955, 0.057497, -0.026978, 0.997955, -0.346446, 0.162511, 0.923856, -0.346446, 0.162511, -0.923856, 0.057497, -0.026978, -0.997955, 0.036317, -0.052126, -0.997955, 0.057497, -0.026978, -0.997955, 0.666463, -0.312662, -0.676778, 0.42085, -0.603992, -0.676778, 0.42085, -0.603992, -0.676778, 0.666463, -0.312662, -0.676778, 0.905301, -0.424696, 0.0, 0.905301, -0.424696, 0.0, 0.984375, -0.175909, 0.0, 0.636738, -0.046937, 0.769616, 0.636738, -0.046937, 0.769616, 0.063295, 0.005371, 0.997955, 0.057497, -0.026978, 0.997955, 0.063295, 0.005371, 0.997955, -0.381298, -0.032441, 0.923856, -0.346446, 0.162511, 0.923856, -0.346446, 0.162511, -0.923856, -0.381298, -0.032441, -0.923856, 0.063295, 0.005371, -0.997955, 0.057497, -0.026978, -0.997955, 0.063295, 0.005371, -0.997955, 0.636738, -0.046937, -0.769616, 0.636738, -0.046937, -0.769616, 0.984375, -0.175909, 0.0, 0.905301, -0.424696, 0.0, 0.313974, 0.218757, 0.923856, 0.052126, 0.036317, 0.997955, 0.063295, 0.005371, 0.997955, 0.063295, 0.005371, 0.997955, 0.052126, 0.036317, 0.997955, -0.313974, -0.218757, 0.923856, -0.313974, -0.218757, -0.923856, 0.052126, 0.036317, -0.997955, 0.063295, 0.005371, -0.997955, 0.063295, 0.005371, -0.997955, 0.052126, 0.036317, -0.997955, 0.313974, 0.218757, -0.923856, 0.313974, 0.218757, 0.923856, 0.162511, 0.346446, 0.923856, 0.026978, 0.057527, 0.997955, 0.052126, 0.036317, 0.997955, 0.026978, 0.057527, 0.997955, -0.162511, -0.346446, 0.923856, -0.162511, -0.346446, -0.923856, 0.026978, 0.057527, -0.997955, 0.052126, 0.036317, -0.997955, 0.026978, 0.057527, -0.997955, 0.162511, 0.346446, -0.923856, 0.313974, 0.218757, -0.923856, 0.162511, 0.346446, 0.923856, -0.032441, 0.381298, 0.923856, -0.005371, 0.063295, 0.997955, -0.005371, 0.063295, 0.997955, 0.032441, -0.381298, 0.923856, -0.162511, -0.346446, 0.923856, -0.162511, -0.346446, -0.923856, 0.032441, -0.381298, -0.923856, -0.005371, 0.063295, -0.997955, -0.005371, 0.063295, -0.997955, -0.032441, 0.381298, -0.923856, 0.162511, 0.346446, -0.923856, -0.580279, 0.814417, 0.0, -0.51738, 0.732109, 0.443068, -0.076174, 0.893277, 0.442946, -0.076144, 0.893277, -0.442946, -0.51738, 0.732109, -0.443068, -0.580279, 0.814417, 0.0, -0.580279, 0.814417, 0.0, -0.784143, 0.620563, 0.0, -0.710746, 0.569536, 0.412793, -0.710746, 0.569536, -0.412793, -0.784143, 0.620563, 0.0, -0.580279, 0.814417, 0.0, 0.814997, 0.579424, 0.0, 0.73162, 0.514817, 0.446822, 0.823115, 0.323832, 0.466414, 0.823115, 0.323832, -0.466414, 0.73162, 0.514817, -0.446822, 0.814997, 0.579424, 0.0, 0.424757, 0.905301, 0.0, 0.379284, 0.811853, 0.443831, 0.73162, 0.514817, 0.446822, 0.73162, 0.514817, -0.446822, 0.379284, 0.811853, -0.443831, 0.424757, 0.905301, 0.0, -0.084628, 0.996399, 0.0, -0.076174, 0.893277, 0.442946, 0.379284, 0.811853, 0.443831, 0.379284, 0.811853, -0.443831, -0.076144, 0.893277, -0.442946, -0.084628, 0.996399, 0.0, 0.083865, -0.996399, -0.010346, 0.087802, -0.996033, -0.014283, 0.071749, -0.997406, 0.0, 0.083865, -0.996399, 0.010346, 0.066897, -0.997742, 0.0, 0.071749, -0.997406, 0.0, 0.056642, -0.99826, 0.015778, 0.055452, -0.998291, 0.016968, 0.061739, -0.998077, 0.0, 0.056642, -0.99826, -0.015778, 0.063753, -0.997955, 0.0, 0.061739, -0.998077, 0.0, -0.81695, -0.576006, 0.027161, -0.821192, -0.569872, 0.029359, -0.42317, -0.905942, 0.011505, 0.569994, -0.821223, -0.025697, 0.575549, -0.817438, -0.021485, 0.086306, -0.995941, -0.025361, 0.569994, -0.821223, 0.025697, 0.081179, -0.996368, 0.0253, 0.086306, -0.995941, 0.025361, 0.081179, -0.996368, -0.0253, 0.086306, -0.995941, -0.025361, -0.42317, -0.905942, -0.011505, 0.770318, -0.637593, -0.0065, 0.569994, -0.821223, 0.025697, 0.575549, -0.817438, 0.021485, -0.938932, -0.341502, 0.04178, -0.938749, -0.341838, 0.043275, -0.821192, -0.569872, 0.029359, 0.770318, -0.637593, 0.0065, 0.771386, -0.636189, 0.013184, 0.575549, -0.817438, -0.021485, 0.081179, -0.996368, 0.0253, -0.426099, -0.904599, 0.009461, -0.42317, -0.905942, 0.011505, -0.81695, -0.576006, -0.027161, -0.426099, -0.904599, -0.009461, -0.42317, -0.905942, -0.011505, -0.938932, -0.341502, -0.04178, -0.81695, -0.576006, -0.027161, -0.821192, -0.569872, -0.029359};
+
+               // set UVs for Draken plane
+               static GLfloat j_35_draken_wheels_UVs[] = {0.060784, 0.965077, 0.229214, 0.949477, 0.229214, 0.965077, 0.229214, 0.949477, 0.060784, 0.933878, 0.229214, 0.933878, 0.229214, 0.933878, 0.060784, 0.918278, 0.229214, 0.918278, 0.060784, 0.980677, 0.229214, 0.965077, 0.229214, 0.980677, 0.229321, 0.949012, 0.060416, 0.933369, 0.229321, 0.933369, 0.229321, 0.933369, 0.060416, 0.917725, 0.229321, 0.917725, 0.060416, 0.9803, 0.229321, 0.964656, 0.229321, 0.9803, 0.060416, 0.964656, 0.229321, 0.949012, 0.229321, 0.964656, 0.252809, 0.967684, 0.278853, 0.94164, 0.278853, 0.967684, 0.302681, 0.174045, 0.264191, 0.231571, 0.264204, 0.174041, 0.264191, 0.231571, 0.302678, 0.212467, 0.264191, 0.212467, 0.264191, 0.212467, 0.302678, 0.192849, 0.264191, 0.192849, 0.302681, 0.231571, 0.264204, 0.212553, 0.264204, 0.23157, 0.302681, 0.212555, 0.264204, 0.192864, 0.264204, 0.212553, 0.264204, 0.192864, 0.302681, 0.174045, 0.264204, 0.174041, 0.340833, 0.174049, 0.302678, 0.231571, 0.302681, 0.174045, 0.302678, 0.231571, 0.340822, 0.212467, 0.302678, 0.212467, 0.302678, 0.212467, 0.340822, 0.19285, 0.302678, 0.192849, 0.340834, 0.231573, 0.302681, 0.212555, 0.302681, 0.231571, 0.340834, 0.212557, 0.302681, 0.192864, 0.302681, 0.212555, 0.302681, 0.192864, 0.340833, 0.174049, 0.302681, 0.174045, 0.379997, 0.174052, 0.340822, 0.231571, 0.340833, 0.174049, 0.379986, 0.231571, 0.340822, 0.212467, 0.340822, 0.231571, 0.379986, 0.212467, 0.340822, 0.19285, 0.340822, 0.212467, 0.340834, 0.231573, 0.379997, 0.212558, 0.340834, 0.212557, 0.340834, 0.212557, 0.379997, 0.192864, 0.340834, 0.192864, 0.340834, 0.192864, 0.379997, 0.174052, 0.340833, 0.174049, 0.379997, 0.174052, 0.418542, 0.231571, 0.379986, 0.231571, 0.418542, 0.231571, 0.379986, 0.212467, 0.379986, 0.231571, 0.379986, 0.212467, 0.418539, 0.19285, 0.379986, 0.192849, 0.418566, 0.231574, 0.379997, 0.212558, 0.379996, 0.231573, 0.379997, 0.212558, 0.41857, 0.192864, 0.379997, 0.192864, 0.41857, 0.192864, 0.379997, 0.174052, 0.379997, 0.192864, 0.418571, 0.174055, 0.457098, 0.231571, 0.418542, 0.231571, 0.457098, 0.231571, 0.418541, 0.212467, 0.418542, 0.231571, 0.457096, 0.212467, 0.418539, 0.19285, 0.418541, 0.212467, 0.418566, 0.231574, 0.457108, 0.212564, 0.418568, 0.21256, 0.418568, 0.21256, 0.457111, 0.192864, 0.41857, 0.192864, 0.457111, 0.192864, 0.418571, 0.174055, 0.41857, 0.192864, 0.495554, 0.174065, 0.457098, 0.231571, 0.457111, 0.174059, 0.457098, 0.231571, 0.495538, 0.212467, 0.457096, 0.212467, 0.495538, 0.212467, 0.457093, 0.19285, 0.457096, 0.212467, 0.457105, 0.231577, 0.495554, 0.212569, 0.457108, 0.212564, 0.495554, 0.212569, 0.457111, 0.192864, 0.457108, 0.212564, 0.457111, 0.192864, 0.495554, 0.174065, 0.457111, 0.174059, 0.069927, 0.174031, 0.030737, 0.231571, 0.030742, 0.174029, 0.030737, 0.231571, 0.069913, 0.212467, 0.030738, 0.212468, 0.069913, 0.212467, 0.030738, 0.192831, 0.030738, 0.212468, 0.030743, 0.231571, 0.069929, 0.212555, 0.030743, 0.212559, 0.069929, 0.212555, 0.030742, 0.192864, 0.030743, 0.212559, 0.030742, 0.192864, 0.069927, 0.174031, 0.030742, 0.174029, 0.109124, 0.174033, 0.069911, 0.231571, 0.069927, 0.174031, 0.069911, 0.231571, 0.109101, 0.212467, 0.069913, 0.212467, 0.069913, 0.212467, 0.109102, 0.192849, 0.069916, 0.19285, 0.109126, 0.231568, 0.069929, 0.212555, 0.069932, 0.231571, 0.109125, 0.212552, 0.069927, 0.192864, 0.069929, 0.212555, 0.069927, 0.192864, 0.109124, 0.174033, 0.069927, 0.174031, 0.146773, 0.174037, 0.1091, 0.231571, 0.109124, 0.174033, 0.146765, 0.231571, 0.109101, 0.212467, 0.1091, 0.231571, 0.146766, 0.212467, 0.109102, 0.192849, 0.109101, 0.212467, 0.109126, 0.231568, 0.146773, 0.212552, 0.109125, 0.212552, 0.109125, 0.212552, 0.146773, 0.192864, 0.109124, 0.192864, 0.109124, 0.192864, 0.146773, 0.174037, 0.109124, 0.174033, 0.146773, 0.174037, 0.186061, 0.231571, 0.146765, 0.231571, 0.146765, 0.231571, 0.186061, 0.212467, 0.146766, 0.212467, 0.146766, 0.212467, 0.186061, 0.19285, 0.146767, 0.192849, 0.186063, 0.23157, 0.146773, 0.212552, 0.146773, 0.231569, 0.186063, 0.212553, 0.146773, 0.192864, 0.146773, 0.212552, 0.186063, 0.192864, 0.146773, 0.174037, 0.146773, 0.192864, 0.22483, 0.174039, 0.186061, 0.231571, 0.186063, 0.174037, 0.224828, 0.231571, 0.186061, 0.212467, 0.186061, 0.231571, 0.224828, 0.212467, 0.186061, 0.19285, 0.186061, 0.212467, 0.186063, 0.23157, 0.22483, 0.212552, 0.186063, 0.212553, 0.186063, 0.212553, 0.22483, 0.192864, 0.186063, 0.192864, 0.186063, 0.192864, 0.22483, 0.174039, 0.186063, 0.174037, 0.264204, 0.174041, 0.224828, 0.231571, 0.22483, 0.174039, 0.224828, 0.231571, 0.264191, 0.212467, 0.224828, 0.212467, 0.264191, 0.212467, 0.224828, 0.192849, 0.224828, 0.212467, 0.22483, 0.231569, 0.264204, 0.212553, 0.22483, 0.212552, 0.264204, 0.212553, 0.22483, 0.192864, 0.22483, 0.212552, 0.22483, 0.192864, 0.264204, 0.174041, 0.22483, 0.174039, 0.758797, 0.557226, 0.775408, 0.585992, 0.714477, 0.602144, 0.758805, 0.647974, 0.73003, 0.664586, 0.714477, 0.602144, 0.73003, 0.664586, 0.696805, 0.664589, 0.714477, 0.602144, 0.775418, 0.619205, 0.758805, 0.647974, 0.714477, 0.602144, 0.668067, 0.557217, 0.696823, 0.540613, 0.714477, 0.602144, 0.651443, 0.585991, 0.668067, 0.557217, 0.714477, 0.602144, 0.668087, 0.647959, 0.651443, 0.619208, 0.714477, 0.602144, 0.696823, 0.540613, 0.729973, 0.540642, 0.714477, 0.602144, 0.729973, 0.540642, 0.758797, 0.557226, 0.714477, 0.602144, 0.651443, 0.619208, 0.651443, 0.585991, 0.714477, 0.602144, 0.775408, 0.585992, 0.775418, 0.619205, 0.714477, 0.602144, 0.696805, 0.664589, 0.668087, 0.647959, 0.714477, 0.602144, 0.775406, 0.585996, 0.775414, 0.619212, 0.714247, 0.602548, 0.668076, 0.647978, 0.65144, 0.619213, 0.714247, 0.602548, 0.775414, 0.619212, 0.758801, 0.64798, 0.714247, 0.602548, 0.758801, 0.64798, 0.730028, 0.664589, 0.714247, 0.602548, 0.65144, 0.585996, 0.668061, 0.557228, 0.714247, 0.602548, 0.65144, 0.619213, 0.65144, 0.585996, 0.714247, 0.602548, 0.730028, 0.664589, 0.696805, 0.664589, 0.714247, 0.602548, 0.729983, 0.540624, 0.758796, 0.557229, 0.714247, 0.602548, 0.696805, 0.664589, 0.668076, 0.647978, 0.714247, 0.602548, 0.668061, 0.557228, 0.696819, 0.54062, 0.714247, 0.602548, 0.696819, 0.54062, 0.729983, 0.540624, 0.714247, 0.602548, 0.758796, 0.557229, 0.775406, 0.585996, 0.714247, 0.602548, 0.264191, 0.231571, 0.302682, 0.174051, 0.264205, 0.174047, 0.264191, 0.231571, 0.302678, 0.212467, 0.302678, 0.231571, 0.264192, 0.212467, 0.302678, 0.192849, 0.302678, 0.212467, 0.264205, 0.212554, 0.302681, 0.231572, 0.264204, 0.23157, 0.264205, 0.192864, 0.302681, 0.212556, 0.264205, 0.212554, 0.264205, 0.192864, 0.302682, 0.174051, 0.302682, 0.192864, 0.302678, 0.231571, 0.340833, 0.174055, 0.302682, 0.174051, 0.302678, 0.231571, 0.340821, 0.212467, 0.340821, 0.231571, 0.302678, 0.212467, 0.340821, 0.19285, 0.340821, 0.212467, 0.302681, 0.212556, 0.340834, 0.231574, 0.302681, 0.231572, 0.302682, 0.192864, 0.340833, 0.212558, 0.302681, 0.212556, 0.302682, 0.192864, 0.340833, 0.174055, 0.340833, 0.192864, 0.340821, 0.231571, 0.379997, 0.174058, 0.340833, 0.174055, 0.340821, 0.212467, 0.379986, 0.231571, 0.340821, 0.231571, 0.340821, 0.19285, 0.379986, 0.212467, 0.340821, 0.212467, 0.340834, 0.231574, 0.379997, 0.212559, 0.379996, 0.231573, 0.340833, 0.212558, 0.379997, 0.192864, 0.379997, 0.212559, 0.340833, 0.192864, 0.379997, 0.174058, 0.379997, 0.192864, 0.379997, 0.174058, 0.418543, 0.231571, 0.418571, 0.174062, 0.379986, 0.212467, 0.418543, 0.231571, 0.379986, 0.231571, 0.379986, 0.212467, 0.41854, 0.19285, 0.418541, 0.212467, 0.379997, 0.212559, 0.418566, 0.231575, 0.379996, 0.231573, 0.379997, 0.212559, 0.41857, 0.192864, 0.418568, 0.212561, 0.379997, 0.174058, 0.41857, 0.192864, 0.379997, 0.192864, 0.418571, 0.174062, 0.457098, 0.231571, 0.457112, 0.174067, 0.418541, 0.212467, 0.457098, 0.231571, 0.418543, 0.231571, 0.41854, 0.19285, 0.457096, 0.212467, 0.418541, 0.212467, 0.418566, 0.231575, 0.457108, 0.212566, 0.457105, 0.231578, 0.418568, 0.212561, 0.457111, 0.192864, 0.457108, 0.212566, 0.418571, 0.174062, 0.457111, 0.192864, 0.41857, 0.192864, 0.457098, 0.231571, 0.495554, 0.174071, 0.457112, 0.174067, 0.457098, 0.231571, 0.495538, 0.212467, 0.495538, 0.231571, 0.457093, 0.19285, 0.495538, 0.212467, 0.457096, 0.212467, 0.457105, 0.231578, 0.495554, 0.21257, 0.495553, 0.231577, 0.457111, 0.192864, 0.495554, 0.21257, 0.457108, 0.212566, 0.457111, 0.192864, 0.495554, 0.174071, 0.495554, 0.192864, 0.030737, 0.231571, 0.069927, 0.174035, 0.030742, 0.174032, 0.030737, 0.231571, 0.069913, 0.212467, 0.069911, 0.231571, 0.030738, 0.192831, 0.069913, 0.212467, 0.030738, 0.212468, 0.030743, 0.231571, 0.069929, 0.212556, 0.069933, 0.231571, 0.030742, 0.192864, 0.069929, 0.212556, 0.030743, 0.21256, 0.030742, 0.192864, 0.069927, 0.174035, 0.069927, 0.192864, 0.069911, 0.231571, 0.109124, 0.174038, 0.069927, 0.174035, 0.069911, 0.231571, 0.109102, 0.212467, 0.1091, 0.231571, 0.069913, 0.212467, 0.109103, 0.192849, 0.109102, 0.212467, 0.069929, 0.212556, 0.109126, 0.231569, 0.069933, 0.231571, 0.069927, 0.192864, 0.109125, 0.212553, 0.069929, 0.212556, 0.069927, 0.192864, 0.109124, 0.174038, 0.109124, 0.192864, 0.1091, 0.231571, 0.146774, 0.174041, 0.109124, 0.174038, 0.109102, 0.212467, 0.146766, 0.231571, 0.1091, 0.231571, 0.109103, 0.192849, 0.146767, 0.212467, 0.109102, 0.212467, 0.109126, 0.231569, 0.146774, 0.212553, 0.146774, 0.23157, 0.109125, 0.212553, 0.146773, 0.192864, 0.146774, 0.212553, 0.109124, 0.192864, 0.146774, 0.174041, 0.146773, 0.192864, 0.146774, 0.174041, 0.186061, 0.231571, 0.186063, 0.174042, 0.146766, 0.231571, 0.186061, 0.212467, 0.186061, 0.231571, 0.146767, 0.212467, 0.186061, 0.192849, 0.186061, 0.212467, 0.146774, 0.212553, 0.186063, 0.231571, 0.146774, 0.23157, 0.146773, 0.192864, 0.186063, 0.212554, 0.146774, 0.212553, 0.146774, 0.174041, 0.186063, 0.192864, 0.146773, 0.192864, 0.186061, 0.231571, 0.22483, 0.174045, 0.186063, 0.174042, 0.186061, 0.212467, 0.224828, 0.231571, 0.186061, 0.231571, 0.186061, 0.192849, 0.224828, 0.212467, 0.186061, 0.212467, 0.186063, 0.231571, 0.22483, 0.212553, 0.22483, 0.231569, 0.186063, 0.212554, 0.22483, 0.192864, 0.22483, 0.212553, 0.186063, 0.192864, 0.22483, 0.174045, 0.22483, 0.192864, 0.224828, 0.231571, 0.264205, 0.174047, 0.22483, 0.174045, 0.224828, 0.231571, 0.264192, 0.212467, 0.264191, 0.231571, 0.224828, 0.192849, 0.264192, 0.212467, 0.224828, 0.212467, 0.22483, 0.231569, 0.264205, 0.212554, 0.264204, 0.23157, 0.22483, 0.192864, 0.264205, 0.212554, 0.22483, 0.212553, 0.22483, 0.192864, 0.264205, 0.174047, 0.264205, 0.192864, 0.730015, 0.664592, 0.71235, 0.603065, 0.758774, 0.647987, 0.775387, 0.586001, 0.71235, 0.603065, 0.758781, 0.557233, 0.758781, 0.557233, 0.71235, 0.603065, 0.730072, 0.540599, 0.775378, 0.619222, 0.71235, 0.603065, 0.775387, 0.586001, 0.651416, 0.619219, 0.71235, 0.603065, 0.667989, 0.648002, 0.651416, 0.586002, 0.71235, 0.603065, 0.651416, 0.619219, 0.696788, 0.540629, 0.71235, 0.603065, 0.668009, 0.557242, 0.667989, 0.648002, 0.71235, 0.603065, 0.696805, 0.664589, 0.696805, 0.664589, 0.71235, 0.603065, 0.730015, 0.664592, 0.668009, 0.557242, 0.71235, 0.603065, 0.651416, 0.586002, 0.758774, 0.647987, 0.71235, 0.603065, 0.775378, 0.619222, 0.730072, 0.540599, 0.71235, 0.603065, 0.696788, 0.540629, 0.775393, 0.61921, 0.713183, 0.602405, 0.775396, 0.585994, 0.668032, 0.557224, 0.713183, 0.602405, 0.651427, 0.585994, 0.775396, 0.585994, 0.713183, 0.602405, 0.758788, 0.557228, 0.758788, 0.557228, 0.713183, 0.602405, 0.730033, 0.54063, 0.651427, 0.619211, 0.713183, 0.602405, 0.668027, 0.647971, 0.651427, 0.585994, 0.713183, 0.602405, 0.651427, 0.619211, 0.730033, 0.54063, 0.713183, 0.602405, 0.696801, 0.540618, 0.730021, 0.664587, 0.713183, 0.602405, 0.758786, 0.647977, 0.696801, 0.540618, 0.713183, 0.602405, 0.668032, 0.557224, 0.668027, 0.647971, 0.713183, 0.602405, 0.696805, 0.664589, 0.696805, 0.664589, 0.713183, 0.602405, 0.730021, 0.664587, 0.758786, 0.647977, 0.713183, 0.602405, 0.775393, 0.61921, 0.023924, 0.508301, 0.028911, 0.590653, 0.023924, 0.590653, 0.028911, 0.817906, 0.023923, 0.752483, 0.028911, 0.752483, 0.023924, 0.590653, 0.028911, 0.752483, 0.023923, 0.752483, 0.334991, 0.955762, 0.622851, 0.791687, 0.622851, 0.955762, 0.349066, 0.617746, 0.061207, 0.453668, 0.349071, 0.453656, 0.062938, 0.763551, 0.263541, 0.887315, 0.265465, 0.759608, 0.424746, 0.515212, 0.625347, 0.638934, 0.422825, 0.642907, 0.422825, 0.642907, 0.62532, 0.755206, 0.339065, 0.762949, 0.062938, 0.647295, 0.265465, 0.759608, 0.349214, 0.639531, 0.024005, 0.508283, 0.028933, 0.436114, 0.028933, 0.508283, 0.028933, 0.887809, 0.024005, 0.817909, 0.028933, 0.817909, 0.028933, 0.59065, 0.024005, 0.752479, 0.024005, 0.59065, 0.028933, 0.817909, 0.024005, 0.752479, 0.028933, 0.752479, 0.024005, 0.508283, 0.028933, 0.59065, 0.024005, 0.59065, 0.423304, 0.025497, 0.50219, 0.064955, 0.502267, 0.025515, 0.423272, 0.064943, 0.50218, 0.104492, 0.50219, 0.064955, 0.423269, 0.104478, 0.502173, 0.143641, 0.50218, 0.104492, 0.502294, 0.142818, 0.423304, 0.104635, 0.502286, 0.104637, 0.423304, 0.104635, 0.502331, 0.064485, 0.502286, 0.104637, 0.502331, 0.064485, 0.423304, 0.025497, 0.502267, 0.025515, 0.346749, 0.025468, 0.423272, 0.064943, 0.423304, 0.025497, 0.423272, 0.064943, 0.346694, 0.104463, 0.423269, 0.104478, 0.346694, 0.104463, 0.42327, 0.143634, 0.423269, 0.104478, 0.423311, 0.142815, 0.346734, 0.104626, 0.423304, 0.104635, 0.346734, 0.104626, 0.423322, 0.064486, 0.423304, 0.104635, 0.423322, 0.064486, 0.346749, 0.025468, 0.423304, 0.025497, 0.26691, 0.025463, 0.346714, 0.064932, 0.346749, 0.025468, 0.346714, 0.064932, 0.266859, 0.104468, 0.346694, 0.104463, 0.266859, 0.104468, 0.346731, 0.143628, 0.346694, 0.104463, 0.346746, 0.142818, 0.266947, 0.104622, 0.346734, 0.104626, 0.346734, 0.104626, 0.266944, 0.064487, 0.346764, 0.064486, 0.346764, 0.064486, 0.26691, 0.025463, 0.346749, 0.025468, 0.26691, 0.025463, 0.184296, 0.064927, 0.266873, 0.064926, 0.266873, 0.064926, 0.184323, 0.104464, 0.266859, 0.104468, 0.184323, 0.104464, 0.266959, 0.143628, 0.266859, 0.104468, 0.184334, 0.142817, 0.266947, 0.104622, 0.266922, 0.142816, 0.266947, 0.104622, 0.184304, 0.064487, 0.266944, 0.064487, 0.184304, 0.064487, 0.26691, 0.025463, 0.266944, 0.064487, 0.184291, 0.025463, 0.104614, 0.064942, 0.184296, 0.064927, 0.104614, 0.064942, 0.184323, 0.104464, 0.184296, 0.064927, 0.184323, 0.104464, 0.10472, 0.143637, 0.184345, 0.143624, 0.104705, 0.14282, 0.184333, 0.104622, 0.184334, 0.142817, 0.184333, 0.104622, 0.104612, 0.064489, 0.184304, 0.064487, 0.104612, 0.064489, 0.184291, 0.025463, 0.184304, 0.064487, 0.104594, 0.025458, 0.025073, 0.065012, 0.104614, 0.064942, 0.025073, 0.065012, 0.104657, 0.104483, 0.104614, 0.064942, 0.025103, 0.104564, 0.10472, 0.143637, 0.104657, 0.104483, 0.025133, 0.142833, 0.104654, 0.104596, 0.104705, 0.14282, 0.104654, 0.104596, 0.02507, 0.064496, 0.104612, 0.064489, 0.02507, 0.064496, 0.104594, 0.025458, 0.104612, 0.064489, 0.903879, 0.025602, 0.98289, 0.065076, 0.982868, 0.025562, 0.98289, 0.065076, 0.903837, 0.104558, 0.982965, 0.104647, 0.903837, 0.104558, 0.983056, 0.143707, 0.982965, 0.104647, 0.903791, 0.142818, 0.982991, 0.104501, 0.983081, 0.142831, 0.90384, 0.10463, 0.982909, 0.064493, 0.982991, 0.104501, 0.982909, 0.064493, 0.903879, 0.025602, 0.982868, 0.025562, 0.82315, 0.025582, 0.903866, 0.065019, 0.903879, 0.025602, 0.903866, 0.065019, 0.823148, 0.10454, 0.903837, 0.104558, 0.823148, 0.10454, 0.903799, 0.143673, 0.903837, 0.104558, 0.903791, 0.142818, 0.823149, 0.10465, 0.90384, 0.10463, 0.823149, 0.10465, 0.903871, 0.064484, 0.90384, 0.10463, 0.903871, 0.064484, 0.82315, 0.025582, 0.903879, 0.025602, 0.74162, 0.025574, 0.823149, 0.064995, 0.82315, 0.025582, 0.823149, 0.064995, 0.741593, 0.104523, 0.823148, 0.10454, 0.823148, 0.10454, 0.741554, 0.143653, 0.823148, 0.143662, 0.823148, 0.142816, 0.741663, 0.104642, 0.823149, 0.10465, 0.741663, 0.104642, 0.82315, 0.064483, 0.823149, 0.10465, 0.82315, 0.064483, 0.74162, 0.025574, 0.82315, 0.025582, 0.74162, 0.025574, 0.661679, 0.064981, 0.741577, 0.064986, 0.661679, 0.064981, 0.741593, 0.104523, 0.741577, 0.064986, 0.741593, 0.104523, 0.661672, 0.143658, 0.741554, 0.143653, 0.661679, 0.142816, 0.741663, 0.104642, 0.741556, 0.142817, 0.741663, 0.104642, 0.661772, 0.064483, 0.741652, 0.064483, 0.661772, 0.064483, 0.74162, 0.025574, 0.741652, 0.064483, 0.582985, 0.02554, 0.661679, 0.064981, 0.661731, 0.025562, 0.582952, 0.064968, 0.661715, 0.104519, 0.661679, 0.064981, 0.661715, 0.104519, 0.582936, 0.143649, 0.661672, 0.143658, 0.58299, 0.142816, 0.661831, 0.104649, 0.661679, 0.142816, 0.661831, 0.104649, 0.58301, 0.064484, 0.661772, 0.064483, 0.58301, 0.064484, 0.661731, 0.025562, 0.661772, 0.064483, 0.502267, 0.025515, 0.582952, 0.064968, 0.582985, 0.02554, 0.582952, 0.064968, 0.50218, 0.104492, 0.582947, 0.104506, 0.582947, 0.104506, 0.502173, 0.143641, 0.582936, 0.143649, 0.502294, 0.142818, 0.583023, 0.104654, 0.58299, 0.142816, 0.502286, 0.104637, 0.58301, 0.064484, 0.583023, 0.104654, 0.502331, 0.064485, 0.582985, 0.02554, 0.58301, 0.064484, 0.916098, 0.947831, 0.848977, 0.986573, 0.810144, 0.841949, 0.704267, 0.735993, 0.771406, 0.697234, 0.810144, 0.841949, 0.954913, 0.880638, 0.916098, 0.947831, 0.810144, 0.841949, 0.954901, 0.803113, 0.954913, 0.880638, 0.810144, 0.841949, 0.848959, 0.697219, 0.916096, 0.735999, 0.810144, 0.841949, 0.771412, 0.9866, 0.704308, 0.947789, 0.810144, 0.841949, 0.704308, 0.947789, 0.665494, 0.880684, 0.810144, 0.841949, 0.848977, 0.986573, 0.771412, 0.9866, 0.810144, 0.841949, 0.771406, 0.697234, 0.848959, 0.697219, 0.810144, 0.841949, 0.665494, 0.880684, 0.66552, 0.803122, 0.810144, 0.841949, 0.95491, 0.880768, 0.916098, 0.947877, 0.810144, 0.841926, 0.848958, 0.697282, 0.916095, 0.73604, 0.810144, 0.841926, 0.704305, 0.947915, 0.665493, 0.880726, 0.810144, 0.841926, 0.916095, 0.73604, 0.954898, 0.803221, 0.810144, 0.841926, 0.771406, 0.697268, 0.848958, 0.697282, 0.810144, 0.841926, 0.665493, 0.880726, 0.665518, 0.803212, 0.810144, 0.841926, 0.771411, 0.986644, 0.704305, 0.947915, 0.810144, 0.841926, 0.916098, 0.947877, 0.848975, 0.986669, 0.810144, 0.841926, 0.665518, 0.803212, 0.704266, 0.736045, 0.810144, 0.841926, 0.954898, 0.803221, 0.95491, 0.880768, 0.810144, 0.841926, 0.848975, 0.986669, 0.771411, 0.986644, 0.810144, 0.841926, 0.704266, 0.736045, 0.771406, 0.697268, 0.810144, 0.841926, 0.66552, 0.803122, 0.704267, 0.735993, 0.810144, 0.841949, 0.916096, 0.735999, 0.954901, 0.803113, 0.810144, 0.841949, 0.550856, 0.478888, 0.383022, 0.490588, 0.383022, 0.478888, 0.383022, 0.420386, 0.550856, 0.432086, 0.383022, 0.432086, 0.550856, 0.432086, 0.383022, 0.443787, 0.383022, 0.432086, 0.383022, 0.443787, 0.550856, 0.455487, 0.383022, 0.455487, 0.550856, 0.455487, 0.383022, 0.467187, 0.383022, 0.455487, 0.383022, 0.467187, 0.550856, 0.478888, 0.383022, 0.478888, 0.488683, 0.365067, 0.50304, 0.401121, 0.488683, 0.401121, 0.50304, 0.365067, 0.517406, 0.401121, 0.50304, 0.401121, 0.517406, 0.401121, 0.531745, 0.365067, 0.531745, 0.401121, 0.531745, 0.401121, 0.546073, 0.365067, 0.546073, 0.401121, 0.459976, 0.365067, 0.474353, 0.401121, 0.459976, 0.401121, 0.474353, 0.365067, 0.488683, 0.401121, 0.474353, 0.401121, 0.515336, 0.338097, 0.499717, 0.347115, 0.484098, 0.320062, 0.023924, 0.590653, 0.028911, 0.508301, 0.028911, 0.590653, 0.028911, 0.752483, 0.023923, 0.817906, 0.023923, 0.752483, 0.028911, 0.590653, 0.023923, 0.752483, 0.023924, 0.590653, 0.623174, 0.956949, 0.335314, 0.792874, 0.623174, 0.792874, 0.349053, 0.453711, 0.061193, 0.617787, 0.061197, 0.453699, 0.062938, 0.763658, 0.263541, 0.887324, 0.062938, 0.887316, 0.625358, 0.638938, 0.424755, 0.515229, 0.422825, 0.642907, 0.625385, 0.755325, 0.422825, 0.642907, 0.339089, 0.762993, 0.062938, 0.647255, 0.265465, 0.759658, 0.062938, 0.763658, 0.028933, 0.508282, 0.024008, 0.436104, 0.028933, 0.436104, 0.028933, 0.817908, 0.024008, 0.887796, 0.024008, 0.817908, 0.028933, 0.752478, 0.024008, 0.59065, 0.028933, 0.59065, 0.028933, 0.752478, 0.024008, 0.817908, 0.024008, 0.752478, 0.024008, 0.59065, 0.028933, 0.508282, 0.028933, 0.59065, 0.502266, 0.064958, 0.423371, 0.025498, 0.502359, 0.025531, 0.502243, 0.104492, 0.423332, 0.064943, 0.502266, 0.064958, 0.502231, 0.14364, 0.423323, 0.104478, 0.502243, 0.104492, 0.50244, 0.142814, 0.423405, 0.104636, 0.423404, 0.142816, 0.502451, 0.064484, 0.423405, 0.104636, 0.502461, 0.104655, 0.502451, 0.064484, 0.423371, 0.025498, 0.423402, 0.064486, 0.423332, 0.064943, 0.346837, 0.025462, 0.423371, 0.025498, 0.423332, 0.064943, 0.346776, 0.104462, 0.346798, 0.06493, 0.423323, 0.143634, 0.346776, 0.104462, 0.423323, 0.104478, 0.423404, 0.142816, 0.34683, 0.104621, 0.346838, 0.142819, 0.423402, 0.064486, 0.34683, 0.104621, 0.423405, 0.104636, 0.423402, 0.064486, 0.346837, 0.025462, 0.346857, 0.064487, 0.346798, 0.06493, 0.267034, 0.025456, 0.346837, 0.025462, 0.346798, 0.06493, 0.266987, 0.104467, 0.266999, 0.064924, 0.346816, 0.143628, 0.266987, 0.104467, 0.346776, 0.104462, 0.346838, 0.142819, 0.26707, 0.104616, 0.267039, 0.142816, 0.34683, 0.104621, 0.267068, 0.064487, 0.26707, 0.104616, 0.346857, 0.064487, 0.267034, 0.025456, 0.267068, 0.064487, 0.267034, 0.025456, 0.184318, 0.064925, 0.184312, 0.025457, 0.266999, 0.064924, 0.184345, 0.104463, 0.184318, 0.064925, 0.267091, 0.143628, 0.184345, 0.104463, 0.266987, 0.104467, 0.26707, 0.104616, 0.184352, 0.142818, 0.267039, 0.142816, 0.26707, 0.104616, 0.184324, 0.064488, 0.184353, 0.104616, 0.267034, 0.025456, 0.184324, 0.064488, 0.267068, 0.064487, 0.184312, 0.025457, 0.104622, 0.064941, 0.104602, 0.025453, 0.184345, 0.104463, 0.104622, 0.064941, 0.184318, 0.064925, 0.184345, 0.104463, 0.104731, 0.143637, 0.104667, 0.104483, 0.184353, 0.104616, 0.104712, 0.142821, 0.184352, 0.142818, 0.184353, 0.104616, 0.10462, 0.06449, 0.104661, 0.104592, 0.184312, 0.025457, 0.10462, 0.06449, 0.184324, 0.064488, 0.104602, 0.025453, 0.025073, 0.065012, 0.025061, 0.025471, 0.104667, 0.104483, 0.025073, 0.065012, 0.104622, 0.064941, 0.104731, 0.143637, 0.025104, 0.104565, 0.104667, 0.104483, 0.104661, 0.104592, 0.025133, 0.142833, 0.104712, 0.142821, 0.104661, 0.104592, 0.02507, 0.064496, 0.025099, 0.104468, 0.104602, 0.025453, 0.02507, 0.064496, 0.10462, 0.06449, 0.98289, 0.065072, 0.903861, 0.025586, 0.982868, 0.02554, 0.98289, 0.065072, 0.90382, 0.104558, 0.903849, 0.065016, 0.983059, 0.143709, 0.90382, 0.104558, 0.982966, 0.104648, 0.982995, 0.104478, 0.903768, 0.142821, 0.983086, 0.142833, 0.982911, 0.064495, 0.903818, 0.104612, 0.982995, 0.104478, 0.982911, 0.064495, 0.903861, 0.025586, 0.903851, 0.064485, 0.903849, 0.065016, 0.823147, 0.025581, 0.903861, 0.025586, 0.903849, 0.065016, 0.823146, 0.104541, 0.823147, 0.064995, 0.903783, 0.143674, 0.823146, 0.104541, 0.90382, 0.104558, 0.903768, 0.142821, 0.823146, 0.10464, 0.823145, 0.142819, 0.903851, 0.064485, 0.823146, 0.10464, 0.903818, 0.104612, 0.903851, 0.064485, 0.823147, 0.025581, 0.823147, 0.064483, 0.823147, 0.064995, 0.741407, 0.025579, 0.823147, 0.025581, 0.823147, 0.064995, 0.741399, 0.104524, 0.741378, 0.064988, 0.823146, 0.104541, 0.741351, 0.143653, 0.741399, 0.104524, 0.823145, 0.142819, 0.741346, 0.104654, 0.741247, 0.142814, 0.823147, 0.064483, 0.741346, 0.104654, 0.823146, 0.10464, 0.823147, 0.064483, 0.741407, 0.025579, 0.741388, 0.064482, 0.741378, 0.064988, 0.66157, 0.025582, 0.741407, 0.025579, 0.741399, 0.104524, 0.661528, 0.064986, 0.741378, 0.064988, 0.741399, 0.104524, 0.66152, 0.143657, 0.661566, 0.104521, 0.741346, 0.104654, 0.661485, 0.142813, 0.741247, 0.142814, 0.741346, 0.104654, 0.661597, 0.064482, 0.66164, 0.104669, 0.741407, 0.025579, 0.661597, 0.064482, 0.741388, 0.064482, 0.661528, 0.064986, 0.582967, 0.025562, 0.66157, 0.025582, 0.661566, 0.104521, 0.582933, 0.064974, 0.661528, 0.064986, 0.661566, 0.104521, 0.582916, 0.143648, 0.582928, 0.104508, 0.66164, 0.104669, 0.582969, 0.142813, 0.661485, 0.142813, 0.66164, 0.104669, 0.582994, 0.064482, 0.583007, 0.104675, 0.66157, 0.025582, 0.582994, 0.064482, 0.661597, 0.064482, 0.582933, 0.064974, 0.502359, 0.025531, 0.582967, 0.025562, 0.582933, 0.064974, 0.502243, 0.104492, 0.502266, 0.064958, 0.582928, 0.104508, 0.502231, 0.14364, 0.502243, 0.104492, 0.583007, 0.104675, 0.50244, 0.142814, 0.582969, 0.142813, 0.582994, 0.064482, 0.502461, 0.104655, 0.583007, 0.104675, 0.582967, 0.025562, 0.502451, 0.064484, 0.582994, 0.064482, 0.954783, 0.803134, 0.810168, 0.841944, 0.916051, 0.736007, 0.665448, 0.880692, 0.810168, 0.841944, 0.70417, 0.947814, 0.95477, 0.880664, 0.810168, 0.841944, 0.954783, 0.803134, 0.916048, 0.94784, 0.810168, 0.841944, 0.95477, 0.880664, 0.771364, 0.986609, 0.810168, 0.841944, 0.848872, 0.986592, 0.84889, 0.697231, 0.810168, 0.841944, 0.771369, 0.697241, 0.771369, 0.697241, 0.810168, 0.841944, 0.704211, 0.736003, 0.916051, 0.736007, 0.810168, 0.841944, 0.84889, 0.697231, 0.70417, 0.947814, 0.810168, 0.841944, 0.771364, 0.986609, 0.704211, 0.736003, 0.810168, 0.841944, 0.665421, 0.80314, 0.848911, 0.697285, 0.810161, 0.841925, 0.771381, 0.697269, 0.954814, 0.880773, 0.810161, 0.841925, 0.954819, 0.803225, 0.665462, 0.880728, 0.810161, 0.841925, 0.704212, 0.94792, 0.954819, 0.803225, 0.810161, 0.841925, 0.916065, 0.736041, 0.916064, 0.947878, 0.810161, 0.841925, 0.954814, 0.880773, 0.704212, 0.94792, 0.810161, 0.841925, 0.771379, 0.986646, 0.665452, 0.803216, 0.810161, 0.841925, 0.665462, 0.880728, 0.771381, 0.697269, 0.810161, 0.841925, 0.704228, 0.736047, 0.771379, 0.986646, 0.810161, 0.841925, 0.848904, 0.986672, 0.916065, 0.736041, 0.810161, 0.841925, 0.848911, 0.697285, 0.704228, 0.736047, 0.810161, 0.841925, 0.665452, 0.803216, 0.848904, 0.986672, 0.810161, 0.841925, 0.916064, 0.947878, 0.665421, 0.80314, 0.810168, 0.841944, 0.665448, 0.880692, 0.848872, 0.986592, 0.810168, 0.841944, 0.916048, 0.94784, 0.383077, 0.420465, 0.550912, 0.432165, 0.383077, 0.432165, 0.383077, 0.490666, 0.550911, 0.478966, 0.550911, 0.490666, 0.383077, 0.467266, 0.550911, 0.478966, 0.383077, 0.478966, 0.383077, 0.467266, 0.550912, 0.455566, 0.550912, 0.467266, 0.383077, 0.443865, 0.550912, 0.455566, 0.383077, 0.455566, 0.383077, 0.443865, 0.550912, 0.432165, 0.550912, 0.443865, 0.503181, 0.401058, 0.517513, 0.364971, 0.517513, 0.401058, 0.488839, 0.401058, 0.503181, 0.364971, 0.503181, 0.401058, 0.488839, 0.401058, 0.474471, 0.364971, 0.488839, 0.364971, 0.474471, 0.401058, 0.46015, 0.364971, 0.474471, 0.364971, 0.531872, 0.401058, 0.546242, 0.364971, 0.546242, 0.401058, 0.531872, 0.401058, 0.517513, 0.364971, 0.531872, 0.364971, 0.515274, 0.320077, 0.484036, 0.338113, 0.484036, 0.320077, 0.575628, 0.356338, 0.971393, 0.377339, 0.575628, 0.377339, 0.971393, 0.377339, 0.575628, 0.398341, 0.575628, 0.377339, 0.575628, 0.398341, 0.971393, 0.419343, 0.575628, 0.419342, 0.971393, 0.419343, 0.575628, 0.440344, 0.575628, 0.419342, 0.971393, 0.440345, 0.575628, 0.461346, 0.575628, 0.440344, 0.971392, 0.461347, 0.575628, 0.482347, 0.575628, 0.461346, 0.176737, 0.349455, 0.192306, 0.376281, 0.178319, 0.379282, 0.280923, 0.406267, 0.278224, 0.373785, 0.292584, 0.376057, 0.278224, 0.373785, 0.291875, 0.346197, 0.292584, 0.376057, 0.188118, 0.318424, 0.191318, 0.350848, 0.176737, 0.349455, 0.188118, 0.318424, 0.025463, 0.276607, 0.188118, 0.265594, 0.192306, 0.376281, 0.206998, 0.347516, 0.208278, 0.379827, 0.278224, 0.373785, 0.261672, 0.345436, 0.277654, 0.348317, 0.208278, 0.379827, 0.261672, 0.345436, 0.262543, 0.377737, 0.191444, 0.406278, 0.083423, 0.380135, 0.178319, 0.379282, 0.188118, 0.265594, 0.27896, 0.318424, 0.188118, 0.318424, 0.277654, 0.348317, 0.27896, 0.318424, 0.291875, 0.346197, 0.261672, 0.345436, 0.188118, 0.318424, 0.27896, 0.318424, 0.192306, 0.376281, 0.191444, 0.406278, 0.178319, 0.379282, 0.208278, 0.379827, 0.280923, 0.406267, 0.191444, 0.406278, 0.402622, 0.373782, 0.386806, 0.348169, 0.404064, 0.338245, 0.083423, 0.380135, 0.066805, 0.354988, 0.081204, 0.363909, 0.176737, 0.349455, 0.083423, 0.380135, 0.081204, 0.363909, 0.291875, 0.346197, 0.388531, 0.364458, 0.292584, 0.376057, 0.188118, 0.318424, 0.081204, 0.363909, 0.066805, 0.354988, 0.27896, 0.318424, 0.441615, 0.276607, 0.441615, 0.307411, 0.280923, 0.406267, 0.388531, 0.364458, 0.402622, 0.373782, 0.27896, 0.318424, 0.386806, 0.348169, 0.291875, 0.346197, 0.581838, 0.064827, 0.503118, 0.104268, 0.503118, 0.064827, 0.581839, 0.104268, 0.503118, 0.143878, 0.503118, 0.104268, 0.581837, 0.143865, 0.503105, 0.104261, 0.503105, 0.143865, 0.503105, 0.104261, 0.581837, 0.064851, 0.503105, 0.064851, 0.663395, 0.064827, 0.581839, 0.104268, 0.581838, 0.064827, 0.581839, 0.104268, 0.663395, 0.143878, 0.581838, 0.143878, 0.663394, 0.143865, 0.581837, 0.104261, 0.581837, 0.143865, 0.581837, 0.104261, 0.663394, 0.064851, 0.581837, 0.064851, 0.663395, 0.025675, 0.742237, 0.064827, 0.663395, 0.064827, 0.742237, 0.064827, 0.663395, 0.104268, 0.663395, 0.064827, 0.742237, 0.104268, 0.663395, 0.143878, 0.663395, 0.104268, 0.742236, 0.143865, 0.663394, 0.104261, 0.663394, 0.143865, 0.663394, 0.104261, 0.742236, 0.06485, 0.663394, 0.064851, 0.742236, 0.06485, 0.663395, 0.025675, 0.663394, 0.064851, 0.742237, 0.025675, 0.822484, 0.064827, 0.742237, 0.064827, 0.822484, 0.064827, 0.742237, 0.104268, 0.742237, 0.064827, 0.822484, 0.104268, 0.742237, 0.143878, 0.742237, 0.104268, 0.742236, 0.143865, 0.822481, 0.104261, 0.742236, 0.104261, 0.742236, 0.104261, 0.822481, 0.064851, 0.742236, 0.06485, 0.822481, 0.064851, 0.742237, 0.025675, 0.742236, 0.06485, 0.822484, 0.025675, 0.903018, 0.064827, 0.822484, 0.064827, 0.903018, 0.064827, 0.822484, 0.104268, 0.822484, 0.064827, 0.822484, 0.104268, 0.903018, 0.143878, 0.822484, 0.143878, 0.903017, 0.143864, 0.822481, 0.104261, 0.822481, 0.143865, 0.822481, 0.104261, 0.903017, 0.064851, 0.822481, 0.064851, 0.903017, 0.064851, 0.822484, 0.025675, 0.822481, 0.064851, 0.903018, 0.025675, 0.981894, 0.064827, 0.903018, 0.064827, 0.981894, 0.064827, 0.903018, 0.104268, 0.903018, 0.064827, 0.903018, 0.104268, 0.981894, 0.143878, 0.903018, 0.143878, 0.981874, 0.143864, 0.903017, 0.104261, 0.903017, 0.143864, 0.903017, 0.104261, 0.981875, 0.06485, 0.903017, 0.064851, 0.981875, 0.06485, 0.903018, 0.025675, 0.903017, 0.064851, 0.025697, 0.025675, 0.105003, 0.064827, 0.025697, 0.064827, 0.105003, 0.064827, 0.025697, 0.104268, 0.025697, 0.064827, 0.025697, 0.104268, 0.105004, 0.143878, 0.025697, 0.143878, 0.025693, 0.143864, 0.104996, 0.104261, 0.025693, 0.104261, 0.104996, 0.104261, 0.025693, 0.06485, 0.025693, 0.104261, 0.104996, 0.06485, 0.025697, 0.025675, 0.025693, 0.06485, 0.184346, 0.025675, 0.105003, 0.064827, 0.105003, 0.025675, 0.105003, 0.064827, 0.184346, 0.104268, 0.105004, 0.104268, 0.105004, 0.104268, 0.184346, 0.143878, 0.105004, 0.143878, 0.184345, 0.143865, 0.104996, 0.104261, 0.104997, 0.143865, 0.184345, 0.104261, 0.104996, 0.06485, 0.104996, 0.104261, 0.104996, 0.06485, 0.184346, 0.025675, 0.105003, 0.025675, 0.184346, 0.025675, 0.265707, 0.064827, 0.184346, 0.064827, 0.265707, 0.064827, 0.184346, 0.104268, 0.184346, 0.064827, 0.265707, 0.104268, 0.184346, 0.143878, 0.184346, 0.104268, 0.184345, 0.143865, 0.265687, 0.104261, 0.184345, 0.104261, 0.184345, 0.104261, 0.265686, 0.064851, 0.184345, 0.06485, 0.265686, 0.064851, 0.184346, 0.025675, 0.184345, 0.06485, 0.345881, 0.064827, 0.265707, 0.104268, 0.265707, 0.064827, 0.265707, 0.104268, 0.345881, 0.143878, 0.265707, 0.143878, 0.345879, 0.143865, 0.265687, 0.104261, 0.265687, 0.143865, 0.265687, 0.104261, 0.345879, 0.064851, 0.265686, 0.064851, 0.345881, 0.064827, 0.422372, 0.104268, 0.345881, 0.104268, 0.345881, 0.104268, 0.422372, 0.143878, 0.345881, 0.143878, 0.422372, 0.143865, 0.345879, 0.104261, 0.345879, 0.143865, 0.422372, 0.104261, 0.345879, 0.064851, 0.345879, 0.104261, 0.422372, 0.064827, 0.503118, 0.104268, 0.422372, 0.104268, 0.503118, 0.104268, 0.422372, 0.143878, 0.422372, 0.104268, 0.422372, 0.143865, 0.503105, 0.104261, 0.422372, 0.104261, 0.503105, 0.104261, 0.422372, 0.064851, 0.422372, 0.104261, 0.966998, 0.524505, 0.992484, 0.568578, 0.897297, 0.593988, 0.872015, 0.68896, 0.827983, 0.663523, 0.897297, 0.593988, 0.827983, 0.663523, 0.802508, 0.619452, 0.897297, 0.593988, 0.872016, 0.499059, 0.922932, 0.499063, 0.897297, 0.593988, 0.922932, 0.499063, 0.966998, 0.524505, 0.897297, 0.593988, 0.992484, 0.568578, 0.992468, 0.619459, 0.897297, 0.593988, 0.992468, 0.619459, 0.967003, 0.663523, 0.897297, 0.593988, 0.802508, 0.619452, 0.802526, 0.56857, 0.897297, 0.593988, 0.967003, 0.663523, 0.922938, 0.688965, 0.897297, 0.593988, 0.922938, 0.688965, 0.872015, 0.68896, 0.897297, 0.593988, 0.827953, 0.524502, 0.872016, 0.499059, 0.897297, 0.593988, 0.802526, 0.56857, 0.827953, 0.524502, 0.897297, 0.593988, 0.922972, 0.499069, 0.967039, 0.52451, 0.897723, 0.594045, 0.802611, 0.619465, 0.802592, 0.568579, 0.897723, 0.594045, 0.992437, 0.568571, 0.992453, 0.619457, 0.897723, 0.594045, 0.872122, 0.688974, 0.828019, 0.663528, 0.897723, 0.594045, 0.967039, 0.52451, 0.992437, 0.568571, 0.897723, 0.594045, 0.967034, 0.663527, 0.922965, 0.688969, 0.897723, 0.594045, 0.922965, 0.688969, 0.872122, 0.688974, 0.897723, 0.594045, 0.992453, 0.619457, 0.967034, 0.663527, 0.897723, 0.594045, 0.82805, 0.524514, 0.87212, 0.499073, 0.897723, 0.594045, 0.802592, 0.568579, 0.82805, 0.524514, 0.897723, 0.594045, 0.828019, 0.663528, 0.802611, 0.619465, 0.897723, 0.594045, 0.87212, 0.499073, 0.922972, 0.499069, 0.897723, 0.594045, 0.897643, 0.275026, 0.818739, 0.329857, 0.81874, 0.275016, 0.818745, 0.22078, 0.897643, 0.275026, 0.81874, 0.275016, 0.897643, 0.275026, 0.980108, 0.329905, 0.897639, 0.329858, 0.980118, 0.220812, 0.897643, 0.275026, 0.897646, 0.220821, 0.655511, 0.274994, 0.574194, 0.329905, 0.574171, 0.27498, 0.574206, 0.220585, 0.655511, 0.274994, 0.574171, 0.27498, 0.736537, 0.275005, 0.655511, 0.329873, 0.655511, 0.274994, 0.655512, 0.220669, 0.736537, 0.275005, 0.655511, 0.274994, 0.81874, 0.275016, 0.736537, 0.329864, 0.736537, 0.275005, 0.736556, 0.220728, 0.81874, 0.275016, 0.736537, 0.275005, 0.544516, 0.304307, 0.515545, 0.274854, 0.537802, 0.274854, 0.544516, 0.245561, 0.515545, 0.274854, 0.544518, 0.226388, 0.544514, 0.304039, 0.515512, 0.274852, 0.537729, 0.274852, 0.544514, 0.245504, 0.515512, 0.274852, 0.544515, 0.226391, 0.656099, 0.179744, 0.73789, 0.190726, 0.737872, 0.179744, 0.901011, 0.179745, 0.819494, 0.190726, 0.819475, 0.179744, 0.901002, 0.179744, 0.819474, 0.190727, 0.901017, 0.190724, 0.819475, 0.179744, 0.73799, 0.190725, 0.737972, 0.179744, 0.982314, 0.179745, 0.901017, 0.190724, 0.982352, 0.190717, 0.574583, 0.179745, 0.656122, 0.190724, 0.656099, 0.179744, 0.982339, 0.179745, 0.901026, 0.190723, 0.901011, 0.179745, 0.819455, 0.179744, 0.73789, 0.190726, 0.819474, 0.190727, 0.656087, 0.179745, 0.73799, 0.190725, 0.65611, 0.190723, 0.574585, 0.179745, 0.65611, 0.190723, 0.57458, 0.190716, 0.060784, 0.965077, 0.060784, 0.949477, 0.229214, 0.949477, 0.229214, 0.949477, 0.060784, 0.949477, 0.060784, 0.933878, 0.229214, 0.933878, 0.060784, 0.933878, 0.060784, 0.918278, 0.060784, 0.980677, 0.060784, 0.965077, 0.229214, 0.965077, 0.229321, 0.949012, 0.060416, 0.949012, 0.060416, 0.933369, 0.229321, 0.933369, 0.060416, 0.933369, 0.060416, 0.917725, 0.060416, 0.9803, 0.060416, 0.964656, 0.229321, 0.964656, 0.060416, 0.964656, 0.060416, 0.949012, 0.229321, 0.949012, 0.252809, 0.967684, 0.252809, 0.94164, 0.278853, 0.94164, 0.302681, 0.174045, 0.302678, 0.231571, 0.264191, 0.231571, 0.264191, 0.231571, 0.302678, 0.231571, 0.302678, 0.212467, 0.264191, 0.212467, 0.302678, 0.212467, 0.302678, 0.192849, 0.302681, 0.231571, 0.302681, 0.212555, 0.264204, 0.212553, 0.302681, 0.212555, 0.302681, 0.192864, 0.264204, 0.192864, 0.264204, 0.192864, 0.302681, 0.192864, 0.302681, 0.174045, 0.340833, 0.174049, 0.340822, 0.231571, 0.302678, 0.231571, 0.302678, 0.231571, 0.340822, 0.231571, 0.340822, 0.212467, 0.302678, 0.212467, 0.340822, 0.212467, 0.340822, 0.19285, 0.340834, 0.231573, 0.340834, 0.212557, 0.302681, 0.212555, 0.340834, 0.212557, 0.340834, 0.192864, 0.302681, 0.192864, 0.302681, 0.192864, 0.340834, 0.192864, 0.340833, 0.174049, 0.379997, 0.174052, 0.379986, 0.231571, 0.340822, 0.231571, 0.379986, 0.231571, 0.379986, 0.212467, 0.340822, 0.212467, 0.379986, 0.212467, 0.379986, 0.192849, 0.340822, 0.19285, 0.340834, 0.231573, 0.379996, 0.231573, 0.379997, 0.212558, 0.340834, 0.212557, 0.379997, 0.212558, 0.379997, 0.192864, 0.340834, 0.192864, 0.379997, 0.192864, 0.379997, 0.174052, 0.379997, 0.174052, 0.418571, 0.174055, 0.418542, 0.231571, 0.418542, 0.231571, 0.418541, 0.212467, 0.379986, 0.212467, 0.379986, 0.212467, 0.418541, 0.212467, 0.418539, 0.19285, 0.418566, 0.231574, 0.418568, 0.21256, 0.379997, 0.212558, 0.379997, 0.212558, 0.418568, 0.21256, 0.41857, 0.192864, 0.41857, 0.192864, 0.418571, 0.174055, 0.379997, 0.174052, 0.418571, 0.174055, 0.457111, 0.174059, 0.457098, 0.231571, 0.457098, 0.231571, 0.457096, 0.212467, 0.418541, 0.212467, 0.457096, 0.212467, 0.457093, 0.19285, 0.418539, 0.19285, 0.418566, 0.231574, 0.457105, 0.231577, 0.457108, 0.212564, 0.418568, 0.21256, 0.457108, 0.212564, 0.457111, 0.192864, 0.457111, 0.192864, 0.457111, 0.174059, 0.418571, 0.174055, 0.495554, 0.174065, 0.495538, 0.231571, 0.457098, 0.231571, 0.457098, 0.231571, 0.495538, 0.231571, 0.495538, 0.212467, 0.495538, 0.212467, 0.495537, 0.19285, 0.457093, 0.19285, 0.457105, 0.231577, 0.495553, 0.231577, 0.495554, 0.212569, 0.495554, 0.212569, 0.495554, 0.192864, 0.457111, 0.192864, 0.457111, 0.192864, 0.495554, 0.192864, 0.495554, 0.174065, 0.069927, 0.174031, 0.069911, 0.231571, 0.030737, 0.231571, 0.030737, 0.231571, 0.069911, 0.231571, 0.069913, 0.212467, 0.069913, 0.212467, 0.069916, 0.19285, 0.030738, 0.192831, 0.030743, 0.231571, 0.069932, 0.231571, 0.069929, 0.212555, 0.069929, 0.212555, 0.069927, 0.192864, 0.030742, 0.192864, 0.030742, 0.192864, 0.069927, 0.192864, 0.069927, 0.174031, 0.109124, 0.174033, 0.1091, 0.231571, 0.069911, 0.231571, 0.069911, 0.231571, 0.1091, 0.231571, 0.109101, 0.212467, 0.069913, 0.212467, 0.109101, 0.212467, 0.109102, 0.192849, 0.109126, 0.231568, 0.109125, 0.212552, 0.069929, 0.212555, 0.109125, 0.212552, 0.109124, 0.192864, 0.069927, 0.192864, 0.069927, 0.192864, 0.109124, 0.192864, 0.109124, 0.174033, 0.146773, 0.174037, 0.146765, 0.231571, 0.1091, 0.231571, 0.146765, 0.231571, 0.146766, 0.212467, 0.109101, 0.212467, 0.146766, 0.212467, 0.146767, 0.192849, 0.109102, 0.192849, 0.109126, 0.231568, 0.146773, 0.231569, 0.146773, 0.212552, 0.109125, 0.212552, 0.146773, 0.212552, 0.146773, 0.192864, 0.109124, 0.192864, 0.146773, 0.192864, 0.146773, 0.174037, 0.146773, 0.174037, 0.186063, 0.174037, 0.186061, 0.231571, 0.146765, 0.231571, 0.186061, 0.231571, 0.186061, 0.212467, 0.146766, 0.212467, 0.186061, 0.212467, 0.186061, 0.19285, 0.186063, 0.23157, 0.186063, 0.212553, 0.146773, 0.212552, 0.186063, 0.212553, 0.186063, 0.192864, 0.146773, 0.192864, 0.186063, 0.192864, 0.186063, 0.174037, 0.146773, 0.174037, 0.22483, 0.174039, 0.224828, 0.231571, 0.186061, 0.231571, 0.224828, 0.231571, 0.224828, 0.212467, 0.186061, 0.212467, 0.224828, 0.212467, 0.224828, 0.192849, 0.186061, 0.19285, 0.186063, 0.23157, 0.22483, 0.231569, 0.22483, 0.212552, 0.186063, 0.212553, 0.22483, 0.212552, 0.22483, 0.192864, 0.186063, 0.192864, 0.22483, 0.192864, 0.22483, 0.174039, 0.264204, 0.174041, 0.264191, 0.231571, 0.224828, 0.231571, 0.224828, 0.231571, 0.264191, 0.231571, 0.264191, 0.212467, 0.264191, 0.212467, 0.264191, 0.192849, 0.224828, 0.192849, 0.22483, 0.231569, 0.264204, 0.23157, 0.264204, 0.212553, 0.264204, 0.212553, 0.264204, 0.192864, 0.22483, 0.192864, 0.22483, 0.192864, 0.264204, 0.192864, 0.264204, 0.174041, 0.264191, 0.231571, 0.302678, 0.231571, 0.302682, 0.174051, 0.264191, 0.231571, 0.264192, 0.212467, 0.302678, 0.212467, 0.264192, 0.212467, 0.264192, 0.192849, 0.302678, 0.192849, 0.264205, 0.212554, 0.302681, 0.212556, 0.302681, 0.231572, 0.264205, 0.192864, 0.302682, 0.192864, 0.302681, 0.212556, 0.264205, 0.192864, 0.264205, 0.174047, 0.302682, 0.174051, 0.302678, 0.231571, 0.340821, 0.231571, 0.340833, 0.174055, 0.302678, 0.231571, 0.302678, 0.212467, 0.340821, 0.212467, 0.302678, 0.212467, 0.302678, 0.192849, 0.340821, 0.19285, 0.302681, 0.212556, 0.340833, 0.212558, 0.340834, 0.231574, 0.302682, 0.192864, 0.340833, 0.192864, 0.340833, 0.212558, 0.302682, 0.192864, 0.302682, 0.174051, 0.340833, 0.174055, 0.340821, 0.231571, 0.379986, 0.231571, 0.379997, 0.174058, 0.340821, 0.212467, 0.379986, 0.212467, 0.379986, 0.231571, 0.340821, 0.19285, 0.379986, 0.192849, 0.379986, 0.212467, 0.340834, 0.231574, 0.340833, 0.212558, 0.379997, 0.212559, 0.340833, 0.212558, 0.340833, 0.192864, 0.379997, 0.192864, 0.340833, 0.192864, 0.340833, 0.174055, 0.379997, 0.174058, 0.379997, 0.174058, 0.379986, 0.231571, 0.418543, 0.231571, 0.379986, 0.212467, 0.418541, 0.212467, 0.418543, 0.231571, 0.379986, 0.212467, 0.379986, 0.192849, 0.41854, 0.19285, 0.379997, 0.212559, 0.418568, 0.212561, 0.418566, 0.231575, 0.379997, 0.212559, 0.379997, 0.192864, 0.41857, 0.192864, 0.379997, 0.174058, 0.418571, 0.174062, 0.41857, 0.192864, 0.418571, 0.174062, 0.418543, 0.231571, 0.457098, 0.231571, 0.418541, 0.212467, 0.457096, 0.212467, 0.457098, 0.231571, 0.41854, 0.19285, 0.457093, 0.19285, 0.457096, 0.212467, 0.418566, 0.231575, 0.418568, 0.212561, 0.457108, 0.212566, 0.418568, 0.212561, 0.41857, 0.192864, 0.457111, 0.192864, 0.418571, 0.174062, 0.457112, 0.174067, 0.457111, 0.192864, 0.457098, 0.231571, 0.495538, 0.231571, 0.495554, 0.174071, 0.457098, 0.231571, 0.457096, 0.212467, 0.495538, 0.212467, 0.457093, 0.19285, 0.495537, 0.19285, 0.495538, 0.212467, 0.457105, 0.231578, 0.457108, 0.212566, 0.495554, 0.21257, 0.457111, 0.192864, 0.495554, 0.192864, 0.495554, 0.21257, 0.457111, 0.192864, 0.457112, 0.174067, 0.495554, 0.174071, 0.030737, 0.231571, 0.069911, 0.231571, 0.069927, 0.174035, 0.030737, 0.231571, 0.030738, 0.212468, 0.069913, 0.212467, 0.030738, 0.192831, 0.069917, 0.19285, 0.069913, 0.212467, 0.030743, 0.231571, 0.030743, 0.21256, 0.069929, 0.212556, 0.030742, 0.192864, 0.069927, 0.192864, 0.069929, 0.212556, 0.030742, 0.192864, 0.030742, 0.174032, 0.069927, 0.174035, 0.069911, 0.231571, 0.1091, 0.231571, 0.109124, 0.174038, 0.069911, 0.231571, 0.069913, 0.212467, 0.109102, 0.212467, 0.069913, 0.212467, 0.069917, 0.19285, 0.109103, 0.192849, 0.069929, 0.212556, 0.109125, 0.212553, 0.109126, 0.231569, 0.069927, 0.192864, 0.109124, 0.192864, 0.109125, 0.212553, 0.069927, 0.192864, 0.069927, 0.174035, 0.109124, 0.174038, 0.1091, 0.231571, 0.146766, 0.231571, 0.146774, 0.174041, 0.109102, 0.212467, 0.146767, 0.212467, 0.146766, 0.231571, 0.109103, 0.192849, 0.146767, 0.192849, 0.146767, 0.212467, 0.109126, 0.231569, 0.109125, 0.212553, 0.146774, 0.212553, 0.109125, 0.212553, 0.109124, 0.192864, 0.146773, 0.192864, 0.109124, 0.192864, 0.109124, 0.174038, 0.146774, 0.174041, 0.146774, 0.174041, 0.146766, 0.231571, 0.186061, 0.231571, 0.146766, 0.231571, 0.146767, 0.212467, 0.186061, 0.212467, 0.146767, 0.212467, 0.146767, 0.192849, 0.186061, 0.192849, 0.146774, 0.212553, 0.186063, 0.212554, 0.186063, 0.231571, 0.146773, 0.192864, 0.186063, 0.192864, 0.186063, 0.212554, 0.146774, 0.174041, 0.186063, 0.174042, 0.186063, 0.192864, 0.186061, 0.231571, 0.224828, 0.231571, 0.22483, 0.174045, 0.186061, 0.212467, 0.224828, 0.212467, 0.224828, 0.231571, 0.186061, 0.192849, 0.224828, 0.192849, 0.224828, 0.212467, 0.186063, 0.231571, 0.186063, 0.212554, 0.22483, 0.212553, 0.186063, 0.212554, 0.186063, 0.192864, 0.22483, 0.192864, 0.186063, 0.192864, 0.186063, 0.174042, 0.22483, 0.174045, 0.224828, 0.231571, 0.264191, 0.231571, 0.264205, 0.174047, 0.224828, 0.231571, 0.224828, 0.212467, 0.264192, 0.212467, 0.224828, 0.192849, 0.264192, 0.192849, 0.264192, 0.212467, 0.22483, 0.231569, 0.22483, 0.212553, 0.264205, 0.212554, 0.22483, 0.192864, 0.264205, 0.192864, 0.264205, 0.212554, 0.22483, 0.192864, 0.22483, 0.174045, 0.264205, 0.174047, 0.023924, 0.508301, 0.028911, 0.508301, 0.028911, 0.590653, 0.028911, 0.817906, 0.023922, 0.817906, 0.023923, 0.752483, 0.023924, 0.590653, 0.028911, 0.590653, 0.028911, 0.752483, 0.334991, 0.955762, 0.334991, 0.791687, 0.622851, 0.791687, 0.349066, 0.617746, 0.061211, 0.61773, 0.061207, 0.453668, 0.062938, 0.763551, 0.062939, 0.887324, 0.263541, 0.887315, 0.424746, 0.515212, 0.625326, 0.515172, 0.625347, 0.638934, 0.422825, 0.642907, 0.625347, 0.638934, 0.62532, 0.755206, 0.062938, 0.647295, 0.062938, 0.763551, 0.265465, 0.759608, 0.024005, 0.508283, 0.024005, 0.436114, 0.028933, 0.436114, 0.028933, 0.887809, 0.024004, 0.887809, 0.024005, 0.817909, 0.028933, 0.59065, 0.028933, 0.752479, 0.024005, 0.752479, 0.028933, 0.817909, 0.024005, 0.817909, 0.024005, 0.752479, 0.024005, 0.508283, 0.028933, 0.508283, 0.028933, 0.59065, 0.423304, 0.025497, 0.423272, 0.064943, 0.50219, 0.064955, 0.423272, 0.064943, 0.423269, 0.104478, 0.50218, 0.104492, 0.423269, 0.104478, 0.42327, 0.143634, 0.502173, 0.143641, 0.502294, 0.142818, 0.423311, 0.142815, 0.423304, 0.104635, 0.423304, 0.104635, 0.423322, 0.064486, 0.502331, 0.064485, 0.502331, 0.064485, 0.423322, 0.064486, 0.423304, 0.025497, 0.346749, 0.025468, 0.346714, 0.064932, 0.423272, 0.064943, 0.423272, 0.064943, 0.346714, 0.064932, 0.346694, 0.104463, 0.346694, 0.104463, 0.346731, 0.143628, 0.42327, 0.143634, 0.423311, 0.142815, 0.346746, 0.142818, 0.346734, 0.104626, 0.346734, 0.104626, 0.346764, 0.064486, 0.423322, 0.064486, 0.423322, 0.064486, 0.346764, 0.064486, 0.346749, 0.025468, 0.26691, 0.025463, 0.266873, 0.064926, 0.346714, 0.064932, 0.346714, 0.064932, 0.266873, 0.064926, 0.266859, 0.104468, 0.266859, 0.104468, 0.266959, 0.143628, 0.346731, 0.143628, 0.346746, 0.142818, 0.266922, 0.142816, 0.266947, 0.104622, 0.346734, 0.104626, 0.266947, 0.104622, 0.266944, 0.064487, 0.346764, 0.064486, 0.266944, 0.064487, 0.26691, 0.025463, 0.26691, 0.025463, 0.184291, 0.025463, 0.184296, 0.064927, 0.266873, 0.064926, 0.184296, 0.064927, 0.184323, 0.104464, 0.184323, 0.104464, 0.184345, 0.143624, 0.266959, 0.143628, 0.184334, 0.142817, 0.184333, 0.104622, 0.266947, 0.104622, 0.266947, 0.104622, 0.184333, 0.104622, 0.184304, 0.064487, 0.184304, 0.064487, 0.184291, 0.025463, 0.26691, 0.025463, 0.184291, 0.025463, 0.104594, 0.025458, 0.104614, 0.064942, 0.104614, 0.064942, 0.104657, 0.104483, 0.184323, 0.104464, 0.184323, 0.104464, 0.104657, 0.104483, 0.10472, 0.143637, 0.104705, 0.14282, 0.104654, 0.104596, 0.184333, 0.104622, 0.184333, 0.104622, 0.104654, 0.104596, 0.104612, 0.064489, 0.104612, 0.064489, 0.104594, 0.025458, 0.184291, 0.025463, 0.104594, 0.025458, 0.025061, 0.025473, 0.025073, 0.065012, 0.025073, 0.065012, 0.025103, 0.104564, 0.104657, 0.104483, 0.025103, 0.104564, 0.025137, 0.143665, 0.10472, 0.143637, 0.025133, 0.142833, 0.025099, 0.104472, 0.104654, 0.104596, 0.104654, 0.104596, 0.025099, 0.104472, 0.02507, 0.064496, 0.02507, 0.064496, 0.025061, 0.025473, 0.104594, 0.025458, 0.903879, 0.025602, 0.903866, 0.065019, 0.98289, 0.065076, 0.98289, 0.065076, 0.903866, 0.065019, 0.903837, 0.104558, 0.903837, 0.104558, 0.903799, 0.143673, 0.983056, 0.143707, 0.903791, 0.142818, 0.90384, 0.10463, 0.982991, 0.104501, 0.90384, 0.10463, 0.903871, 0.064484, 0.982909, 0.064493, 0.982909, 0.064493, 0.903871, 0.064484, 0.903879, 0.025602, 0.82315, 0.025582, 0.823149, 0.064995, 0.903866, 0.065019, 0.903866, 0.065019, 0.823149, 0.064995, 0.823148, 0.10454, 0.823148, 0.10454, 0.823148, 0.143662, 0.903799, 0.143673, 0.903791, 0.142818, 0.823148, 0.142816, 0.823149, 0.10465, 0.823149, 0.10465, 0.82315, 0.064483, 0.903871, 0.064484, 0.903871, 0.064484, 0.82315, 0.064483, 0.82315, 0.025582, 0.74162, 0.025574, 0.741577, 0.064986, 0.823149, 0.064995, 0.823149, 0.064995, 0.741577, 0.064986, 0.741593, 0.104523, 0.823148, 0.10454, 0.741593, 0.104523, 0.741554, 0.143653, 0.823148, 0.142816, 0.741556, 0.142817, 0.741663, 0.104642, 0.741663, 0.104642, 0.741652, 0.064483, 0.82315, 0.064483, 0.82315, 0.064483, 0.741652, 0.064483, 0.74162, 0.025574, 0.74162, 0.025574, 0.661731, 0.025562, 0.661679, 0.064981, 0.661679, 0.064981, 0.661715, 0.104519, 0.741593, 0.104523, 0.741593, 0.104523, 0.661715, 0.104519, 0.661672, 0.143658, 0.661679, 0.142816, 0.661831, 0.104649, 0.741663, 0.104642, 0.741663, 0.104642, 0.661831, 0.104649, 0.661772, 0.064483, 0.661772, 0.064483, 0.661731, 0.025562, 0.74162, 0.025574, 0.582985, 0.02554, 0.582952, 0.064968, 0.661679, 0.064981, 0.582952, 0.064968, 0.582947, 0.104506, 0.661715, 0.104519, 0.661715, 0.104519, 0.582947, 0.104506, 0.582936, 0.143649, 0.58299, 0.142816, 0.583023, 0.104654, 0.661831, 0.104649, 0.661831, 0.104649, 0.583023, 0.104654, 0.58301, 0.064484, 0.58301, 0.064484, 0.582985, 0.02554, 0.661731, 0.025562, 0.502267, 0.025515, 0.50219, 0.064955, 0.582952, 0.064968, 0.582952, 0.064968, 0.50219, 0.064955, 0.50218, 0.104492, 0.582947, 0.104506, 0.50218, 0.104492, 0.502173, 0.143641, 0.502294, 0.142818, 0.502286, 0.104637, 0.583023, 0.104654, 0.502286, 0.104637, 0.502331, 0.064485, 0.58301, 0.064484, 0.502331, 0.064485, 0.502267, 0.025515, 0.582985, 0.02554, 0.550856, 0.478888, 0.550856, 0.490588, 0.383022, 0.490588, 0.383022, 0.420386, 0.550856, 0.420386, 0.550856, 0.432086, 0.550856, 0.432086, 0.550856, 0.443787, 0.383022, 0.443787, 0.383022, 0.443787, 0.550856, 0.443787, 0.550856, 0.455487, 0.550856, 0.455487, 0.550856, 0.467187, 0.383022, 0.467187, 0.383022, 0.467187, 0.550856, 0.467187, 0.550856, 0.478888, 0.488683, 0.365067, 0.50304, 0.365067, 0.50304, 0.401121, 0.50304, 0.365067, 0.517406, 0.365067, 0.517406, 0.401121, 0.517406, 0.401121, 0.517406, 0.365067, 0.531745, 0.365067, 0.531745, 0.401121, 0.531745, 0.365067, 0.546073, 0.365067, 0.459976, 0.365067, 0.474353, 0.365067, 0.474353, 0.401121, 0.474353, 0.365067, 0.488683, 0.365067, 0.488683, 0.401121, 0.484098, 0.320062, 0.499717, 0.311044, 0.515336, 0.320062, 0.515336, 0.320062, 0.515336, 0.338097, 0.484098, 0.320062, 0.499717, 0.347115, 0.484098, 0.338097, 0.484098, 0.320062, 0.023924, 0.590653, 0.023924, 0.508301, 0.028911, 0.508301, 0.028911, 0.752483, 0.028911, 0.817906, 0.023923, 0.817906, 0.028911, 0.590653, 0.028911, 0.752483, 0.023923, 0.752483, 0.623174, 0.956949, 0.335314, 0.956949, 0.335314, 0.792874, 0.349053, 0.453711, 0.349058, 0.617771, 0.061193, 0.617787, 0.062938, 0.763658, 0.265465, 0.759658, 0.263541, 0.887324, 0.625358, 0.638938, 0.625379, 0.515269, 0.424755, 0.515229, 0.625385, 0.755325, 0.625358, 0.638938, 0.422825, 0.642907, 0.062938, 0.647255, 0.349214, 0.639608, 0.265465, 0.759658, 0.028933, 0.508282, 0.024008, 0.508282, 0.024008, 0.436104, 0.028933, 0.817908, 0.028933, 0.887796, 0.024008, 0.887796, 0.028933, 0.752478, 0.024008, 0.752478, 0.024008, 0.59065, 0.028933, 0.752478, 0.028933, 0.817908, 0.024008, 0.817908, 0.024008, 0.59065, 0.024008, 0.508282, 0.028933, 0.508282, 0.502266, 0.064958, 0.423332, 0.064943, 0.423371, 0.025498, 0.502243, 0.104492, 0.423323, 0.104478, 0.423332, 0.064943, 0.502231, 0.14364, 0.423323, 0.143634, 0.423323, 0.104478, 0.50244, 0.142814, 0.502461, 0.104655, 0.423405, 0.104636, 0.502451, 0.064484, 0.423402, 0.064486, 0.423405, 0.104636, 0.502451, 0.064484, 0.502359, 0.025531, 0.423371, 0.025498, 0.423332, 0.064943, 0.346798, 0.06493, 0.346837, 0.025462, 0.423332, 0.064943, 0.423323, 0.104478, 0.346776, 0.104462, 0.423323, 0.143634, 0.346816, 0.143628, 0.346776, 0.104462, 0.423404, 0.142816, 0.423405, 0.104636, 0.34683, 0.104621, 0.423402, 0.064486, 0.346857, 0.064487, 0.34683, 0.104621, 0.423402, 0.064486, 0.423371, 0.025498, 0.346837, 0.025462, 0.346798, 0.06493, 0.266999, 0.064924, 0.267034, 0.025456, 0.346798, 0.06493, 0.346776, 0.104462, 0.266987, 0.104467, 0.346816, 0.143628, 0.267091, 0.143628, 0.266987, 0.104467, 0.346838, 0.142819, 0.34683, 0.104621, 0.26707, 0.104616, 0.34683, 0.104621, 0.346857, 0.064487, 0.267068, 0.064487, 0.346857, 0.064487, 0.346837, 0.025462, 0.267034, 0.025456, 0.267034, 0.025456, 0.266999, 0.064924, 0.184318, 0.064925, 0.266999, 0.064924, 0.266987, 0.104467, 0.184345, 0.104463, 0.267091, 0.143628, 0.184369, 0.143624, 0.184345, 0.104463, 0.26707, 0.104616, 0.184353, 0.104616, 0.184352, 0.142818, 0.26707, 0.104616, 0.267068, 0.064487, 0.184324, 0.064488, 0.267034, 0.025456, 0.184312, 0.025457, 0.184324, 0.064488, 0.184312, 0.025457, 0.184318, 0.064925, 0.104622, 0.064941, 0.184345, 0.104463, 0.104667, 0.104483, 0.104622, 0.064941, 0.184345, 0.104463, 0.184369, 0.143624, 0.104731, 0.143637, 0.184353, 0.104616, 0.104661, 0.104592, 0.104712, 0.142821, 0.184353, 0.104616, 0.184324, 0.064488, 0.10462, 0.06449, 0.184312, 0.025457, 0.104602, 0.025453, 0.10462, 0.06449, 0.104602, 0.025453, 0.104622, 0.064941, 0.025073, 0.065012, 0.104667, 0.104483, 0.025104, 0.104565, 0.025073, 0.065012, 0.104731, 0.143637, 0.025138, 0.143666, 0.025104, 0.104565, 0.104661, 0.104592, 0.025099, 0.104468, 0.025133, 0.142833, 0.104661, 0.104592, 0.10462, 0.06449, 0.02507, 0.064496, 0.104602, 0.025453, 0.025061, 0.025471, 0.02507, 0.064496, 0.98289, 0.065072, 0.903849, 0.065016, 0.903861, 0.025586, 0.98289, 0.065072, 0.982966, 0.104648, 0.90382, 0.104558, 0.983059, 0.143709, 0.903783, 0.143674, 0.90382, 0.104558, 0.982995, 0.104478, 0.903818, 0.104612, 0.903768, 0.142821, 0.982911, 0.064495, 0.903851, 0.064485, 0.903818, 0.104612, 0.982911, 0.064495, 0.982868, 0.02554, 0.903861, 0.025586, 0.903849, 0.065016, 0.823147, 0.064995, 0.823147, 0.025581, 0.903849, 0.065016, 0.90382, 0.104558, 0.823146, 0.104541, 0.903783, 0.143674, 0.823145, 0.143663, 0.823146, 0.104541, 0.903768, 0.142821, 0.903818, 0.104612, 0.823146, 0.10464, 0.903851, 0.064485, 0.823147, 0.064483, 0.823146, 0.10464, 0.903851, 0.064485, 0.903861, 0.025586, 0.823147, 0.025581, 0.823147, 0.064995, 0.741378, 0.064988, 0.741407, 0.025579, 0.823147, 0.064995, 0.823146, 0.104541, 0.741399, 0.104524, 0.823146, 0.104541, 0.823145, 0.143663, 0.741351, 0.143653, 0.823145, 0.142819, 0.823146, 0.10464, 0.741346, 0.104654, 0.823147, 0.064483, 0.741388, 0.064482, 0.741346, 0.104654, 0.823147, 0.064483, 0.823147, 0.025581, 0.741407, 0.025579, 0.741378, 0.064988, 0.661528, 0.064986, 0.66157, 0.025582, 0.741399, 0.104524, 0.661566, 0.104521, 0.661528, 0.064986, 0.741399, 0.104524, 0.741351, 0.143653, 0.66152, 0.143657, 0.741346, 0.104654, 0.66164, 0.104669, 0.661485, 0.142813, 0.741346, 0.104654, 0.741388, 0.064482, 0.661597, 0.064482, 0.741407, 0.025579, 0.66157, 0.025582, 0.661597, 0.064482, 0.661528, 0.064986, 0.582933, 0.064974, 0.582967, 0.025562, 0.661566, 0.104521, 0.582928, 0.104508, 0.582933, 0.064974, 0.661566, 0.104521, 0.66152, 0.143657, 0.582916, 0.143648, 0.66164, 0.104669, 0.583007, 0.104675, 0.582969, 0.142813, 0.66164, 0.104669, 0.661597, 0.064482, 0.582994, 0.064482, 0.66157, 0.025582, 0.582967, 0.025562, 0.582994, 0.064482, 0.582933, 0.064974, 0.502266, 0.064958, 0.502359, 0.025531, 0.582933, 0.064974, 0.582928, 0.104508, 0.502243, 0.104492, 0.582928, 0.104508, 0.582916, 0.143648, 0.502231, 0.14364, 0.583007, 0.104675, 0.502461, 0.104655, 0.50244, 0.142814, 0.582994, 0.064482, 0.502451, 0.064484, 0.502461, 0.104655, 0.582967, 0.025562, 0.502359, 0.025531, 0.502451, 0.064484, 0.383077, 0.420465, 0.550912, 0.420465, 0.550912, 0.432165, 0.383077, 0.490666, 0.383077, 0.478966, 0.550911, 0.478966, 0.383077, 0.467266, 0.550912, 0.467266, 0.550911, 0.478966, 0.383077, 0.467266, 0.383077, 0.455566, 0.550912, 0.455566, 0.383077, 0.443865, 0.550912, 0.443865, 0.550912, 0.455566, 0.383077, 0.443865, 0.383077, 0.432165, 0.550912, 0.432165, 0.503181, 0.401058, 0.503181, 0.364971, 0.517513, 0.364971, 0.488839, 0.401058, 0.488839, 0.364971, 0.503181, 0.364971, 0.488839, 0.401058, 0.474471, 0.401058, 0.474471, 0.364971, 0.474471, 0.401058, 0.46015, 0.401058, 0.46015, 0.364971, 0.531872, 0.401058, 0.531872, 0.364971, 0.546242, 0.364971, 0.531872, 0.401058, 0.517513, 0.401058, 0.517513, 0.364971, 0.484036, 0.320077, 0.499655, 0.31106, 0.515274, 0.320077, 0.515274, 0.320077, 0.515274, 0.338113, 0.499655, 0.34713, 0.499655, 0.34713, 0.484036, 0.338113, 0.515274, 0.320077, 0.575628, 0.356338, 0.971393, 0.356338, 0.971393, 0.377339, 0.971393, 0.377339, 0.971393, 0.398341, 0.575628, 0.398341, 0.575628, 0.398341, 0.971393, 0.398341, 0.971393, 0.419343, 0.971393, 0.419343, 0.971393, 0.440345, 0.575628, 0.440344, 0.971393, 0.440345, 0.971392, 0.461347, 0.575628, 0.461346, 0.971392, 0.461347, 0.971392, 0.482348, 0.575628, 0.482347, 0.176737, 0.349455, 0.191318, 0.350848, 0.192306, 0.376281, 0.280923, 0.406267, 0.262543, 0.377737, 0.278224, 0.373785, 0.278224, 0.373785, 0.277654, 0.348317, 0.291875, 0.346197, 0.188118, 0.318424, 0.206998, 0.347516, 0.191318, 0.350848, 0.188118, 0.318424, 0.025463, 0.307411, 0.025463, 0.276607, 0.192306, 0.376281, 0.191318, 0.350848, 0.206998, 0.347516, 0.278224, 0.373785, 0.262543, 0.377737, 0.261672, 0.345436, 0.208278, 0.379827, 0.206998, 0.347516, 0.261672, 0.345436, 0.191444, 0.406278, 0.066502, 0.390549, 0.083423, 0.380135, 0.188118, 0.265594, 0.27896, 0.265595, 0.27896, 0.318424, 0.277654, 0.348317, 0.261672, 0.345436, 0.27896, 0.318424, 0.261672, 0.345436, 0.206998, 0.347516, 0.188118, 0.318424, 0.192306, 0.376281, 0.208278, 0.379827, 0.191444, 0.406278, 0.208278, 0.379827, 0.262543, 0.377737, 0.280923, 0.406267, 0.402622, 0.373782, 0.388531, 0.364458, 0.386806, 0.348169, 0.083423, 0.380135, 0.066502, 0.390549, 0.066805, 0.354988, 0.176737, 0.349455, 0.178319, 0.379282, 0.083423, 0.380135, 0.291875, 0.346197, 0.386806, 0.348169, 0.388531, 0.364458, 0.188118, 0.318424, 0.176737, 0.349455, 0.081204, 0.363909, 0.27896, 0.318424, 0.27896, 0.265595, 0.441615, 0.276607, 0.280923, 0.406267, 0.292584, 0.376057, 0.388531, 0.364458, 0.27896, 0.318424, 0.404064, 0.338245, 0.386806, 0.348169, 0.581838, 0.064827, 0.581839, 0.104268, 0.503118, 0.104268, 0.581839, 0.104268, 0.581838, 0.143878, 0.503118, 0.143878, 0.581837, 0.143865, 0.581837, 0.104261, 0.503105, 0.104261, 0.503105, 0.104261, 0.581837, 0.104261, 0.581837, 0.064851, 0.663395, 0.064827, 0.663395, 0.104268, 0.581839, 0.104268, 0.581839, 0.104268, 0.663395, 0.104268, 0.663395, 0.143878, 0.663394, 0.143865, 0.663394, 0.104261, 0.581837, 0.104261, 0.581837, 0.104261, 0.663394, 0.104261, 0.663394, 0.064851, 0.663395, 0.025675, 0.742237, 0.025675, 0.742237, 0.064827, 0.742237, 0.064827, 0.742237, 0.104268, 0.663395, 0.104268, 0.742237, 0.104268, 0.742237, 0.143878, 0.663395, 0.143878, 0.742236, 0.143865, 0.742236, 0.104261, 0.663394, 0.104261, 0.663394, 0.104261, 0.742236, 0.104261, 0.742236, 0.06485, 0.742236, 0.06485, 0.742237, 0.025675, 0.663395, 0.025675, 0.742237, 0.025675, 0.822484, 0.025675, 0.822484, 0.064827, 0.822484, 0.064827, 0.822484, 0.104268, 0.742237, 0.104268, 0.822484, 0.104268, 0.822484, 0.143878, 0.742237, 0.143878, 0.742236, 0.143865, 0.822481, 0.143865, 0.822481, 0.104261, 0.742236, 0.104261, 0.822481, 0.104261, 0.822481, 0.064851, 0.822481, 0.064851, 0.822484, 0.025675, 0.742237, 0.025675, 0.822484, 0.025675, 0.903018, 0.025675, 0.903018, 0.064827, 0.903018, 0.064827, 0.903018, 0.104268, 0.822484, 0.104268, 0.822484, 0.104268, 0.903018, 0.104268, 0.903018, 0.143878, 0.903017, 0.143864, 0.903017, 0.104261, 0.822481, 0.104261, 0.822481, 0.104261, 0.903017, 0.104261, 0.903017, 0.064851, 0.903017, 0.064851, 0.903018, 0.025675, 0.822484, 0.025675, 0.903018, 0.025675, 0.981895, 0.025675, 0.981894, 0.064827, 0.981894, 0.064827, 0.981894, 0.104268, 0.903018, 0.104268, 0.903018, 0.104268, 0.981894, 0.104268, 0.981894, 0.143878, 0.981874, 0.143864, 0.981875, 0.104261, 0.903017, 0.104261, 0.903017, 0.104261, 0.981875, 0.104261, 0.981875, 0.06485, 0.981875, 0.06485, 0.981895, 0.025675, 0.903018, 0.025675, 0.025697, 0.025675, 0.105003, 0.025675, 0.105003, 0.064827, 0.105003, 0.064827, 0.105004, 0.104268, 0.025697, 0.104268, 0.025697, 0.104268, 0.105004, 0.104268, 0.105004, 0.143878, 0.025693, 0.143864, 0.104997, 0.143865, 0.104996, 0.104261, 0.104996, 0.104261, 0.104996, 0.06485, 0.025693, 0.06485, 0.104996, 0.06485, 0.105003, 0.025675, 0.025697, 0.025675, 0.184346, 0.025675, 0.184346, 0.064827, 0.105003, 0.064827, 0.105003, 0.064827, 0.184346, 0.064827, 0.184346, 0.104268, 0.105004, 0.104268, 0.184346, 0.104268, 0.184346, 0.143878, 0.184345, 0.143865, 0.184345, 0.104261, 0.104996, 0.104261, 0.184345, 0.104261, 0.184345, 0.06485, 0.104996, 0.06485, 0.104996, 0.06485, 0.184345, 0.06485, 0.184346, 0.025675, 0.184346, 0.025675, 0.265707, 0.025675, 0.265707, 0.064827, 0.265707, 0.064827, 0.265707, 0.104268, 0.184346, 0.104268, 0.265707, 0.104268, 0.265707, 0.143878, 0.184346, 0.143878, 0.184345, 0.143865, 0.265687, 0.143865, 0.265687, 0.104261, 0.184345, 0.104261, 0.265687, 0.104261, 0.265686, 0.064851, 0.265686, 0.064851, 0.265707, 0.025675, 0.184346, 0.025675, 0.345881, 0.064827, 0.345881, 0.104268, 0.265707, 0.104268, 0.265707, 0.104268, 0.345881, 0.104268, 0.345881, 0.143878, 0.345879, 0.143865, 0.345879, 0.104261, 0.265687, 0.104261, 0.265687, 0.104261, 0.345879, 0.104261, 0.345879, 0.064851, 0.345881, 0.064827, 0.422372, 0.064827, 0.422372, 0.104268, 0.345881, 0.104268, 0.422372, 0.104268, 0.422372, 0.143878, 0.422372, 0.143865, 0.422372, 0.104261, 0.345879, 0.104261, 0.422372, 0.104261, 0.422372, 0.064851, 0.345879, 0.064851, 0.422372, 0.064827, 0.503118, 0.064827, 0.503118, 0.104268, 0.503118, 0.104268, 0.503118, 0.143878, 0.422372, 0.143878, 0.422372, 0.143865, 0.503105, 0.143865, 0.503105, 0.104261, 0.503105, 0.104261, 0.503105, 0.064851, 0.422372, 0.064851, 0.897643, 0.275026, 0.897639, 0.329858, 0.818739, 0.329857, 0.818745, 0.22078, 0.897646, 0.220821, 0.897643, 0.275026, 0.897643, 0.275026, 0.980162, 0.275038, 0.980108, 0.329905, 0.980118, 0.220812, 0.980162, 0.275038, 0.897643, 0.275026, 0.655511, 0.274994, 0.655511, 0.329873, 0.574194, 0.329905, 0.574206, 0.220585, 0.655512, 0.220669, 0.655511, 0.274994, 0.736537, 0.275005, 0.736537, 0.329864, 0.655511, 0.329873, 0.655512, 0.220669, 0.736556, 0.220728, 0.736537, 0.275005, 0.81874, 0.275016, 0.818739, 0.329857, 0.736537, 0.329864, 0.736556, 0.220728, 0.818745, 0.22078, 0.81874, 0.275016, 0.544516, 0.304307, 0.544518, 0.323679, 0.515545, 0.274854, 0.544516, 0.245561, 0.537802, 0.274854, 0.515545, 0.274854, 0.544514, 0.304039, 0.544515, 0.32369, 0.515512, 0.274852, 0.544514, 0.245504, 0.537729, 0.274852, 0.515512, 0.274852, 0.656099, 0.179744, 0.656122, 0.190724, 0.73789, 0.190726, 0.901011, 0.179745, 0.901026, 0.190723, 0.819494, 0.190726, 0.901002, 0.179744, 0.819455, 0.179744, 0.819474, 0.190727, 0.819475, 0.179744, 0.819494, 0.190726, 0.73799, 0.190725, 0.982314, 0.179745, 0.901002, 0.179744, 0.901017, 0.190724, 0.574583, 0.179745, 0.574578, 0.190717, 0.656122, 0.190724, 0.982339, 0.179745, 0.982378, 0.190716, 0.901026, 0.190723, 0.819455, 0.179744, 0.737872, 0.179744, 0.73789, 0.190726, 0.656087, 0.179745, 0.737972, 0.179744, 0.73799, 0.190725, 0.574585, 0.179745, 0.656087, 0.179745, 0.65611, 0.190723};
+
+               // Draw the Planes wheels
+
+               // activate and specify pointer to vertex array
+               glEnableClientState(GL_VERTEX_ARRAY);
+               glVertexPointer(3, GL_FLOAT, 0, j_35_draken_wheels_vertices);
+
+               // activate normal pointers
+               glEnableClientState(GL_NORMAL_ARRAY);
+               glNormalPointer(GL_FLOAT, 0, j_35_draken_wheels_normals);
+
+               // activate UV pointers
+               glEnableClientState(GL_TEXTURE_COORD_ARRAY);
+               glTexCoordPointer(2, GL_FLOAT, 0, j_35_draken_wheels_UVs);
+
+               // draw the Plane
+               glDrawArrays(GL_TRIANGLES, 0, 3162); //tris in blender times 3x
+
+               glDisableClientState(GL_VERTEX_ARRAY);                  // deactivate vertex arrays after drawing
+               glDisableClientState(GL_NORMAL_ARRAY);                  // deactivate normal arrays after drawing
+               glDisableClientState(GL_TEXTURE_COORD_ARRAY);           // deactivate texture arrays after drawing
+
+               // disable texture
+               glDisable(GL_TEXTURE_2D);
+       }
+       //------------------------------------------------------------------------------------------------------------------------------------------------------------------//
+
+
+       // draw sidewinder texture_draken_3
+       glBindTexture( GL_TEXTURE_2D, texture_draken_3 );
+       glEnable(GL_TEXTURE_2D);
+
+       // set vertices for Sidewinders
+       static GLfloat j_35_draken_sw_r_vertices[] = {0.743357, 0.764296, 1.490873, 1.020575, 0.922695, 1.627542, 0.743357, 0.926693, 1.622614, 1.230171, 0.760299, 1.4958, 1.125224, 0.601899, 1.359131, 1.33482, 0.764296, 1.490873, 1.125224, 0.926693, 1.622614, 1.230171, 0.760299, 1.4958, 1.33482, 0.764296, 1.490873, 1.020575, 0.597902, 1.364058, 0.743357, 0.764296, 1.490873, 0.743357, 0.601899, 1.359131, 1.230171, 0.768293, 1.485945, 1.125224, 0.601899, 1.359131, 1.020575, 0.605897, 1.354203, 0.743357, 0.764296, 1.490873, 1.020575, 0.605897, 1.354203, 0.743357, 0.601899, 1.359131, 1.020575, 0.93069, 1.617687, 0.743357, 0.764296, 1.490873, 0.743357, 0.926693, 1.622614, 1.125224, 0.926693, 1.622614, 1.230171, 0.768293, 1.485945, 1.020575, 0.93069, 1.617687, 1.020575, 0.922695, 1.627542, 1.020575, 0.93069, 1.617687, 0.743357, 0.926693, 1.622614, 1.020575, 0.605897, 1.354203, 1.020575, 0.597902, 1.364058, 0.743357, 0.601899, 1.359131, 0.743357, 0.764296, 1.490873, 1.020575, 0.627627, 1.649272, 0.743357, 0.632555, 1.653269, 1.230172, 0.759369, 1.486875, 1.125224, 0.896038, 1.328476, 1.334821, 0.764296, 1.490873, 1.125224, 0.632555, 1.653269, 1.230172, 0.759369, 1.486875, 1.334821, 0.764296, 1.490873, 1.020575, 0.89111, 1.324478, 0.743357, 0.764296, 1.490873, 0.743357, 0.896038, 1.328476, 1.230172, 0.769224, 1.49487, 1.125224, 0.896038, 1.328476, 1.020575, 0.900966, 1.332473, 0.743357, 0.764296, 1.490873, 1.020575, 0.900966, 1.332473, 0.743357, 0.896038, 1.328476, 1.020575, 0.637482, 1.657266, 0.743357, 0.764296, 1.490873, 0.743357, 0.632555, 1.653269, 1.125224, 0.632555, 1.653269, 1.230172, 0.769224, 1.49487, 1.020575, 0.637482, 1.657266, 1.020575, 0.627627, 1.649272, 1.020575, 0.637482, 1.657266, 0.743357, 0.632555, 1.653269, 1.020575, 0.900966, 1.332473, 1.020575, 0.89111, 1.324478, 0.743357, 0.896038, 1.328476, 0.730788, 0.826282, 1.541682, 0.730788, 0.764672, 1.491701, 0.730788, 0.772896, 1.570608, 0.730788, 0.814652, 1.430091, 0.730788, 0.764672, 1.491701, 0.730788, 0.843578, 1.483478, 0.730788, 0.703062, 1.441721, 0.730788, 0.764672, 1.491701, 0.730788, 0.756448, 1.412795, 0.730788, 0.714692, 1.553312, 0.730788, 0.764672, 1.491701, 0.730788, 0.685766, 1.499925, 0.730787, 0.843578, 1.483478, 3.121514, 0.826282, 1.541682, 3.121514, 0.843578, 1.483478, 0.730787, 0.826282, 1.541682, 3.121514, 0.772896, 1.570608, 3.121514, 0.826282, 1.541682, 3.121514, 0.772896, 1.570608, 0.730787, 0.714692, 1.553312, 3.121514, 0.714692, 1.553312, 0.730787, 0.714692, 1.553312, 3.121514, 0.685766, 1.499925, 3.121514, 0.714692, 1.553312, 3.121514, 0.685766, 1.499925, 0.730787, 0.703062, 1.441721, 3.121514, 0.703062, 1.441721, 0.730787, 0.703062, 1.441721, 3.121514, 0.756448, 1.412795, 3.121514, 0.703062, 1.441721, 0.730787, 0.756448, 1.412795, 3.121514, 0.814652, 1.430091, 3.121514, 0.756448, 1.412795, 0.730787, 0.814652, 1.430091, 3.121514, 0.843578, 1.483478, 3.121514, 0.814652, 1.430091, 3.441722, 0.798645, 1.449823, 3.121514, 0.843578, 1.483478, 3.441722, 0.818307, 1.486112, 3.121514, 0.756448, 1.412795, 3.441722, 0.798645, 1.449823, 3.441722, 0.759082, 1.438066, 3.441722, 0.722794, 1.457728, 3.121514, 0.756448, 1.412795, 3.441722, 0.759082, 1.438066, 3.121514, 0.685766, 1.499925, 3.441722, 0.722794, 1.457728, 3.441722, 0.711037, 1.497291, 3.121514, 0.714692, 1.553312, 3.441722, 0.711037, 1.497291, 3.441722, 0.730699, 1.53358, 3.121514, 0.772896, 1.570608, 3.441722, 0.730699, 1.53358, 3.441722, 0.770262, 1.545336, 3.441722, 0.80655, 1.525674, 3.121514, 0.772896, 1.570608, 3.441722, 0.770262, 1.545336, 3.441722, 0.818307, 1.486112, 3.121514, 0.826282, 1.541682, 3.441722, 0.80655, 1.525674, 3.441722, 0.770262, 1.545336, 3.482691, 0.785152, 1.508315, 3.441722, 0.80655, 1.525674, 3.441722, 0.711037, 1.497291, 3.482691, 0.744192, 1.475088, 3.482691, 0.738443, 1.494435, 3.441722, 0.798645, 1.449823, 3.482691, 0.790901, 1.488968, 3.482691, 0.781286, 1.471222, 3.441722, 0.818307, 1.486112, 3.482691, 0.785152, 1.508315, 3.482691, 0.790901, 1.488968, 3.441722, 0.770262, 1.545336, 3.482691, 0.748058, 1.512181, 3.482691, 0.767405, 1.517931, 3.441722, 0.722794, 1.457728, 3.482691, 0.761938, 1.465472, 3.482691, 0.744192, 1.475088, 3.441722, 0.711037, 1.497291, 3.482691, 0.748058, 1.512181, 3.441722, 0.730699, 1.53358, 3.441722, 0.798645, 1.449823, 3.482691, 0.761938, 1.465472, 3.441722, 0.759082, 1.438066, 3.482691, 0.785152, 1.508315, 3.494658, 0.764672, 1.491701, 3.482691, 0.790901, 1.488968, 3.482691, 0.744192, 1.475088, 3.494658, 0.764672, 1.491701, 3.482691, 0.738443, 1.494435, 3.482691, 0.781286, 1.471222, 3.494658, 0.764672, 1.491701, 3.482691, 0.761938, 1.465472, 3.482691, 0.748058, 1.512181, 3.494658, 0.764672, 1.491701, 3.482691, 0.767405, 1.517931, 2.731367, 0.764296, 1.490873, 3.193511, 0.761873, 1.49386, 2.829453, 0.860322, 1.573725, 3.193511, 0.761873, 1.49386, 2.871787, 0.665848, 1.411008, 3.235845, 0.764296, 1.490873, 2.871787, 0.862745, 1.570738, 3.193511, 0.761873, 1.49386, 3.235845, 0.764296, 1.490873, 2.731367, 0.764296, 1.490873, 2.829453, 0.663424, 1.413995, 3.193511, 0.761873, 1.49386, 2.829453, 0.663424, 1.413995, 2.849024, 0.609183, 1.36504, 2.871787, 0.665848, 1.411008, 2.849024, 0.919409, 1.616706, 2.829453, 0.860322, 1.573725, 2.871787, 0.862745, 1.570738, 2.829453, 0.860322, 1.573725, 2.694546, 0.919409, 1.616706, 2.731367, 0.764296, 1.490873, 2.829453, 0.663424, 1.413995, 2.694546, 0.609183, 1.36504, 2.80669, 0.60676, 1.368027, 2.80669, 0.611607, 1.362053, 2.80669, 0.60676, 1.368027, 2.694546, 0.609183, 1.36504, 2.80669, 0.921833, 1.613719, 2.80669, 0.916986, 1.619693, 2.849024, 0.919409, 1.616706, 3.193511, 0.76672, 1.487886, 2.871787, 0.665848, 1.411008, 2.829453, 0.668271, 1.408021, 2.731367, 0.764296, 1.490873, 3.193511, 0.76672, 1.487886, 2.829453, 0.668271, 1.408021, 2.731367, 0.764296, 1.490873, 2.829453, 0.865168, 1.56775, 3.193511, 0.76672, 1.487886, 2.871787, 0.862745, 1.570737, 3.193511, 0.76672, 1.487886, 2.829453, 0.865168, 1.56775, 2.829453, 0.865168, 1.56775, 2.849023, 0.919409, 1.616705, 2.871787, 0.862745, 1.570737, 2.829453, 0.865168, 1.56775, 2.694546, 0.919409, 1.616705, 2.806689, 0.921833, 1.613718, 2.829453, 0.668271, 1.408021, 2.694546, 0.609183, 1.36504, 2.731367, 0.764296, 1.490873, 2.829453, 0.668271, 1.408021, 2.849024, 0.609184, 1.36504, 2.806689, 0.611607, 1.362053, 2.731367, 0.764296, 1.490873, 3.193511, 0.767284, 1.493297, 2.829453, 0.847148, 1.394848, 3.193511, 0.767284, 1.493297, 2.871787, 0.684432, 1.589322, 3.235845, 0.764296, 1.490873, 2.871787, 0.844161, 1.392425, 3.193511, 0.767284, 1.493297, 3.235845, 0.764296, 1.490873, 2.731367, 0.764296, 1.490873, 2.829453, 0.687419, 1.591745, 3.193511, 0.767284, 1.493297, 2.829453, 0.687419, 1.591745, 2.849024, 0.638463, 1.645986, 2.871787, 0.684432, 1.589322, 2.849024, 0.890129, 1.33576, 2.829453, 0.847148, 1.394848, 2.871787, 0.844161, 1.392425, 2.829453, 0.847148, 1.394848, 2.694546, 0.890129, 1.33576, 2.731367, 0.764296, 1.490873, 2.829453, 0.687419, 1.591745, 2.694546, 0.638463, 1.645986, 2.80669, 0.641451, 1.648409, 2.806689, 0.635476, 1.643562, 2.806689, 0.64145, 1.648409, 2.694545, 0.638463, 1.645986, 2.80669, 0.887142, 1.333337, 2.80669, 0.893116, 1.338184, 2.849024, 0.890129, 1.33576, 3.193511, 0.761309, 1.48845, 2.871786, 0.684431, 1.589321, 2.829452, 0.681444, 1.586898, 2.731367, 0.764296, 1.490873, 3.193511, 0.761309, 1.48845, 2.829452, 0.681444, 1.586898, 2.731367, 0.764296, 1.490873, 2.829453, 0.841174, 1.390001, 3.193511, 0.761309, 1.48845, 2.871787, 0.844161, 1.392424, 3.193511, 0.761309, 1.48845, 2.829453, 0.841174, 1.390001, 2.829453, 0.841174, 1.390001, 2.849023, 0.890129, 1.33576, 2.871787, 0.844161, 1.392424, 2.829453, 0.841174, 1.390001, 2.694546, 0.890129, 1.33576, 2.806689, 0.887142, 1.333337, 2.829452, 0.681444, 1.586898, 2.694545, 0.638463, 1.645986, 2.731367, 0.764296, 1.490873, 2.829452, 0.681444, 1.586898, 2.849023, 0.638463, 1.645986, 2.806689, 0.635476, 1.643562, 0.743357, 0.764296, 1.490873, 1.230171, 0.760299, 1.4958, 1.020575, 0.922695, 1.627542, 1.230171, 0.760299, 1.4958, 1.020575, 0.597902, 1.364058, 1.125224, 0.601899, 1.359131, 1.125224, 0.926693, 1.622614, 1.020575, 0.922695, 1.627542, 1.230171, 0.760299, 1.4958, 1.020575, 0.597902, 1.364058, 1.230171, 0.760299, 1.4958, 0.743357, 0.764296, 1.490873, 1.230171, 0.768293, 1.485945, 1.33482, 0.764296, 1.490873, 1.125224, 0.601899, 1.359131, 0.743357, 0.764296, 1.490873, 1.230171, 0.768293, 1.485945, 1.020575, 0.605897, 1.354203, 1.020575, 0.93069, 1.617687, 1.230171, 0.768293, 1.485945, 0.743357, 0.764296, 1.490873, 1.125224, 0.926693, 1.622614, 1.33482, 0.764296, 1.490873, 1.230171, 0.768293, 1.485945, 1.020575, 0.922695, 1.627542, 1.125224, 0.926693, 1.622614, 1.020575, 0.93069, 1.617687, 1.020575, 0.605897, 1.354203, 1.125224, 0.601899, 1.359131, 1.020575, 0.597902, 1.364058, 0.743357, 0.764296, 1.490873, 1.230172, 0.759369, 1.486875, 1.020575, 0.627627, 1.649272, 1.230172, 0.759369, 1.486875, 1.020575, 0.89111, 1.324478, 1.125224, 0.896038, 1.328476, 1.125224, 0.632555, 1.653269, 1.020575, 0.627627, 1.649272, 1.230172, 0.759369, 1.486875, 1.020575, 0.89111, 1.324478, 1.230172, 0.759369, 1.486875, 0.743357, 0.764296, 1.490873, 1.230172, 0.769224, 1.49487, 1.33482, 0.764296, 1.490873, 1.125224, 0.896038, 1.328476, 0.743357, 0.764296, 1.490873, 1.230172, 0.769224, 1.49487, 1.020575, 0.900966, 1.332473, 1.020575, 0.637482, 1.657266, 1.230172, 0.769224, 1.49487, 0.743357, 0.764296, 1.490873, 1.125224, 0.632555, 1.653269, 1.33482, 0.764296, 1.490873, 1.230172, 0.769224, 1.49487, 1.020575, 0.627627, 1.649272, 1.125224, 0.632555, 1.653269, 1.020575, 0.637482, 1.657266, 1.020575, 0.900966, 1.332473, 1.125224, 0.896038, 1.328476, 1.020575, 0.89111, 1.324478, 0.730788, 0.826282, 1.541682, 0.730788, 0.843578, 1.483478, 0.730788, 0.764672, 1.491701, 0.730788, 0.814652, 1.430091, 0.730788, 0.756448, 1.412795, 0.730788, 0.764672, 1.491701, 0.730788, 0.703062, 1.441721, 0.730788, 0.685766, 1.499925, 0.730788, 0.764672, 1.491701, 0.730788, 0.714692, 1.553312, 0.730788, 0.772896, 1.570608, 0.730788, 0.764672, 1.491701, 0.730787, 0.843578, 1.483478, 0.730787, 0.826282, 1.541682, 3.121514, 0.826282, 1.541682, 0.730787, 0.826282, 1.541682, 0.730787, 0.772896, 1.570608, 3.121514, 0.772896, 1.570608, 3.121514, 0.772896, 1.570608, 0.730787, 0.772896, 1.570608, 0.730787, 0.714692, 1.553312, 0.730787, 0.714692, 1.553312, 0.730787, 0.685766, 1.499925, 3.121514, 0.685766, 1.499925, 3.121514, 0.685766, 1.499925, 0.730787, 0.685766, 1.499925, 0.730787, 0.703062, 1.441721, 0.730787, 0.703062, 1.441721, 0.730787, 0.756448, 1.412795, 3.121514, 0.756448, 1.412795, 0.730787, 0.756448, 1.412795, 0.730787, 0.814652, 1.430091, 3.121514, 0.814652, 1.430091, 0.730787, 0.814652, 1.430091, 0.730787, 0.843578, 1.483478, 3.121514, 0.843578, 1.483478, 3.441722, 0.798645, 1.449823, 3.121514, 0.814652, 1.430091, 3.121514, 0.843578, 1.483478, 3.121514, 0.756448, 1.412795, 3.121514, 0.814652, 1.430091, 3.441722, 0.798645, 1.449823, 3.441722, 0.722794, 1.457728, 3.121514, 0.703062, 1.441721, 3.121514, 0.756448, 1.412795, 3.121514, 0.685766, 1.499925, 3.121514, 0.703062, 1.441721, 3.441722, 0.722794, 1.457728, 3.121514, 0.714692, 1.553312, 3.121514, 0.685766, 1.499925, 3.441722, 0.711037, 1.497291, 3.121514, 0.772896, 1.570608, 3.121514, 0.714692, 1.553312, 3.441722, 0.730699, 1.53358, 3.441722, 0.80655, 1.525674, 3.121514, 0.826282, 1.541682, 3.121514, 0.772896, 1.570608, 3.441722, 0.818307, 1.486112, 3.121514, 0.843578, 1.483478, 3.121514, 0.826282, 1.541682, 3.441722, 0.770262, 1.545336, 3.482691, 0.767405, 1.517931, 3.482691, 0.785152, 1.508315, 3.441722, 0.711037, 1.497291, 3.441722, 0.722794, 1.457728, 3.482691, 0.744192, 1.475088, 3.441722, 0.798645, 1.449823, 3.441722, 0.818307, 1.486112, 3.482691, 0.790901, 1.488968, 3.441722, 0.818307, 1.486112, 3.441722, 0.80655, 1.525674, 3.482691, 0.785152, 1.508315, 3.441722, 0.770262, 1.545336, 3.441722, 0.730699, 1.53358, 3.482691, 0.748058, 1.512181, 3.441722, 0.722794, 1.457728, 3.441722, 0.759082, 1.438066, 3.482691, 0.761938, 1.465472, 3.441722, 0.711037, 1.497291, 3.482691, 0.738443, 1.494435, 3.482691, 0.748058, 1.512181, 3.441722, 0.798645, 1.449823, 3.482691, 0.781286, 1.471222, 3.482691, 0.761938, 1.465472, 3.482691, 0.785152, 1.508315, 3.482691, 0.767405, 1.517931, 3.494658, 0.764672, 1.491701, 3.482691, 0.744192, 1.475088, 3.482691, 0.761938, 1.465472, 3.494658, 0.764672, 1.491701, 3.482691, 0.781286, 1.471222, 3.482691, 0.790901, 1.488968, 3.494658, 0.764672, 1.491701, 3.482691, 0.748058, 1.512181, 3.482691, 0.738443, 1.494435, 3.494658, 0.764672, 1.491701, 3.193511, 0.761873, 1.49386, 2.829453, 0.663424, 1.413995, 2.871787, 0.665848, 1.411008, 2.871787, 0.862745, 1.570738, 2.829453, 0.860322, 1.573725, 3.193511, 0.761873, 1.49386, 2.829453, 0.663424, 1.413995, 2.80669, 0.60676, 1.368027, 2.849024, 0.609183, 1.36504, 2.849024, 0.919409, 1.616706, 2.80669, 0.916986, 1.619693, 2.829453, 0.860322, 1.573725, 2.829453, 0.860322, 1.573725, 2.80669, 0.916986, 1.619693, 2.694546, 0.919409, 1.616706, 2.829453, 0.663424, 1.413995, 2.731367, 0.764296, 1.490873, 2.694546, 0.609183, 1.36504, 2.80669, 0.611607, 1.362053, 2.849024, 0.609183, 1.36504, 2.80669, 0.60676, 1.368027, 2.80669, 0.921833, 1.613719, 2.694546, 0.919409, 1.616706, 2.80669, 0.916986, 1.619693, 3.193511, 0.76672, 1.487886, 3.235844, 0.764297, 1.490873, 2.871787, 0.665848, 1.411008, 2.871787, 0.862745, 1.570737, 3.235844, 0.764297, 1.490873, 3.193511, 0.76672, 1.487886, 2.829453, 0.865168, 1.56775, 2.806689, 0.921833, 1.613718, 2.849023, 0.919409, 1.616705, 2.829453, 0.865168, 1.56775, 2.731367, 0.764296, 1.490873, 2.694546, 0.919409, 1.616705, 2.829453, 0.668271, 1.408021, 2.806689, 0.611607, 1.362053, 2.694546, 0.609183, 1.36504, 2.829453, 0.668271, 1.408021, 2.871787, 0.665848, 1.411008, 2.849024, 0.609184, 1.36504, 3.193511, 0.767284, 1.493297, 2.829453, 0.687419, 1.591745, 2.871787, 0.684432, 1.589322, 2.871787, 0.844161, 1.392425, 2.829453, 0.847148, 1.394848, 3.193511, 0.767284, 1.493297, 2.829453, 0.687419, 1.591745, 2.80669, 0.641451, 1.648409, 2.849024, 0.638463, 1.645986, 2.849024, 0.890129, 1.33576, 2.80669, 0.893117, 1.338184, 2.829453, 0.847148, 1.394848, 2.829453, 0.847148, 1.394848, 2.80669, 0.893117, 1.338184, 2.694546, 0.890129, 1.33576, 2.829453, 0.687419, 1.591745, 2.731367, 0.764296, 1.490873, 2.694546, 0.638463, 1.645986, 2.806689, 0.635476, 1.643562, 2.849023, 0.638463, 1.645986, 2.806689, 0.64145, 1.648409, 2.80669, 0.887142, 1.333337, 2.694546, 0.890129, 1.33576, 2.80669, 0.893116, 1.338184, 3.193511, 0.761309, 1.48845, 3.235844, 0.764296, 1.490873, 2.871786, 0.684431, 1.589321, 2.871787, 0.844161, 1.392424, 3.235844, 0.764296, 1.490873, 3.193511, 0.761309, 1.48845, 2.829453, 0.841174, 1.390001, 2.806689, 0.887142, 1.333337, 2.849023, 0.890129, 1.33576, 2.829453, 0.841174, 1.390001, 2.731367, 0.764296, 1.490873, 2.694546, 0.890129, 1.33576, 2.829452, 0.681444, 1.586898, 2.806689, 0.635476, 1.643562, 2.694545, 0.638463, 1.645986, 2.829452, 0.681444, 1.586898, 2.871786, 0.684431, 1.589321, 2.849023, 0.638463, 1.645986};
+
+       // set normals for Sidewinders
+       static GLfloat j_35_draken_sw_r_normals[] = {-0.01883, -0.629871, 0.776452, 0.003296, -0.623707, 0.78161, -0.022858, -0.62981, 0.776391, 0.042116, -0.629414, 0.775903, 0.060396, -0.674703, 0.735588, 0.060518, -0.628834, 0.77517, 0.060396, -0.580645, 0.811884, 0.042116, -0.629414, 0.775903, 0.060518, -0.628834, 0.77517, 0.003296, -0.636219, 0.771477, -0.01883, -0.629871, 0.776452, -0.022858, -0.62981, 0.776391, 0.042116, 0.629414, -0.775903, 0.060396, 0.580645, -0.811884, 0.003296, 0.623707, -0.78161, -0.01883, 0.629871, -0.776452, 0.003296, 0.623707, -0.78161, -0.022858, 0.62981, -0.776391, 0.003296, 0.636219, -0.771477, -0.01883, 0.629871, -0.776452, -0.022858, 0.62981, -0.776391, 0.060396, 0.674703, -0.735588, 0.042116, 0.629414, -0.775903, 0.003296, 0.636219, -0.771477, 0.0, 0.776574, 0.629994, 0.0, 0.776574, 0.629994, 0.0, 0.776574, 0.629994, 0.0, -0.776574, -0.629994, 0.0, -0.776574, -0.629994, 0.0, -0.776574, -0.629994, -0.01883, -0.776452, -0.629871, 0.003296, -0.78161, -0.623707, -0.022858, -0.776391, -0.62981, 0.042116, -0.775903, -0.629414, 0.060396, -0.735588, -0.674703, 0.060518, -0.77517, -0.628834, 0.060396, -0.811884, -0.580645, 0.042116, -0.775903, -0.629414, 0.060518, -0.77517, -0.628834, 0.003296, -0.771477, -0.636219, -0.01883, -0.776452, -0.629871, -0.022858, -0.776391, -0.62981, 0.042116, 0.775903, 0.629414, 0.060396, 0.811884, 0.580645, 0.003296, 0.78161, 0.623707, -0.01883, 0.776452, 0.629871, 0.003296, 0.78161, 0.623707, -0.022858, 0.776391, 0.62981, 0.003296, 0.771477, 0.636219, -0.01883, 0.776452, 0.629871, -0.022858, 0.776391, 0.62981, 0.060396, 0.735588, 0.674703, 0.042116, 0.775903, 0.629414, 0.003296, 0.771477, 0.636219, 0.0, -0.629994, 0.776574, 0.0, -0.629994, 0.776574, 0.0, -0.629994, 0.776574, 0.0, 0.629994, -0.776574, 0.0, 0.629994, -0.776574, 0.0, 0.629963, -0.776574, -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, 0.0, 0.0, -1.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.994598, -0.103641, 0.039186, 0.775994, 0.629505, 0.039186, 0.993835, -0.103549, 0.0, 0.776574, 0.629994, 0.039186, 0.103549, 0.993835, 0.039186, 0.775994, 0.629505, 0.039186, 0.103549, 0.993835, 0.0, -0.629994, 0.776574, 0.039186, -0.629505, 0.775994, 0.0, -0.629994, 0.776574, 0.039186, -0.993835, 0.103549, 0.039186, -0.629505, 0.775994, 0.039186, -0.993835, 0.103549, 0.0, -0.776574, -0.629994, 0.039186, -0.775994, -0.629505, 0.0, -0.776574, -0.629994, 0.039186, -0.103549, -0.993835, 0.039186, -0.775994, -0.629505, 0.0, -0.103641, -0.994598, 0.039186, 0.629505, -0.775994, 0.039186, -0.103549, -0.993835, 0.0, 0.629994, -0.776574, 0.039186, 0.993835, -0.103549, 0.039186, 0.629505, -0.775994, 0.311563, 0.598621, -0.737938, 0.039186, 0.993835, -0.103549, 0.311563, 0.945097, -0.098483, 0.039186, -0.103549, -0.993835, 0.311563, 0.598621, -0.737938, 0.311563, -0.098483, -0.945097, 0.311563, -0.737938, -0.598621, 0.039186, -0.103549, -0.993835, 0.311563, -0.098483, -0.945097, 0.039186, -0.993835, 0.103549, 0.311563, -0.737938, -0.598621, 0.311563, -0.945097, 0.098483, 0.039186, -0.629505, 0.775994, 0.311563, -0.945097, 0.098483, 0.311563, -0.598621, 0.737938, 0.039186, 0.103549, 0.993835, 0.311563, -0.598621, 0.737938, 0.311563, 0.098483, 0.945097, 0.311563, 0.737907, 0.598621, 0.039186, 0.103549, 0.993835, 0.311563, 0.098483, 0.945097, 0.311563, 0.945097, -0.098483, 0.039186, 0.775994, 0.629505, 0.311563, 0.737907, 0.598621, 0.311563, 0.098483, 0.945097, 0.731254, 0.529679, 0.429701, 0.311563, 0.737907, 0.598621, 0.311563, -0.945097, 0.098483, 0.731254, -0.529679, -0.429701, 0.731254, -0.678396, 0.070681, 0.311563, 0.598621, -0.737938, 0.731254, 0.678396, -0.070681, 0.731254, 0.429701, -0.52971, 0.311563, 0.945097, -0.098483, 0.731254, 0.529679, 0.429701, 0.731254, 0.678396, -0.070681, 0.311563, 0.098483, 0.945097, 0.731254, -0.429701, 0.52971, 0.731254, 0.070681, 0.678396, 0.311563, -0.737938, -0.598621, 0.731254, -0.070681, -0.678396, 0.731254, -0.529679, -0.429701, 0.311563, -0.945097, 0.098483, 0.731254, -0.429701, 0.52971, 0.311563, -0.598621, 0.737938, 0.311563, 0.598621, -0.737938, 0.731254, -0.070681, -0.678396, 0.311563, -0.098483, -0.945097, 0.731254, 0.529679, 0.429701, 1.0, 0.0, 0.0, 0.731254, 0.678396, -0.070681, 0.731254, -0.529679, -0.429701, 1.0, 0.0, 0.0, 0.731254, -0.678396, 0.070681, 0.731254, 0.429701, -0.52971, 1.0, 0.0, 0.0, 0.731254, -0.070681, -0.678396, 0.731254, -0.429701, 0.52971, 1.0, 0.0, 0.0, 0.731254, 0.070681, 0.678396, -0.019501, -0.629871, 0.776421, 0.079623, -0.627979, 0.774102, 0.017975, -0.620136, 0.784265, 0.079623, -0.627979, 0.774102, 0.088961, -0.758751, 0.645222, 0.090487, -0.6274, 0.7734, 0.088961, -0.474899, 0.875515, 0.079623, -0.627979, 0.774102, 0.090487, -0.6274, 0.7734, -0.019501, -0.629871, 0.776421, 0.017975, -0.639515, 0.768517, 0.079623, -0.627979, 0.774102, 0.017975, -0.639515, 0.768517, 0.090426, -0.649068, 0.755303, 0.088961, -0.758751, 0.645222, 0.090426, -0.605243, 0.790857, 0.017975, -0.620136, 0.784265, 0.088961, -0.474899, 0.875515, 0.017975, -0.620136, 0.784265, -0.032563, -0.635517, 0.771386, -0.019501, -0.629871, 0.776421, 0.017975, -0.639515, 0.768517, -0.032563, -0.623768, 0.780908, 0.016144, -0.633808, 0.773309, 0.0, -0.776574, -0.629994, 0.0, -0.776574, -0.629994, 0.0, -0.776574, -0.629994, 0.0, 0.776574, 0.629994, 0.0, 0.776574, 0.629994, 0.0, 0.776574, 0.629994, 0.079623, 0.627979, -0.774102, 0.088961, 0.474899, -0.875515, 0.017975, 0.620136, -0.784265, -0.019501, 0.629871, -0.776421, 0.079623, 0.627979, -0.774102, 0.017975, 0.620136, -0.784265, -0.019501, 0.629871, -0.776421, 0.017975, 0.639515, -0.768517, 0.079623, 0.627979, -0.774102, 0.088961, 0.758782, -0.645222, 0.079623, 0.627979, -0.774102, 0.017975, 0.639515, -0.768517, 0.017975, 0.639515, -0.768517, 0.090426, 0.649068, -0.755303, 0.088961, 0.758782, -0.645222, 0.017975, 0.639515, -0.768517, -0.032563, 0.623768, -0.780908, 0.016144, 0.633808, -0.773278, 0.017975, 0.620136, -0.784265, -0.032563, 0.635517, -0.771386, -0.019501, 0.629871, -0.776421, 0.017975, 0.620136, -0.784265, 0.090426, 0.605243, -0.790857, 0.016144, 0.625996, -0.779656, -0.019501, 0.776421, 0.629871, 0.079623, 0.774102, 0.627979, 0.017975, 0.784265, 0.620136, 0.079623, 0.774102, 0.627979, 0.088961, 0.645222, 0.758782, 0.090487, 0.7734, 0.6274, 0.088961, 0.875515, 0.474899, 0.079623, 0.774102, 0.627979, 0.090487, 0.7734, 0.6274, -0.019501, 0.776421, 0.629871, 0.017975, 0.768517, 0.639515, 0.079623, 0.774102, 0.627979, 0.017975, 0.768517, 0.639515, 0.090426, 0.755303, 0.649068, 0.088961, 0.645222, 0.758782, 0.090426, 0.790857, 0.605243, 0.017975, 0.784265, 0.620136, 0.088961, 0.875515, 0.474899, 0.017975, 0.784265, 0.620136, -0.032563, 0.771386, 0.635517, -0.019501, 0.776421, 0.629871, 0.017975, 0.768517, 0.639515, -0.032563, 0.780908, 0.623768, 0.016144, 0.773309, 0.633808, 0.0, -0.629994, 0.776574, 0.0, -0.629994, 0.776574, 0.0, -0.629994, 0.776574, 0.0, 0.629994, -0.776574, 0.0, 0.629994, -0.776574, 0.0, 0.629994, -0.776574, 0.079623, -0.774102, -0.627979, 0.088961, -0.875515, -0.474899, 0.017975, -0.784265, -0.620136, -0.019501, -0.776421, -0.629871, 0.079623, -0.774102, -0.627979, 0.017975, -0.784265, -0.620136, -0.019501, -0.776421, -0.629871, 0.017975, -0.768517, -0.639515, 0.079623, -0.774102, -0.627979, 0.088961, -0.645222, -0.758751, 0.079623, -0.774102, -0.627979, 0.017975, -0.768517, -0.639515, 0.017975, -0.768517, -0.639515, 0.090426, -0.755303, -0.649068, 0.088961, -0.645222, -0.758751, 0.017975, -0.768517, -0.639515, -0.032563, -0.780908, -0.623768, 0.016144, -0.773309, -0.633808, 0.017975, -0.784265, -0.620136, -0.032563, -0.771386, -0.635517, -0.019501, -0.776421, -0.629871, 0.017975, -0.784265, -0.620136, 0.090426, -0.790857, -0.605243, 0.016144, -0.779656, -0.625996, -0.01883, -0.629871, 0.776452, 0.042116, -0.629414, 0.775903, 0.003296, -0.623707, 0.78161, 0.042116, -0.629414, 0.775903, 0.003296, -0.636219, 0.771477, 0.060396, -0.674703, 0.735588, 0.060396, -0.580645, 0.811884, 0.003296, -0.623707, 0.78161, 0.042116, -0.629414, 0.775903, 0.003296, -0.636219, 0.771477, 0.042116, -0.629414, 0.775903, -0.01883, -0.629871, 0.776452, 0.042116, 0.629414, -0.775903, 0.060518, 0.628834, -0.77517, 0.060396, 0.580645, -0.811884, -0.01883, 0.629871, -0.776452, 0.042116, 0.629414, -0.775903, 0.003296, 0.623707, -0.78161, 0.003296, 0.636219, -0.771477, 0.042116, 0.629414, -0.775903, -0.01883, 0.629871, -0.776452, 0.060396, 0.674703, -0.735588, 0.060518, 0.628834, -0.77517, 0.042116, 0.629414, -0.775903, 0.0, 0.776574, 0.629994, 0.0, 0.776574, 0.629994, 0.0, 0.776574, 0.629994, 0.0, -0.776574, -0.629994, 0.0, -0.776574, -0.629994, 0.0, -0.776574, -0.629994, -0.01883, -0.776452, -0.629871, 0.042116, -0.775903, -0.629414, 0.003296, -0.78161, -0.623707, 0.042116, -0.775903, -0.629414, 0.003296, -0.771477, -0.636219, 0.060396, -0.735588, -0.674703, 0.060396, -0.811884, -0.580645, 0.003296, -0.78161, -0.623707, 0.042116, -0.775903, -0.629414, 0.003296, -0.771477, -0.636219, 0.042116, -0.775903, -0.629414, -0.01883, -0.776452, -0.629871, 0.042116, 0.775903, 0.629414, 0.060518, 0.77517, 0.628834, 0.060396, 0.811884, 0.580645, -0.01883, 0.776452, 0.629871, 0.042116, 0.775903, 0.629414, 0.003296, 0.78161, 0.623707, 0.003296, 0.771477, 0.636219, 0.042116, 0.775903, 0.629414, -0.01883, 0.776452, 0.629871, 0.060396, 0.735588, 0.674703, 0.060518, 0.77517, 0.628834, 0.042116, 0.775903, 0.629414, 0.0, -0.629994, 0.776574, 0.0, -0.629994, 0.776574, 0.0, -0.629994, 0.776574, 0.0, 0.629994, -0.776574, 0.0, 0.629994, -0.776574, 0.0, 0.629994, -0.776574, -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, 0.0, 0.0, -1.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.994598, -0.103641, 0.0, 0.776574, 0.629994, 0.039186, 0.775994, 0.629505, 0.0, 0.776574, 0.629994, 0.0, 0.103641, 0.994598, 0.039186, 0.103549, 0.993835, 0.039186, 0.103549, 0.993835, 0.0, 0.103641, 0.994598, 0.0, -0.629994, 0.776574, 0.0, -0.629994, 0.776574, 0.0, -0.994598, 0.103641, 0.039186, -0.993835, 0.103549, 0.039186, -0.993835, 0.103549, 0.0, -0.994598, 0.103641, 0.0, -0.776574, -0.629994, 0.0, -0.776574, -0.629994, 0.0, -0.103641, -0.994598, 0.039186, -0.103549, -0.993835, 0.0, -0.103641, -0.994598, 0.0, 0.629994, -0.776574, 0.039186, 0.629505, -0.775994, 0.0, 0.629994, -0.776574, 0.0, 0.994598, -0.103641, 0.039186, 0.993835, -0.103549, 0.311563, 0.598621, -0.737938, 0.039186, 0.629505, -0.775994, 0.039186, 0.993835, -0.103549, 0.039186, -0.103549, -0.993835, 0.039186, 0.629505, -0.775994, 0.311563, 0.598621, -0.737938, 0.311563, -0.737938, -0.598621, 0.039186, -0.775994, -0.629505, 0.039186, -0.103549, -0.993835, 0.039186, -0.993835, 0.103549, 0.039186, -0.775994, -0.629505, 0.311563, -0.737938, -0.598621, 0.039186, -0.629505, 0.775994, 0.039186, -0.993835, 0.103549, 0.311563, -0.945097, 0.098483, 0.039186, 0.103549, 0.993835, 0.039186, -0.629505, 0.775994, 0.311563, -0.598621, 0.737938, 0.311563, 0.737907, 0.598621, 0.039186, 0.775994, 0.629505, 0.039186, 0.103549, 0.993835, 0.311563, 0.945097, -0.098483, 0.039186, 0.993835, -0.103549, 0.039186, 0.775994, 0.629505, 0.311563, 0.098483, 0.945097, 0.731254, 0.070681, 0.678396, 0.731254, 0.529679, 0.429701, 0.311563, -0.945097, 0.098483, 0.311563, -0.737938, -0.598621, 0.731254, -0.529679, -0.429701, 0.311563, 0.598621, -0.737938, 0.311563, 0.945097, -0.098483, 0.731254, 0.678396, -0.070681, 0.311563, 0.945097, -0.098483, 0.311563, 0.737907, 0.598621, 0.731254, 0.529679, 0.429701, 0.311563, 0.098483, 0.945097, 0.311563, -0.598621, 0.737938, 0.731254, -0.429701, 0.52971, 0.311563, -0.737938, -0.598621, 0.311563, -0.098483, -0.945097, 0.731254, -0.070681, -0.678396, 0.311563, -0.945097, 0.098483, 0.731254, -0.678396, 0.070681, 0.731254, -0.429701, 0.52971, 0.311563, 0.598621, -0.737938, 0.731254, 0.429701, -0.52971, 0.731254, -0.070681, -0.678396, 0.731254, 0.529679, 0.429701, 0.731254, 0.070681, 0.678396, 1.0, 0.0, 0.0, 0.731254, -0.529679, -0.429701, 0.731254, -0.070681, -0.678396, 1.0, 0.0, 0.0, 0.731254, 0.429701, -0.52971, 0.731254, 0.678396, -0.070681, 1.0, 0.0, 0.0, 0.731254, -0.429701, 0.52971, 0.731254, -0.678396, 0.070681, 1.0, 0.0, 0.0, 0.079623, -0.627979, 0.774102, 0.017975, -0.639515, 0.768517, 0.088961, -0.758751, 0.645222, 0.088961, -0.474899, 0.875515, 0.017975, -0.620136, 0.784265, 0.079623, -0.627979, 0.774102, 0.017975, -0.639515, 0.768517, 0.016144, -0.633808, 0.773309, 0.090426, -0.649068, 0.755303, 0.090426, -0.605243, 0.790857, 0.016144, -0.625965, 0.779656, 0.017975, -0.620136, 0.784265, 0.017975, -0.620136, 0.784265, 0.016144, -0.625965, 0.779656, -0.032563, -0.635517, 0.771386, 0.017975, -0.639515, 0.768517, -0.019501, -0.629871, 0.776421, -0.032563, -0.623768, 0.780908, 0.0, -0.776574, -0.629994, 0.0, -0.776574, -0.629994, 0.0, -0.776574, -0.629994, 0.0, 0.776574, 0.629994, 0.0, 0.776574, 0.629994, 0.0, 0.776574, 0.629994, 0.079623, 0.627979, -0.774102, 0.090487, 0.6274, -0.7734, 0.088961, 0.474899, -0.875515, 0.088961, 0.758782, -0.645222, 0.090487, 0.6274, -0.7734, 0.079623, 0.627979, -0.774102, 0.017975, 0.639515, -0.768517, 0.016144, 0.633808, -0.773278, 0.090426, 0.649068, -0.755303, 0.017975, 0.639515, -0.768517, -0.019501, 0.629871, -0.776421, -0.032563, 0.623768, -0.780908, 0.017975, 0.620136, -0.784265, 0.016144, 0.625996, -0.779656, -0.032563, 0.635517, -0.771386, 0.017975, 0.620136, -0.784265, 0.088961, 0.474899, -0.875515, 0.090426, 0.605243, -0.790857, 0.079623, 0.774102, 0.627979, 0.017975, 0.768517, 0.639515, 0.088961, 0.645222, 0.758782, 0.088961, 0.875515, 0.474899, 0.017975, 0.784265, 0.620136, 0.079623, 0.774102, 0.627979, 0.017975, 0.768517, 0.639515, 0.016144, 0.773309, 0.633808, 0.090426, 0.755303, 0.649068, 0.090426, 0.790857, 0.605243, 0.016144, 0.779656, 0.625996, 0.017975, 0.784265, 0.620136, 0.017975, 0.784265, 0.620136, 0.016144, 0.779656, 0.625996, -0.032563, 0.771386, 0.635517, 0.017975, 0.768517, 0.639515, -0.019501, 0.776421, 0.629871, -0.032563, 0.780908, 0.623768, 0.0, -0.629994, 0.776574, 0.0, -0.629994, 0.776574, 0.0, -0.629994, 0.776574, 0.0, 0.629994, -0.776574, 0.0, 0.629994, -0.776574, 0.0, 0.629994, -0.776574, 0.079623, -0.774102, -0.627979, 0.090457, -0.7734, -0.6274, 0.088961, -0.875515, -0.474899, 0.088961, -0.645222, -0.758751, 0.090457, -0.7734, -0.6274, 0.079623, -0.774102, -0.627979, 0.017975, -0.768517, -0.639515, 0.016144, -0.773309, -0.633808, 0.090426, -0.755303, -0.649068, 0.017975, -0.768517, -0.639515, -0.019501, -0.776421, -0.629871, -0.032563, -0.780908, -0.623768, 0.017975, -0.784265, -0.620136, 0.016144, -0.779656, -0.625996, -0.032563, -0.771386, -0.635517, 0.017975, -0.784265, -0.620136, 0.088961, -0.875515, -0.474899, 0.090426, -0.790857, -0.605243};
+
+       // set UVs for Sidewinders
+       static GLfloat j_35_draken_sw_r_UVs[] = {0.013711, 0.466074, 0.29802, 0.680449, 0.013726, 0.68047, 0.512511, 0.466056, 0.405465, 0.251577, 0.619914, 0.466052, 0.40548, 0.680543, 0.512511, 0.466056, 0.619914, 0.466052, 0.298005, 0.251679, 0.013711, 0.466074, 0.013711, 0.251679, 0.514643, 0.466584, 0.407558, 0.681043, 0.300097, 0.680921, 0.015843, 0.466472, 0.300097, 0.680921, 0.015803, 0.680868, 0.300193, 0.252151, 0.015843, 0.466472, 0.015899, 0.252077, 0.407653, 0.252077, 0.514643, 0.466584, 0.300193, 0.252151, 0.300505, 0.709775, 0.300414, 0.722717, 0.017756, 0.714259, 0.299561, 0.710655, 0.29947, 0.723597, 0.0168, 0.715141, 0.0164, 0.465856, 0.30071, 0.680231, 0.016416, 0.680252, 0.5152, 0.465838, 0.408155, 0.251358, 0.622604, 0.465834, 0.40817, 0.680325, 0.5152, 0.465838, 0.622604, 0.465834, 0.300695, 0.251461, 0.0164, 0.465856, 0.0164, 0.251461, 0.512847, 0.464191, 0.405761, 0.67865, 0.298301, 0.678527, 0.014047, 0.464078, 0.298301, 0.678527, 0.014007, 0.678474, 0.298397, 0.249757, 0.014047, 0.464078, 0.014103, 0.249683, 0.405857, 0.249683, 0.512847, 0.464191, 0.298397, 0.249757, 0.301318, 0.709847, 0.301227, 0.722789, 0.018559, 0.714333, 0.299575, 0.711376, 0.299484, 0.724318, 0.016812, 0.715862, 0.192103, 0.797634, 0.127086, 0.862768, 0.127004, 0.770738, 0.19222, 0.927785, 0.127086, 0.862768, 0.219116, 0.862686, 0.062069, 0.927902, 0.127086, 0.862768, 0.127168, 0.954798, 0.061952, 0.797751, 0.127086, 0.862768, 0.035056, 0.86285, 0.004051, 0.201213, 0.997287, 0.176347, 0.997287, 0.201199, 0.004051, 0.176358, 0.997287, 0.151496, 0.997287, 0.176347, 0.997287, 0.151496, 0.004051, 0.126648, 0.997287, 0.126644, 0.004051, 0.126648, 0.997286, 0.101793, 0.997287, 0.126644, 0.997286, 0.101793, 0.004051, 0.076938, 0.997286, 0.076941, 0.004051, 0.076938, 0.997287, 0.05209, 0.997286, 0.076941, 0.004051, 0.052083, 0.997287, 0.027238, 0.997287, 0.05209, 0.004051, 0.027227, 0.997287, 0.002386, 0.997287, 0.027238, 0.989398, 0.251107, 0.857067, 0.226299, 0.989439, 0.226287, 0.857066, 0.276209, 0.989398, 0.251107, 0.989369, 0.276203, 0.989352, 0.301486, 0.857066, 0.276209, 0.989369, 0.276203, 0.857065, 0.326862, 0.989352, 0.301486, 0.989346, 0.326862, 0.857065, 0.352234, 0.989346, 0.326862, 0.989352, 0.352237, 0.857066, 0.377514, 0.989352, 0.352237, 0.989369, 0.37752, 0.989398, 0.402617, 0.857066, 0.377514, 0.989369, 0.37752, 0.989439, 0.427436, 0.857066, 0.402608, 0.989398, 0.402617, 0.389541, 0.954479, 0.378785, 0.876782, 0.441221, 0.901911, 0.260052, 0.902258, 0.324572, 0.851571, 0.322631, 0.873503, 0.388241, 0.773, 0.377737, 0.853692, 0.363395, 0.836551, 0.441221, 0.827514, 0.378785, 0.876782, 0.377737, 0.853692, 0.389541, 0.954479, 0.337541, 0.890748, 0.360749, 0.89234, 0.260916, 0.82526, 0.340005, 0.834646, 0.324572, 0.851571, 0.260052, 0.902258, 0.337541, 0.890748, 0.314322, 0.955576, 0.388241, 0.773, 0.340005, 0.834646, 0.314161, 0.772535, 0.378785, 0.876782, 0.350653, 0.863718, 0.377737, 0.853692, 0.324572, 0.851571, 0.350653, 0.863718, 0.322631, 0.873503, 0.363395, 0.836551, 0.350653, 0.863718, 0.340005, 0.834646, 0.337541, 0.890748, 0.350653, 0.863718, 0.360749, 0.89234, 0.746152, 0.886169, 0.746154, 0.327512, 0.901619, 0.765999, 0.746154, 0.327512, 0.590438, 0.714212, 0.745491, 0.277366, 0.901868, 0.71421, 0.746154, 0.327512, 0.745491, 0.277366, 0.746152, 0.886169, 0.590687, 0.766001, 0.746154, 0.327512, 0.590687, 0.766001, 0.501482, 0.742133, 0.590438, 0.714212, 0.990824, 0.742131, 0.901619, 0.765999, 0.901868, 0.71421, 0.901619, 0.765999, 0.990571, 0.931159, 0.746152, 0.886169, 0.590687, 0.766001, 0.501735, 0.931159, 0.501613, 0.793977, 0.78385, 0.940987, 0.783712, 0.950119, 0.650653, 0.943559, 0.783441, 0.950332, 0.783578, 0.941199, 0.833766, 0.946518, 0.743025, 0.328554, 0.898741, 0.715252, 0.898492, 0.76704, 0.743027, 0.887211, 0.743025, 0.328554, 0.898492, 0.76704, 0.743027, 0.887211, 0.587561, 0.767041, 0.743025, 0.328554, 0.587311, 0.715252, 0.743025, 0.328554, 0.587561, 0.767041, 0.587561, 0.767041, 0.498355, 0.743174, 0.587311, 0.715252, 0.587561, 0.767041, 0.498608, 0.9322, 0.498486, 0.795017, 0.898492, 0.76704, 0.987445, 0.9322, 0.743027, 0.887211, 0.898492, 0.76704, 0.987698, 0.743172, 0.987567, 0.795017, 0.745695, 0.886121, 0.745696, 0.327465, 0.90116, 0.765951, 0.745696, 0.327465, 0.58998, 0.714162, 0.745034, 0.277319, 0.90141, 0.714163, 0.745696, 0.327465, 0.745034, 0.277319, 0.745695, 0.886121, 0.590229, 0.765952, 0.745696, 0.327465, 0.590229, 0.765952, 0.501023, 0.742083, 0.58998, 0.714162, 0.990366, 0.742083, 0.90116, 0.765951, 0.90141, 0.714163, 0.90116, 0.765951, 0.990113, 0.931111, 0.745695, 0.886121, 0.590229, 0.765952, 0.501276, 0.931111, 0.501154, 0.793927, 0.784954, 0.941069, 0.784817, 0.950202, 0.651755, 0.943641, 0.784268, 0.95028, 0.784405, 0.941147, 0.834593, 0.946467, 0.743905, 0.329305, 0.899621, 0.716002, 0.899372, 0.767792, 0.743907, 0.887962, 0.743905, 0.329305, 0.899372, 0.767792, 0.743907, 0.887962, 0.588441, 0.767792, 0.743905, 0.329305, 0.588192, 0.716003, 0.743905, 0.329305, 0.588441, 0.767792, 0.588441, 0.767792, 0.499236, 0.743924, 0.588192, 0.716003, 0.588441, 0.767792, 0.499489, 0.932952, 0.499367, 0.795769, 0.899372, 0.767792, 0.988325, 0.932952, 0.743907, 0.887962, 0.899372, 0.767792, 0.988578, 0.743923, 0.988448, 0.795768, 0.013711, 0.466074, 0.512511, 0.466056, 0.29802, 0.680449, 0.512511, 0.466056, 0.298005, 0.251679, 0.405465, 0.251577, 0.40548, 0.680543, 0.29802, 0.680449, 0.512511, 0.466056, 0.298005, 0.251679, 0.512511, 0.466056, 0.013711, 0.466074, 0.514643, 0.466584, 0.622047, 0.466608, 0.407558, 0.681043, 0.015843, 0.466472, 0.514643, 0.466584, 0.300097, 0.680921, 0.300193, 0.252151, 0.514643, 0.466584, 0.015843, 0.466472, 0.407653, 0.252077, 0.622047, 0.466608, 0.514643, 0.466584, 0.300505, 0.709775, 0.407185, 0.716996, 0.300414, 0.722717, 0.299561, 0.710655, 0.406239, 0.717875, 0.29947, 0.723597, 0.0164, 0.465856, 0.5152, 0.465838, 0.30071, 0.680231, 0.5152, 0.465838, 0.300695, 0.251461, 0.408155, 0.251358, 0.40817, 0.680325, 0.30071, 0.680231, 0.5152, 0.465838, 0.300695, 0.251461, 0.5152, 0.465838, 0.0164, 0.465856, 0.512847, 0.464191, 0.62025, 0.464215, 0.405761, 0.67865, 0.014047, 0.464078, 0.512847, 0.464191, 0.298301, 0.678527, 0.298397, 0.249757, 0.512847, 0.464191, 0.014047, 0.464078, 0.405857, 0.249683, 0.62025, 0.464215, 0.512847, 0.464191, 0.301318, 0.709847, 0.407997, 0.717067, 0.301227, 0.722789, 0.299575, 0.711376, 0.406254, 0.718597, 0.299484, 0.724318, 0.192103, 0.797634, 0.219116, 0.862686, 0.127086, 0.862768, 0.19222, 0.927785, 0.127168, 0.954798, 0.127086, 0.862768, 0.062069, 0.927902, 0.035056, 0.86285, 0.127086, 0.862768, 0.061952, 0.797751, 0.127004, 0.770738, 0.127086, 0.862768, 0.004051, 0.201213, 0.004051, 0.176358, 0.997287, 0.176347, 0.004051, 0.176358, 0.004051, 0.151503, 0.997287, 0.151496, 0.997287, 0.151496, 0.004051, 0.151503, 0.004051, 0.126648, 0.004051, 0.126648, 0.004051, 0.101793, 0.997286, 0.101793, 0.997286, 0.101793, 0.004051, 0.101793, 0.004051, 0.076938, 0.004051, 0.076938, 0.004051, 0.052083, 0.997287, 0.05209, 0.004051, 0.052083, 0.004051, 0.027227, 0.997287, 0.027238, 0.004051, 0.027227, 0.004052, 0.002372, 0.997287, 0.002386, 0.989398, 0.251107, 0.857066, 0.251115, 0.857067, 0.226299, 0.857066, 0.276209, 0.857066, 0.251115, 0.989398, 0.251107, 0.989352, 0.301486, 0.857065, 0.301489, 0.857066, 0.276209, 0.857065, 0.326862, 0.857065, 0.301489, 0.989352, 0.301486, 0.857065, 0.352234, 0.857065, 0.326862, 0.989346, 0.326862, 0.857066, 0.377514, 0.857065, 0.352234, 0.989352, 0.352237, 0.989398, 0.402617, 0.857066, 0.402608, 0.857066, 0.377514, 0.989439, 0.427436, 0.857067, 0.427424, 0.857066, 0.402608, 0.389541, 0.954479, 0.360749, 0.89234, 0.378785, 0.876782, 0.260052, 0.902258, 0.260916, 0.82526, 0.324572, 0.851571, 0.388241, 0.773, 0.441221, 0.827514, 0.377737, 0.853692, 0.441221, 0.827514, 0.441221, 0.901911, 0.378785, 0.876782, 0.389541, 0.954479, 0.314322, 0.955576, 0.337541, 0.890748, 0.260916, 0.82526, 0.314161, 0.772535, 0.340005, 0.834646, 0.260052, 0.902258, 0.322631, 0.873503, 0.337541, 0.890748, 0.388241, 0.773, 0.363395, 0.836551, 0.340005, 0.834646, 0.378785, 0.876782, 0.360749, 0.89234, 0.350653, 0.863718, 0.324572, 0.851571, 0.340005, 0.834646, 0.350653, 0.863718, 0.363395, 0.836551, 0.377737, 0.853692, 0.350653, 0.863718, 0.337541, 0.890748, 0.322631, 0.873503, 0.350653, 0.863718, 0.746154, 0.327512, 0.590687, 0.766001, 0.590438, 0.714212, 0.901868, 0.71421, 0.901619, 0.765999, 0.746154, 0.327512, 0.590687, 0.766001, 0.501613, 0.793977, 0.501482, 0.742133, 0.990824, 0.742131, 0.990694, 0.793975, 0.901619, 0.765999, 0.901619, 0.765999, 0.990694, 0.793975, 0.990571, 0.931159, 0.590687, 0.766001, 0.746152, 0.886169, 0.501735, 0.931159, 0.78385, 0.940987, 0.834038, 0.946306, 0.783712, 0.950119, 0.783441, 0.950332, 0.650382, 0.943772, 0.783578, 0.941199, 0.743025, 0.328554, 0.743025, 0.27661, 0.898741, 0.715252, 0.587311, 0.715252, 0.743025, 0.27661, 0.743025, 0.328554, 0.587561, 0.767041, 0.498486, 0.795017, 0.498355, 0.743174, 0.587561, 0.767041, 0.743027, 0.887211, 0.498608, 0.9322, 0.898492, 0.76704, 0.987567, 0.795017, 0.987445, 0.9322, 0.898492, 0.76704, 0.898741, 0.715252, 0.987698, 0.743172, 0.745696, 0.327465, 0.590229, 0.765952, 0.58998, 0.714162, 0.90141, 0.714163, 0.90116, 0.765951, 0.745696, 0.327465, 0.590229, 0.765952, 0.501154, 0.793927, 0.501023, 0.742083, 0.990366, 0.742083, 0.990236, 0.793927, 0.90116, 0.765951, 0.90116, 0.765951, 0.990236, 0.793927, 0.990113, 0.931111, 0.590229, 0.765952, 0.745695, 0.886121, 0.501276, 0.931111, 0.784954, 0.941069, 0.835141, 0.946388, 0.784817, 0.950202, 0.784268, 0.95028, 0.651206, 0.943719, 0.784405, 0.941147, 0.743905, 0.329305, 0.743905, 0.277362, 0.899621, 0.716002, 0.588192, 0.716003, 0.743905, 0.277362, 0.743905, 0.329305, 0.588441, 0.767792, 0.499367, 0.795769, 0.499236, 0.743924, 0.588441, 0.767792, 0.743907, 0.887962, 0.499489, 0.932952, 0.899372, 0.767792, 0.988448, 0.795768, 0.988325, 0.932952, 0.899372, 0.767792, 0.899621, 0.716002, 0.988578, 0.743923};
+
+       // Draw the Planes Sidewinders
+
+       // activate and specify pointer to vertex array
+       glEnableClientState(GL_VERTEX_ARRAY);
+       glVertexPointer(3, GL_FLOAT, 0, j_35_draken_sw_r_vertices);
+
+       // activate normal pointers
+       glEnableClientState(GL_NORMAL_ARRAY);
+       glNormalPointer(GL_FLOAT, 0, j_35_draken_sw_r_normals);
+
+       // activate UV pointers
+       glEnableClientState(GL_TEXTURE_COORD_ARRAY);
+       glTexCoordPointer(2, GL_FLOAT, 0, j_35_draken_sw_r_UVs);
+
+       // draw the Plane
+       glDrawArrays(GL_TRIANGLES, 0, 504); //tris in blender times 3x
+
+       glDisableClientState(GL_VERTEX_ARRAY);                  // deactivate vertex arrays after drawing
+       glDisableClientState(GL_NORMAL_ARRAY);                  // deactivate normal arrays after drawing
+       glDisableClientState(GL_TEXTURE_COORD_ARRAY);           // deactivate texture arrays after drawing
+
+       // disable texture
+       glDisable(GL_TEXTURE_2D);
+
+       //------------------------------------------------------------------------------------------------------------------------------------------------------------------//
+
+
+
+       // draw sidewinder texture_draken_3
+       glBindTexture( GL_TEXTURE_2D, texture_draken_3 );
+       glEnable(GL_TEXTURE_2D);
+
+       // set vertices for Sidewinders
+       static GLfloat j_35_draken_sw_l_vertices[] = {0.743357, 0.764296, -1.490873, 1.020575, 0.922695, -1.627542, 1.230171, 0.760299, -1.4958, 1.125224, 0.601899, -1.359131, 1.230171, 0.760299, -1.4958, 1.33482, 0.764296, -1.490873, 1.125224, 0.926693, -1.622614, 1.230171, 0.760299, -1.4958, 1.020575, 0.922695, -1.627542, 0.743357, 0.764296, -1.490873, 1.020575, 0.597902, -1.364058, 0.743357, 0.601899, -1.359131, 1.230171, 0.768293, -1.485945, 1.125224, 0.601899, -1.359131, 1.33482, 0.764296, -1.490873, 0.743357, 0.764296, -1.490873, 1.020575, 0.605897, -1.354203, 1.230171, 0.768293, -1.485945, 0.743357, 0.764296, -1.490873, 1.020575, 0.93069, -1.617687, 0.743357, 0.926693, -1.622614, 1.230171, 0.768293, -1.485945, 1.125224, 0.926693, -1.622614, 1.020575, 0.93069, -1.617687, 1.020575, 0.93069, -1.617687, 1.020575, 0.922695, -1.627542, 0.743357, 0.926693, -1.622614, 1.020575, 0.605897, -1.354203, 1.020575, 0.597902, -1.364058, 1.125224, 0.601899, -1.359131, 0.743357, 0.764296, -1.490873, 1.020575, 0.627627, -1.649272, 1.230172, 0.759369, -1.486875, 1.125224, 0.896038, -1.328476, 1.230172, 0.759369, -1.486875, 1.334821, 0.764296, -1.490873, 1.125224, 0.632555, -1.653269, 1.230172, 0.759369, -1.486875, 1.020575, 0.627627, -1.649272, 0.743357, 0.764296, -1.490873, 1.020575, 0.89111, -1.324478, 0.743357, 0.896038, -1.328476, 1.230172, 0.769224, -1.49487, 1.125224, 0.896038, -1.328476, 1.33482, 0.764296, -1.490873, 0.743357, 0.764296, -1.490873, 1.020575, 0.900966, -1.332473, 1.230172, 0.769224, -1.49487, 0.743357, 0.764296, -1.490873, 1.020575, 0.637482, -1.657266, 0.743357, 0.632555, -1.653269, 1.230172, 0.769224, -1.49487, 1.125224, 0.632555, -1.653269, 1.020575, 0.637482, -1.657266, 1.020575, 0.637482, -1.657266, 1.020575, 0.627627, -1.649272, 0.743357, 0.632555, -1.653269, 1.020575, 0.900966, -1.332473, 1.020575, 0.89111, -1.324478, 1.125224, 0.896038, -1.328476, 0.730788, 0.826282, -1.541682, 0.730788, 0.764672, -1.491701, 0.730788, 0.843578, -1.483478, 0.730788, 0.764672, -1.491701, 0.730788, 0.814652, -1.430091, 0.730788, 0.843578, -1.483478, 0.730788, 0.764672, -1.491701, 0.730788, 0.703062, -1.441721, 0.730788, 0.756448, -1.412795, 0.730788, 0.714692, -1.553312, 0.730788, 0.764672, -1.491701, 0.730788, 0.772896, -1.570608, 3.121514, 0.826282, -1.541682, 0.730787, 0.843578, -1.483478, 3.121514, 0.843578, -1.483478, 3.121514, 0.772896, -1.570608, 0.730787, 0.826282, -1.541682, 3.121514, 0.826282, -1.541682, 3.121514, 0.772896, -1.570608, 0.730787, 0.714692, -1.553312, 0.730787, 0.772896, -1.570608, 3.121514, 0.685766, -1.499925, 0.730787, 0.714692, -1.553312, 3.121514, 0.714692, -1.553312, 3.121514, 0.685766, -1.499925, 0.730787, 0.703062, -1.441721, 0.730787, 0.685766, -1.499925, 3.121514, 0.756448, -1.412795, 0.730787, 0.703062, -1.441721, 3.121514, 0.703062, -1.441721, 3.121514, 0.814652, -1.430091, 0.730787, 0.756448, -1.412795, 3.121514, 0.756448, -1.412795, 3.121514, 0.843578, -1.483478, 0.730787, 0.814652, -1.430091, 3.121514, 0.814652, -1.430091, 3.441722, 0.798645, -1.449823, 3.121514, 0.843578, -1.483478, 3.121514, 0.814652, -1.430091, 3.441722, 0.798645, -1.449823, 3.121514, 0.756448, -1.412795, 3.441722, 0.759082, -1.438066, 3.441722, 0.722794, -1.457728, 3.121514, 0.756448, -1.412795, 3.121514, 0.703062, -1.441721, 3.441722, 0.722794, -1.457728, 3.121514, 0.685766, -1.499925, 3.441722, 0.711037, -1.497291, 3.441722, 0.711037, -1.497291, 3.121514, 0.714692, -1.553312, 3.441722, 0.730699, -1.53358, 3.441722, 0.730699, -1.53358, 3.121514, 0.772896, -1.570608, 3.441722, 0.770262, -1.545336, 3.441722, 0.80655, -1.525674, 3.121514, 0.772896, -1.570608, 3.121514, 0.826282, -1.541682, 3.441722, 0.818307, -1.486112, 3.121514, 0.826282, -1.541682, 3.121514, 0.843578, -1.483478, 3.482691, 0.785152, -1.508315, 3.441722, 0.770262, -1.545336, 3.441722, 0.80655, -1.525674, 3.441722, 0.711037, -1.497291, 3.482691, 0.744192, -1.475088, 3.441722, 0.722794, -1.457728, 3.441722, 0.798645, -1.449823, 3.482691, 0.790901, -1.488968, 3.441722, 0.818307, -1.486112, 3.441722, 0.818307, -1.486112, 3.482691, 0.785152, -1.508315, 3.441722, 0.80655, -1.525674, 3.441722, 0.770262, -1.545336, 3.482691, 0.748058, -1.512181, 3.441722, 0.730699, -1.53358, 3.441722, 0.722794, -1.457728, 3.482691, 0.761938, -1.465472, 3.441722, 0.759082, -1.438066, 3.482691, 0.748058, -1.512181, 3.441722, 0.711037, -1.497291, 3.441722, 0.730699, -1.53358, 3.482691, 0.761938, -1.465472, 3.441722, 0.798645, -1.449823, 3.441722, 0.759082, -1.438066, 3.482691, 0.785152, -1.508315, 3.494658, 0.764672, -1.491701, 3.482691, 0.767405, -1.517931, 3.482691, 0.744192, -1.475088, 3.494658, 0.764672, -1.491701, 3.482691, 0.761938, -1.465472, 3.482691, 0.781286, -1.471222, 3.494658, 0.764672, -1.491701, 3.482691, 0.790901, -1.488968, 3.482691, 0.748058, -1.512181, 3.494658, 0.764672, -1.491701, 3.482691, 0.738443, -1.494435, 2.731367, 0.764296, -1.490873, 2.829453, 0.860322, -1.573725, 3.193511, 0.761873, -1.49386, 2.871787, 0.665848, -1.411008, 3.193511, 0.761873, -1.49386, 3.235845, 0.764296, -1.490873, 2.871787, 0.862745, -1.570738, 3.193511, 0.761873, -1.49386, 2.829453, 0.860322, -1.573725, 2.731367, 0.764296, -1.490873, 3.193511, 0.761873, -1.49386, 2.829453, 0.663424, -1.413995, 2.849024, 0.609183, -1.36504, 2.829453, 0.663424, -1.413995, 2.871787, 0.665848, -1.411008, 2.829453, 0.860322, -1.573725, 2.849024, 0.919409, -1.616706, 2.871787, 0.862745, -1.570738, 2.829453, 0.860322, -1.573725, 2.694546, 0.919409, -1.616706, 2.80669, 0.916986, -1.619693, 2.829453, 0.663424, -1.413995, 2.694546, 0.609183, -1.36504, 2.731367, 0.764296, -1.490873, 2.80669, 0.60676, -1.368027, 2.80669, 0.611607, -1.362053, 2.694546, 0.609183, -1.36504, 2.80669, 0.921833, -1.613719, 2.80669, 0.916986, -1.619693, 2.694546, 0.919409, -1.616706, 3.193511, 0.76672, -1.487886, 2.871787, 0.665848, -1.411008, 3.235844, 0.764297, -1.490873, 2.731367, 0.764296, -1.490873, 2.829453, 0.668271, -1.408021, 3.193511, 0.76672, -1.487886, 2.731367, 0.764296, -1.490873, 3.193511, 0.76672, -1.487886, 2.829453, 0.865168, -1.56775, 3.193511, 0.76672, -1.487886, 2.871787, 0.862745, -1.570737, 2.829453, 0.865168, -1.56775, 2.849023, 0.919409, -1.616705, 2.829453, 0.865168, -1.56775, 2.871787, 0.862745, -1.570737, 2.829453, 0.865168, -1.56775, 2.694546, 0.919409, -1.616705, 2.731367, 0.764296, -1.490873, 2.829453, 0.668271, -1.408021, 2.694546, 0.609183, -1.36504, 2.806689, 0.611607, -1.362053, 2.829453, 0.668271, -1.408021, 2.849024, 0.609184, -1.36504, 2.871787, 0.665848, -1.411008, 2.731367, 0.764296, -1.490873, 2.829453, 0.847148, -1.394848, 3.193511, 0.767284, -1.493297, 2.871787, 0.684432, -1.589322, 3.193511, 0.767284, -1.493297, 3.235845, 0.764296, -1.490873, 2.871787, 0.844161, -1.392425, 3.193511, 0.767284, -1.493297, 2.829453, 0.847148, -1.394848, 2.731367, 0.764296, -1.490873, 3.193511, 0.767284, -1.493297, 2.829453, 0.687419, -1.591745, 2.849024, 0.638463, -1.645986, 2.829453, 0.687419, -1.591745, 2.871787, 0.684432, -1.589322, 2.829453, 0.847148, -1.394848, 2.849024, 0.890129, -1.33576, 2.871787, 0.844161, -1.392425, 2.829453, 0.847148, -1.394848, 2.694546, 0.890129, -1.33576, 2.80669, 0.893117, -1.338184, 2.829453, 0.687419, -1.591745, 2.694546, 0.638463, -1.645986, 2.731367, 0.764296, -1.490873, 2.806689, 0.64145, -1.648409, 2.806689, 0.635476, -1.643562, 2.694545, 0.638463, -1.645986, 2.80669, 0.887142, -1.333337, 2.80669, 0.893116, -1.338184, 2.694546, 0.890129, -1.33576, 3.193511, 0.761309, -1.48845, 2.871786, 0.684431, -1.589321, 3.235844, 0.764296, -1.490873, 2.731367, 0.764296, -1.490873, 2.829452, 0.681444, -1.586898, 3.193511, 0.761309, -1.48845, 2.731367, 0.764296, -1.490873, 3.193511, 0.761309, -1.48845, 2.829453, 0.841174, -1.390001, 3.193511, 0.761309, -1.48845, 2.871787, 0.844161, -1.392424, 2.829453, 0.841174, -1.390001, 2.849023, 0.890129, -1.33576, 2.829453, 0.841174, -1.390001, 2.871787, 0.844161, -1.392424, 2.829453, 0.841174, -1.390001, 2.694546, 0.890129, -1.33576, 2.731367, 0.764296, -1.490873, 2.829452, 0.681444, -1.586898, 2.694545, 0.638463, -1.645986, 2.806689, 0.635476, -1.643562, 2.829452, 0.681444, -1.586898, 2.849023, 0.638463, -1.645986, 2.871786, 0.684431, -1.589321, 0.743357, 0.764296, -1.490873, 0.743357, 0.926693, -1.622614, 1.020575, 0.922695, -1.627542, 1.125224, 0.601899, -1.359131, 1.020575, 0.597902, -1.364058, 1.230171, 0.760299, -1.4958, 1.125224, 0.926693, -1.622614, 1.33482, 0.764296, -1.490873, 1.230171, 0.760299, -1.4958, 0.743357, 0.764296, -1.490873, 1.230171, 0.760299, -1.4958, 1.020575, 0.597902, -1.364058, 1.230171, 0.768293, -1.485945, 1.020575, 0.605897, -1.354203, 1.125224, 0.601899, -1.359131, 0.743357, 0.764296, -1.490873, 0.743357, 0.601899, -1.359131, 1.020575, 0.605897, -1.354203, 0.743357, 0.764296, -1.490873, 1.230171, 0.768293, -1.485945, 1.020575, 0.93069, -1.617687, 1.230171, 0.768293, -1.485945, 1.33482, 0.764296, -1.490873, 1.125224, 0.926693, -1.622614, 1.020575, 0.93069, -1.617687, 1.125224, 0.926693, -1.622614, 1.020575, 0.922695, -1.627542, 1.020575, 0.605897, -1.354203, 0.743357, 0.601899, -1.359131, 1.020575, 0.597902, -1.364058, 0.743357, 0.764296, -1.490873, 0.743357, 0.632555, -1.653269, 1.020575, 0.627627, -1.649272, 1.125224, 0.896038, -1.328476, 1.020575, 0.89111, -1.324478, 1.230172, 0.759369, -1.486875, 1.125224, 0.632555, -1.653269, 1.334821, 0.764296, -1.490873, 1.230172, 0.759369, -1.486875, 0.743357, 0.764296, -1.490873, 1.230172, 0.759369, -1.486875, 1.020575, 0.89111, -1.324478, 1.230172, 0.769224, -1.49487, 1.020575, 0.900966, -1.332473, 1.125224, 0.896038, -1.328476, 0.743357, 0.764296, -1.490873, 0.743357, 0.896038, -1.328476, 1.020575, 0.900966, -1.332473, 0.743357, 0.764296, -1.490873, 1.230172, 0.769224, -1.49487, 1.020575, 0.637482, -1.657266, 1.230172, 0.769224, -1.49487, 1.33482, 0.764296, -1.490873, 1.125224, 0.632555, -1.653269, 1.020575, 0.637482, -1.657266, 1.125224, 0.632555, -1.653269, 1.020575, 0.627627, -1.649272, 1.020575, 0.900966, -1.332473, 0.743357, 0.896038, -1.328476, 1.020575, 0.89111, -1.324478, 0.730788, 0.826282, -1.541682, 0.730788, 0.772896, -1.570608, 0.730788, 0.764672, -1.491701, 0.730788, 0.764672, -1.491701, 0.730788, 0.756448, -1.412795, 0.730788, 0.814652, -1.430091, 0.730788, 0.764672, -1.491701, 0.730788, 0.685766, -1.499925, 0.730788, 0.703062, -1.441721, 0.730788, 0.714692, -1.553312, 0.730788, 0.685766, -1.499925, 0.730788, 0.764672, -1.491701, 3.121514, 0.826282, -1.541682, 0.730787, 0.826282, -1.541682, 0.730787, 0.843578, -1.483478, 3.121514, 0.772896, -1.570608, 0.730787, 0.772896, -1.570608, 0.730787, 0.826282, -1.541682, 3.121514, 0.772896, -1.570608, 3.121514, 0.714692, -1.553312, 0.730787, 0.714692, -1.553312, 3.121514, 0.685766, -1.499925, 0.730787, 0.685766, -1.499925, 0.730787, 0.714692, -1.553312, 3.121514, 0.685766, -1.499925, 3.121514, 0.703062, -1.441721, 0.730787, 0.703062, -1.441721, 3.121514, 0.756448, -1.412795, 0.730787, 0.756448, -1.412795, 0.730787, 0.703062, -1.441721, 3.121514, 0.814652, -1.430091, 0.730787, 0.814652, -1.430091, 0.730787, 0.756448, -1.412795, 3.121514, 0.843578, -1.483478, 0.730787, 0.843578, -1.483478, 0.730787, 0.814652, -1.430091, 3.441722, 0.798645, -1.449823, 3.441722, 0.818307, -1.486112, 3.121514, 0.843578, -1.483478, 3.441722, 0.798645, -1.449823, 3.121514, 0.814652, -1.430091, 3.121514, 0.756448, -1.412795, 3.441722, 0.722794, -1.457728, 3.441722, 0.759082, -1.438066, 3.121514, 0.756448, -1.412795, 3.441722, 0.722794, -1.457728, 3.121514, 0.703062, -1.441721, 3.121514, 0.685766, -1.499925, 3.441722, 0.711037, -1.497291, 3.121514, 0.685766, -1.499925, 3.121514, 0.714692, -1.553312, 3.441722, 0.730699, -1.53358, 3.121514, 0.714692, -1.553312, 3.121514, 0.772896, -1.570608, 3.441722, 0.80655, -1.525674, 3.441722, 0.770262, -1.545336, 3.121514, 0.772896, -1.570608, 3.441722, 0.818307, -1.486112, 3.441722, 0.80655, -1.525674, 3.121514, 0.826282, -1.541682, 3.482691, 0.785152, -1.508315, 3.482691, 0.767405, -1.517931, 3.441722, 0.770262, -1.545336, 3.441722, 0.711037, -1.497291, 3.482691, 0.738443, -1.494435, 3.482691, 0.744192, -1.475088, 3.441722, 0.798645, -1.449823, 3.482691, 0.781286, -1.471222, 3.482691, 0.790901, -1.488968, 3.441722, 0.818307, -1.486112, 3.482691, 0.790901, -1.488968, 3.482691, 0.785152, -1.508315, 3.441722, 0.770262, -1.545336, 3.482691, 0.767405, -1.517931, 3.482691, 0.748058, -1.512181, 3.441722, 0.722794, -1.457728, 3.482691, 0.744192, -1.475088, 3.482691, 0.761938, -1.465472, 3.482691, 0.748058, -1.512181, 3.482691, 0.738443, -1.494435, 3.441722, 0.711037, -1.497291, 3.482691, 0.761938, -1.465472, 3.482691, 0.781286, -1.471222, 3.441722, 0.798645, -1.449823, 3.482691, 0.785152, -1.508315, 3.482691, 0.790901, -1.488968, 3.494658, 0.764672, -1.491701, 3.482691, 0.744192, -1.475088, 3.482691, 0.738443, -1.494435, 3.494658, 0.764672, -1.491701, 3.482691, 0.781286, -1.471222, 3.482691, 0.761938, -1.465472, 3.494658, 0.764672, -1.491701, 3.482691, 0.748058, -1.512181, 3.482691, 0.767405, -1.517931, 3.494658, 0.764672, -1.491701, 2.871787, 0.665848, -1.411008, 2.829453, 0.663424, -1.413995, 3.193511, 0.761873, -1.49386, 2.871787, 0.862745, -1.570738, 3.235845, 0.764296, -1.490873, 3.193511, 0.761873, -1.49386, 2.849024, 0.609183, -1.36504, 2.80669, 0.60676, -1.368027, 2.829453, 0.663424, -1.413995, 2.829453, 0.860322, -1.573725, 2.80669, 0.916986, -1.619693, 2.849024, 0.919409, -1.616706, 2.829453, 0.860322, -1.573725, 2.731367, 0.764296, -1.490873, 2.694546, 0.919409, -1.616706, 2.829453, 0.663424, -1.413995, 2.80669, 0.60676, -1.368027, 2.694546, 0.609183, -1.36504, 2.80669, 0.60676, -1.368027, 2.849024, 0.609183, -1.36504, 2.80669, 0.611607, -1.362053, 2.80669, 0.921833, -1.613719, 2.849024, 0.919409, -1.616706, 2.80669, 0.916986, -1.619693, 3.193511, 0.76672, -1.487886, 2.829453, 0.668271, -1.408021, 2.871787, 0.665848, -1.411008, 3.193511, 0.76672, -1.487886, 3.235844, 0.764297, -1.490873, 2.871787, 0.862745, -1.570737, 2.849023, 0.919409, -1.616705, 2.806689, 0.921833, -1.613718, 2.829453, 0.865168, -1.56775, 2.829453, 0.865168, -1.56775, 2.806689, 0.921833, -1.613718, 2.694546, 0.919409, -1.616705, 2.829453, 0.668271, -1.408021, 2.731367, 0.764296, -1.490873, 2.694546, 0.609183, -1.36504, 2.829453, 0.668271, -1.408021, 2.806689, 0.611607, -1.362053, 2.849024, 0.609184, -1.36504, 2.871787, 0.684432, -1.589322, 2.829453, 0.687419, -1.591745, 3.193511, 0.767284, -1.493297, 2.871787, 0.844161, -1.392425, 3.235845, 0.764296, -1.490873, 3.193511, 0.767284, -1.493297, 2.849024, 0.638463, -1.645986, 2.80669, 0.641451, -1.648409, 2.829453, 0.687419, -1.591745, 2.829453, 0.847148, -1.394848, 2.80669, 0.893117, -1.338184, 2.849024, 0.890129, -1.33576, 2.829453, 0.847148, -1.394848, 2.731367, 0.764296, -1.490873, 2.694546, 0.890129, -1.33576, 2.829453, 0.687419, -1.591745, 2.80669, 0.641451, -1.648409, 2.694546, 0.638463, -1.645986, 2.806689, 0.64145, -1.648409, 2.849023, 0.638463, -1.645986, 2.806689, 0.635476, -1.643562, 2.80669, 0.887142, -1.333337, 2.849024, 0.890129, -1.33576, 2.80669, 0.893116, -1.338184, 3.193511, 0.761309, -1.48845, 2.829452, 0.681444, -1.586898, 2.871786, 0.684431, -1.589321, 3.193511, 0.761309, -1.48845, 3.235844, 0.764296, -1.490873, 2.871787, 0.844161, -1.392424, 2.849023, 0.890129, -1.33576, 2.806689, 0.887142, -1.333337, 2.829453, 0.841174, -1.390001, 2.829453, 0.841174, -1.390001, 2.806689, 0.887142, -1.333337, 2.694546, 0.890129, -1.33576, 2.829452, 0.681444, -1.586898, 2.731367, 0.764296, -1.490873, 2.694545, 0.638463, -1.645986, 2.829452, 0.681444, -1.586898, 2.806689, 0.635476, -1.643562, 2.849023, 0.638463, -1.645986};
+
+       // set normals for Sidewinders
+       static GLfloat j_35_draken_sw_l_normals[] = {-0.01883, -0.629871, -0.776452, 0.003296, -0.623707, -0.78161, 0.042116, -0.629414, -0.775903, 0.060396, -0.674703, -0.735588, 0.042116, -0.629414, -0.775903, 0.060518, -0.628834, -0.77517, 0.060396, -0.580645, -0.811884, 0.042116, -0.629414, -0.775903, 0.003296, -0.623707, -0.78161, -0.01883, -0.629871, -0.776452, 0.003296, -0.636219, -0.771477, -0.022858, -0.62981, -0.776391, 0.042116, 0.629414, 0.775903, 0.060396, 0.580645, 0.811884, 0.060518, 0.628834, 0.77517, -0.01883, 0.629871, 0.776452, 0.003296, 0.623707, 0.78161, 0.042116, 0.629414, 0.775903, -0.01883, 0.629871, 0.776452, 0.003296, 0.636219, 0.771477, -0.022858, 0.62981, 0.776391, 0.042116, 0.629414, 0.775903, 0.060396, 0.674703, 0.735588, 0.003296, 0.636219, 0.771477, 0.0, 0.776574, -0.629994, 0.0, 0.776574, -0.629994, 0.0, 0.776574, -0.629994, 0.0, -0.776574, 0.629994, 0.0, -0.776574, 0.629994, 0.0, -0.776574, 0.629994, -0.01883, -0.776452, 0.629871, 0.003296, -0.78161, 0.623707, 0.042116, -0.775903, 0.629414, 0.060396, -0.735588, 0.674703, 0.042116, -0.775903, 0.629414, 0.060518, -0.77517, 0.628834, 0.060396, -0.811884, 0.580645, 0.042116, -0.775903, 0.629414, 0.003296, -0.78161, 0.623707, -0.01883, -0.776452, 0.629871, 0.003296, -0.771477, 0.636219, -0.022858, -0.776391, 0.62981, 0.042116, 0.775903, -0.629414, 0.060396, 0.811884, -0.580645, 0.060518, 0.77517, -0.628834, -0.01883, 0.776452, -0.629871, 0.003296, 0.78161, -0.623707, 0.042116, 0.775903, -0.629414, -0.01883, 0.776452, -0.629871, 0.003296, 0.771477, -0.636219, -0.022858, 0.776391, -0.62981, 0.042116, 0.775903, -0.629414, 0.060396, 0.735588, -0.674703, 0.003296, 0.771477, -0.636219, 0.0, -0.629994, -0.776574, 0.0, -0.629994, -0.776574, 0.0, -0.629994, -0.776574, 0.0, 0.629994, 0.776574, 0.0, 0.629994, 0.776574, 0.0, 0.629994, 0.776574, -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, 0.0, 0.0, -1.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.039186, 0.775994, -0.629505, 0.0, 0.994598, 0.103641, 0.039186, 0.993835, 0.103549, 0.039186, 0.103549, -0.993835, 0.0, 0.776574, -0.629994, 0.039186, 0.775994, -0.629505, 0.039186, 0.103549, -0.993835, 0.0, -0.629994, -0.776574, 0.0, 0.103641, -0.994598, 0.039186, -0.993835, -0.103549, 0.0, -0.629994, -0.776574, 0.039186, -0.629505, -0.775994, 0.039186, -0.993835, -0.103549, 0.0, -0.776574, 0.629994, 0.0, -0.994598, -0.103641, 0.039186, -0.103549, 0.993835, 0.0, -0.776574, 0.629994, 0.039186, -0.775994, 0.629505, 0.039186, 0.629505, 0.775994, 0.0, -0.103641, 0.994598, 0.039186, -0.103549, 0.993835, 0.039186, 0.993835, 0.103549, 0.0, 0.629994, 0.776574, 0.039186, 0.629505, 0.775994, 0.311563, 0.598621, 0.737938, 0.039186, 0.993835, 0.103549, 0.039186, 0.629505, 0.775994, 0.311563, 0.598621, 0.737938, 0.039186, -0.103549, 0.993835, 0.311563, -0.098483, 0.945097, 0.311563, -0.737938, 0.598621, 0.039186, -0.103549, 0.993835, 0.039186, -0.775994, 0.629505, 0.311563, -0.737938, 0.598621, 0.039186, -0.993835, -0.103549, 0.311563, -0.945097, -0.098483, 0.311563, -0.945097, -0.098483, 0.039186, -0.629505, -0.775994, 0.311563, -0.598621, -0.737938, 0.311563, -0.598621, -0.737938, 0.039186, 0.103549, -0.993835, 0.311563, 0.098483, -0.945097, 0.311563, 0.737907, -0.598621, 0.039186, 0.103549, -0.993835, 0.039186, 0.775994, -0.629505, 0.311563, 0.945097, 0.098483, 0.039186, 0.775994, -0.629505, 0.039186, 0.993835, 0.103549, 0.731254, 0.529679, -0.429701, 0.311563, 0.098483, -0.945097, 0.311563, 0.737907, -0.598621, 0.311563, -0.945097, -0.098483, 0.731254, -0.529679, 0.429701, 0.311563, -0.737938, 0.598621, 0.311563, 0.598621, 0.737938, 0.731254, 0.678396, 0.070681, 0.311563, 0.945097, 0.098483, 0.311563, 0.945097, 0.098483, 0.731254, 0.529679, -0.429701, 0.311563, 0.737907, -0.598621, 0.311563, 0.098483, -0.945097, 0.731254, -0.429701, -0.52971, 0.311563, -0.598621, -0.737938, 0.311563, -0.737938, 0.598621, 0.731254, -0.070681, 0.678396, 0.311563, -0.098483, 0.945097, 0.731254, -0.429701, -0.52971, 0.311563, -0.945097, -0.098483, 0.311563, -0.598621, -0.737938, 0.731254, -0.070681, 0.678396, 0.311563, 0.598621, 0.737938, 0.311563, -0.098483, 0.945097, 0.731254, 0.529679, -0.429701, 1.0, 0.0, 0.0, 0.731254, 0.070681, -0.678396, 0.731254, -0.529679, 0.429701, 1.0, 0.0, 0.0, 0.731254, -0.070681, 0.678396, 0.731254, 0.429701, 0.52971, 1.0, 0.0, 0.0, 0.731254, 0.678396, 0.070681, 0.731254, -0.429701, -0.52971, 1.0, 0.0, 0.0, 0.731254, -0.678396, -0.070681, -0.019501, -0.629871, -0.776421, 0.017975, -0.620136, -0.784265, 0.079623, -0.627979, -0.774102, 0.088961, -0.758751, -0.645222, 0.079623, -0.627979, -0.774102, 0.090487, -0.6274, -0.7734, 0.088961, -0.474899, -0.875515, 0.079623, -0.627979, -0.774102, 0.017975, -0.620136, -0.784265, -0.019501, -0.629871, -0.776421, 0.079623, -0.627979, -0.774102, 0.017975, -0.639515, -0.768517, 0.090426, -0.649068, -0.755303, 0.017975, -0.639515, -0.768517, 0.088961, -0.758751, -0.645222, 0.017975, -0.620136, -0.784265, 0.090426, -0.605243, -0.790857, 0.088961, -0.474899, -0.875515, 0.017975, -0.620136, -0.784265, -0.032563, -0.635517, -0.771386, 0.016144, -0.625996, -0.779656, 0.017975, -0.639515, -0.768517, -0.032563, -0.623768, -0.780908, -0.019501, -0.629871, -0.776421, 0.0, -0.776574, 0.629994, 0.0, -0.776574, 0.629994, 0.0, -0.776574, 0.629994, 0.0, 0.776574, -0.629994, 0.0, 0.776574, -0.629994, 0.0, 0.776574, -0.629994, 0.079623, 0.627979, 0.774102, 0.088961, 0.474899, 0.875515, 0.090487, 0.6274, 0.7734, -0.019501, 0.629871, 0.776421, 0.017975, 0.620136, 0.784265, 0.079623, 0.627979, 0.774102, -0.019501, 0.629871, 0.776421, 0.079623, 0.627979, 0.774102, 0.017975, 0.639515, 0.768517, 0.079623, 0.627979, 0.774102, 0.088961, 0.758782, 0.645222, 0.017975, 0.639515, 0.768517, 0.090426, 0.649068, 0.755303, 0.017975, 0.639515, 0.768517, 0.088961, 0.758782, 0.645222, 0.017975, 0.639515, 0.768517, -0.032563, 0.623768, 0.780908, -0.019501, 0.629871, 0.776421, 0.017975, 0.620136, 0.784265, -0.032563, 0.635517, 0.771386, 0.016144, 0.625996, 0.779656, 0.017975, 0.620136, 0.784265, 0.090426, 0.605243, 0.790857, 0.088961, 0.474899, 0.875515, -0.019501, 0.776421, -0.629871, 0.017975, 0.784265, -0.620136, 0.079623, 0.774102, -0.627979, 0.088961, 0.645222, -0.758782, 0.079623, 0.774102, -0.627979, 0.090487, 0.7734, -0.6274, 0.088961, 0.875515, -0.474899, 0.079623, 0.774102, -0.627979, 0.017975, 0.784265, -0.620136, -0.019501, 0.776421, -0.629871, 0.079623, 0.774102, -0.627979, 0.017975, 0.768517, -0.639515, 0.090426, 0.755303, -0.649068, 0.017975, 0.768517, -0.639515, 0.088961, 0.645222, -0.758782, 0.017975, 0.784265, -0.620136, 0.090426, 0.790857, -0.605243, 0.088961, 0.875515, -0.474899, 0.017975, 0.784265, -0.620136, -0.032563, 0.771386, -0.635517, 0.016144, 0.779656, -0.625996, 0.017975, 0.768517, -0.639515, -0.032563, 0.780908, -0.623768, -0.019501, 0.776421, -0.629871, 0.0, -0.629994, -0.776574, 0.0, -0.629994, -0.776574, 0.0, -0.629994, -0.776574, 0.0, 0.629994, 0.776574, 0.0, 0.629994, 0.776574, 0.0, 0.629994, 0.776574, 0.079623, -0.774102, 0.627979, 0.088961, -0.875515, 0.474899, 0.090487, -0.7734, 0.6274, -0.019501, -0.776421, 0.629871, 0.017975, -0.784265, 0.620136, 0.079623, -0.774102, 0.627979, -0.019501, -0.776421, 0.629871, 0.079623, -0.774102, 0.627979, 0.017975, -0.768517, 0.639515, 0.079623, -0.774102, 0.627979, 0.088961, -0.645222, 0.758782, 0.017975, -0.768517, 0.639515, 0.090426, -0.755303, 0.649068, 0.017975, -0.768517, 0.639515, 0.088961, -0.645222, 0.758782, 0.017975, -0.768517, 0.639515, -0.032563, -0.780908, 0.623768, -0.019501, -0.776421, 0.629871, 0.017975, -0.784265, 0.620136, -0.032563, -0.771386, 0.635517, 0.016144, -0.779656, 0.625996, 0.017975, -0.784265, 0.620136, 0.090426, -0.790857, 0.605243, 0.088961, -0.875515, 0.474899, -0.01883, -0.629871, -0.776452, -0.022858, -0.62981, -0.776391, 0.003296, -0.623707, -0.78161, 0.060396, -0.674703, -0.735588, 0.003296, -0.636219, -0.771477, 0.042116, -0.629414, -0.775903, 0.060396, -0.580645, -0.811884, 0.060518, -0.628834, -0.77517, 0.042116, -0.629414, -0.775903, -0.01883, -0.629871, -0.776452, 0.042116, -0.629414, -0.775903, 0.003296, -0.636219, -0.771477, 0.042116, 0.629414, 0.775903, 0.003296, 0.623707, 0.78161, 0.060396, 0.580645, 0.811884, -0.01883, 0.629871, 0.776452, -0.022858, 0.62981, 0.776391, 0.003296, 0.623707, 0.78161, -0.01883, 0.629871, 0.776452, 0.042116, 0.629414, 0.775903, 0.003296, 0.636219, 0.771477, 0.042116, 0.629414, 0.775903, 0.060518, 0.628834, 0.77517, 0.060396, 0.674703, 0.735588, 0.0, 0.776574, -0.629994, 0.0, 0.776574, -0.629994, 0.0, 0.776574, -0.629994, 0.0, -0.776574, 0.629994, 0.0, -0.776574, 0.629994, 0.0, -0.776574, 0.629994, -0.01883, -0.776452, 0.629871, -0.022858, -0.776391, 0.62981, 0.003296, -0.78161, 0.623707, 0.060396, -0.735588, 0.674703, 0.003296, -0.771477, 0.636219, 0.042116, -0.775903, 0.629414, 0.060396, -0.811884, 0.580645, 0.060518, -0.77517, 0.628834, 0.042116, -0.775903, 0.629414, -0.01883, -0.776452, 0.629871, 0.042116, -0.775903, 0.629414, 0.003296, -0.771477, 0.636219, 0.042116, 0.775903, -0.629414, 0.003296, 0.78161, -0.623707, 0.060396, 0.811884, -0.580645, -0.01883, 0.776452, -0.629871, -0.022858, 0.776391, -0.62981, 0.003296, 0.78161, -0.623707, -0.01883, 0.776452, -0.629871, 0.042116, 0.775903, -0.629414, 0.003296, 0.771477, -0.636219, 0.042116, 0.775903, -0.629414, 0.060518, 0.77517, -0.628834, 0.060396, 0.735588, -0.674703, 0.0, -0.629994, -0.776574, 0.0, -0.629994, -0.776574, 0.0, -0.629994, -0.776574, 0.0, 0.629994, 0.776574, 0.0, 0.629963, 0.776574, 0.0, 0.629994, 0.776574, -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, 0.0, 0.0, -1.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.039186, 0.775994, -0.629505, 0.0, 0.776574, -0.629994, 0.0, 0.994598, 0.103641, 0.039186, 0.103549, -0.993835, 0.0, 0.103641, -0.994598, 0.0, 0.776574, -0.629994, 0.039186, 0.103549, -0.993835, 0.039186, -0.629505, -0.775994, 0.0, -0.629994, -0.776574, 0.039186, -0.993835, -0.103549, 0.0, -0.994598, -0.103641, 0.0, -0.629994, -0.776574, 0.039186, -0.993835, -0.103549, 0.039186, -0.775994, 0.629505, 0.0, -0.776574, 0.629994, 0.039186, -0.103549, 0.993835, 0.0, -0.103641, 0.994598, 0.0, -0.776574, 0.629994, 0.039186, 0.629505, 0.775994, 0.0, 0.629994, 0.776574, 0.0, -0.103641, 0.994598, 0.039186, 0.993835, 0.103549, 0.0, 0.994598, 0.103641, 0.0, 0.629994, 0.776574, 0.311563, 0.598621, 0.737938, 0.311563, 0.945097, 0.098483, 0.039186, 0.993835, 0.103549, 0.311563, 0.598621, 0.737938, 0.039186, 0.629505, 0.775994, 0.039186, -0.103549, 0.993835, 0.311563, -0.737938, 0.598621, 0.311563, -0.098483, 0.945097, 0.039186, -0.103549, 0.993835, 0.311563, -0.737938, 0.598621, 0.039186, -0.775994, 0.629505, 0.039186, -0.993835, -0.103549, 0.311563, -0.945097, -0.098483, 0.039186, -0.993835, -0.103549, 0.039186, -0.629505, -0.775994, 0.311563, -0.598621, -0.737938, 0.039186, -0.629505, -0.775994, 0.039186, 0.103549, -0.993835, 0.311563, 0.737907, -0.598621, 0.311563, 0.098483, -0.945097, 0.039186, 0.103549, -0.993835, 0.311563, 0.945097, 0.098483, 0.311563, 0.737907, -0.598621, 0.039186, 0.775994, -0.629505, 0.731254, 0.529679, -0.429701, 0.731254, 0.070681, -0.678396, 0.311563, 0.098483, -0.945097, 0.311563, -0.945097, -0.098483, 0.731254, -0.678396, -0.070681, 0.731254, -0.529679, 0.429701, 0.311563, 0.598621, 0.737938, 0.731254, 0.429701, 0.52971, 0.731254, 0.678396, 0.070681, 0.311563, 0.945097, 0.098483, 0.731254, 0.678396, 0.070681, 0.731254, 0.529679, -0.429701, 0.311563, 0.098483, -0.945097, 0.731254, 0.070681, -0.678396, 0.731254, -0.429701, -0.52971, 0.311563, -0.737938, 0.598621, 0.731254, -0.529679, 0.429701, 0.731254, -0.070681, 0.678396, 0.731254, -0.429701, -0.52971, 0.731254, -0.678396, -0.070681, 0.311563, -0.945097, -0.098483, 0.731254, -0.070681, 0.678396, 0.731254, 0.429701, 0.52971, 0.311563, 0.598621, 0.737938, 0.731254, 0.529679, -0.429701, 0.731254, 0.678396, 0.070681, 1.0, 0.0, 0.0, 0.731254, -0.529679, 0.429701, 0.731254, -0.678396, -0.070681, 1.0, 0.0, 0.0, 0.731254, 0.429701, 0.52971, 0.731254, -0.070681, 0.678396, 1.0, 0.0, 0.0, 0.731254, -0.429701, -0.52971, 0.731254, 0.070681, -0.678396, 1.0, 0.0, 0.0, 0.088961, -0.758751, -0.645222, 0.017975, -0.639515, -0.768517, 0.079623, -0.627979, -0.774102, 0.088961, -0.474899, -0.875515, 0.090487, -0.6274, -0.7734, 0.079623, -0.627979, -0.774102, 0.090426, -0.649068, -0.755303, 0.016144, -0.633808, -0.773309, 0.017975, -0.639515, -0.768517, 0.017975, -0.620136, -0.784265, 0.016144, -0.625996, -0.779656, 0.090426, -0.605243, -0.790857, 0.017975, -0.620136, -0.784265, -0.019501, -0.629871, -0.776421, -0.032563, -0.635517, -0.771386, 0.017975, -0.639515, -0.768517, 0.016144, -0.633808, -0.773309, -0.032563, -0.623768, -0.780908, 0.0, -0.776574, 0.629994, 0.0, -0.776574, 0.629994, 0.0, -0.776574, 0.629994, 0.0, 0.776574, -0.629994, 0.0, 0.776574, -0.629994, 0.0, 0.776574, -0.629994, 0.079623, 0.627979, 0.774102, 0.017975, 0.620136, 0.784265, 0.088961, 0.474899, 0.875515, 0.079623, 0.627979, 0.774102, 0.090487, 0.6274, 0.7734, 0.088961, 0.758782, 0.645222, 0.090426, 0.649068, 0.755303, 0.016144, 0.633808, 0.773278, 0.017975, 0.639515, 0.768517, 0.017975, 0.639515, 0.768517, 0.016144, 0.633808, 0.773278, -0.032563, 0.623768, 0.780908, 0.017975, 0.620136, 0.784265, -0.019501, 0.629871, 0.776421, -0.032563, 0.635517, 0.771386, 0.017975, 0.620136, 0.784265, 0.016144, 0.625996, 0.779656, 0.090426, 0.605243, 0.790857, 0.088961, 0.645222, -0.758782, 0.017975, 0.768517, -0.639515, 0.079623, 0.774102, -0.627979, 0.088961, 0.875515, -0.474899, 0.090487, 0.7734, -0.6274, 0.079623, 0.774102, -0.627979, 0.090426, 0.755303, -0.649068, 0.016144, 0.773309, -0.633808, 0.017975, 0.768517, -0.639515, 0.017975, 0.784265, -0.620136, 0.016144, 0.779656, -0.625996, 0.090426, 0.790857, -0.605243, 0.017975, 0.784265, -0.620136, -0.019501, 0.776421, -0.629871, -0.032563, 0.771386, -0.635517, 0.017975, 0.768517, -0.639515, 0.016144, 0.773309, -0.633808, -0.032563, 0.780908, -0.623768, 0.0, -0.629994, -0.776574, 0.0, -0.629994, -0.776574, 0.0, -0.629994, -0.776574, 0.0, 0.629994, 0.776574, 0.0, 0.629994, 0.776574, 0.0, 0.629994, 0.776574, 0.079623, -0.774102, 0.627979, 0.017975, -0.784265, 0.620136, 0.088961, -0.875515, 0.474899, 0.079623, -0.774102, 0.627979, 0.090487, -0.7734, 0.6274, 0.088961, -0.645222, 0.758782, 0.090426, -0.755303, 0.649068, 0.016144, -0.773309, 0.633808, 0.017975, -0.768517, 0.639515, 0.017975, -0.768517, 0.639515, 0.016144, -0.773309, 0.633808, -0.032563, -0.780908, 0.623768, 0.017975, -0.784265, 0.620136, -0.019501, -0.776421, 0.629871, -0.032563, -0.771386, 0.635517, 0.017975, -0.784265, 0.620136, 0.016144, -0.779656, 0.625996, 0.090426, -0.790857, 0.605243};
+
+       // set UVs for Sidewinders
+       static GLfloat j_35_draken_sw_l_UVs[] = {0.013711, 0.466074, 0.29802, 0.680449, 0.512511, 0.466056, 0.405465, 0.251577, 0.512511, 0.466056, 0.619914, 0.466052, 0.40548, 0.680543, 0.512511, 0.466056, 0.29802, 0.680449, 0.013711, 0.466074, 0.298005, 0.251679, 0.013711, 0.251679, 0.514643, 0.466584, 0.407558, 0.681043, 0.622047, 0.466608, 0.015843, 0.466472, 0.300097, 0.680921, 0.514643, 0.466584, 0.015843, 0.466472, 0.300193, 0.252151, 0.015899, 0.252077, 0.514643, 0.466584, 0.407653, 0.252077, 0.300193, 0.252151, 0.300414, 0.722717, 0.300505, 0.709775, 0.017756, 0.714259, 0.299561, 0.710655, 0.29947, 0.723597, 0.406239, 0.717875, 0.0164, 0.465856, 0.30071, 0.680231, 0.5152, 0.465838, 0.408155, 0.251358, 0.5152, 0.465838, 0.622604, 0.465834, 0.40817, 0.680325, 0.5152, 0.465838, 0.30071, 0.680231, 0.0164, 0.465856, 0.300695, 0.251461, 0.0164, 0.251461, 0.512847, 0.464191, 0.405761, 0.67865, 0.62025, 0.464215, 0.014047, 0.464078, 0.298301, 0.678527, 0.512847, 0.464191, 0.014047, 0.464078, 0.298397, 0.249757, 0.014103, 0.249683, 0.512847, 0.464191, 0.405857, 0.249683, 0.298397, 0.249757, 0.301227, 0.722789, 0.301318, 0.709847, 0.018559, 0.714333, 0.299575, 0.711376, 0.299484, 0.724318, 0.406254, 0.718597, 0.192103, 0.797634, 0.127086, 0.862768, 0.219116, 0.862686, 0.127086, 0.862768, 0.19222, 0.927785, 0.219116, 0.862686, 0.127086, 0.862768, 0.062069, 0.927902, 0.127168, 0.954798, 0.061952, 0.797751, 0.127086, 0.862768, 0.127004, 0.770738, 0.996672, 0.176913, 0.003328, 0.201967, 0.996672, 0.201953, 0.996672, 0.151873, 0.003328, 0.176924, 0.996672, 0.176913, 0.996672, 0.151873, 0.003328, 0.126836, 0.003328, 0.15188, 0.996671, 0.101793, 0.003328, 0.126836, 0.996671, 0.126833, 0.996671, 0.101793, 0.003328, 0.076749, 0.003328, 0.101793, 0.996671, 0.051712, 0.003328, 0.076749, 0.996671, 0.076752, 0.996671, 0.026672, 0.003328, 0.051705, 0.996671, 0.051712, 0.996672, 0.001632, 0.003329, 0.026662, 0.996671, 0.026672, 0.989398, 0.251107, 0.857067, 0.226299, 0.857066, 0.251115, 0.989398, 0.251107, 0.857066, 0.276209, 0.989369, 0.276203, 0.989352, 0.301486, 0.857066, 0.276209, 0.857065, 0.301489, 0.989352, 0.301486, 0.857065, 0.326862, 0.989346, 0.326862, 0.989346, 0.326862, 0.857065, 0.352234, 0.989352, 0.352237, 0.989352, 0.352237, 0.857066, 0.377514, 0.989369, 0.37752, 0.989398, 0.402617, 0.857066, 0.377514, 0.857066, 0.402608, 0.989439, 0.427436, 0.857066, 0.402608, 0.857067, 0.427424, 0.378785, 0.876782, 0.389541, 0.954479, 0.441221, 0.901911, 0.260052, 0.902258, 0.324572, 0.851571, 0.260916, 0.82526, 0.388241, 0.773, 0.377737, 0.853692, 0.441221, 0.827514, 0.441221, 0.827514, 0.378785, 0.876782, 0.441221, 0.901911, 0.389541, 0.954479, 0.337541, 0.890748, 0.314322, 0.955576, 0.260916, 0.82526, 0.340005, 0.834646, 0.314161, 0.772535, 0.337541, 0.890748, 0.260052, 0.902258, 0.314322, 0.955576, 0.340005, 0.834646, 0.388241, 0.773, 0.314161, 0.772535, 0.378785, 0.876782, 0.350653, 0.863718, 0.360749, 0.89234, 0.324572, 0.851571, 0.350653, 0.863718, 0.340005, 0.834646, 0.363395, 0.836551, 0.350653, 0.863718, 0.377737, 0.853692, 0.337541, 0.890748, 0.350653, 0.863718, 0.322631, 0.873503, 0.746152, 0.886169, 0.901619, 0.765999, 0.746154, 0.327512, 0.590438, 0.714212, 0.746154, 0.327512, 0.745491, 0.277366, 0.901868, 0.71421, 0.746154, 0.327512, 0.901619, 0.765999, 0.746152, 0.886169, 0.746154, 0.327512, 0.590687, 0.766001, 0.501482, 0.742133, 0.590687, 0.766001, 0.590438, 0.714212, 0.901619, 0.765999, 0.990824, 0.742131, 0.901868, 0.71421, 0.901619, 0.765999, 0.990571, 0.931159, 0.990694, 0.793975, 0.590687, 0.766001, 0.501735, 0.931159, 0.746152, 0.886169, 0.783712, 0.950119, 0.78385, 0.940987, 0.650653, 0.943559, 0.783441, 0.950332, 0.783578, 0.941199, 0.650382, 0.943772, 0.743025, 0.328554, 0.898741, 0.715252, 0.743025, 0.27661, 0.743027, 0.887211, 0.898492, 0.76704, 0.743025, 0.328554, 0.743027, 0.887211, 0.743025, 0.328554, 0.587561, 0.767041, 0.743025, 0.328554, 0.587311, 0.715252, 0.587561, 0.767041, 0.498355, 0.743174, 0.587561, 0.767041, 0.587311, 0.715252, 0.587561, 0.767041, 0.498608, 0.9322, 0.743027, 0.887211, 0.898492, 0.76704, 0.987445, 0.9322, 0.987567, 0.795017, 0.898492, 0.76704, 0.987698, 0.743172, 0.898741, 0.715252, 0.745695, 0.886121, 0.90116, 0.765951, 0.745696, 0.327465, 0.58998, 0.714162, 0.745696, 0.327465, 0.745034, 0.277319, 0.90141, 0.714163, 0.745696, 0.327465, 0.90116, 0.765951, 0.745695, 0.886121, 0.745696, 0.327465, 0.590229, 0.765952, 0.501023, 0.742083, 0.590229, 0.765952, 0.58998, 0.714162, 0.90116, 0.765951, 0.990366, 0.742083, 0.90141, 0.714163, 0.90116, 0.765951, 0.990113, 0.931111, 0.990236, 0.793927, 0.590229, 0.765952, 0.501276, 0.931111, 0.745695, 0.886121, 0.784817, 0.950202, 0.784954, 0.941069, 0.651755, 0.943641, 0.784268, 0.95028, 0.784405, 0.941147, 0.651206, 0.943719, 0.743905, 0.329305, 0.899621, 0.716002, 0.743905, 0.277362, 0.743907, 0.887962, 0.899372, 0.767792, 0.743905, 0.329305, 0.743907, 0.887962, 0.743905, 0.329305, 0.588441, 0.767792, 0.743905, 0.329305, 0.588192, 0.716003, 0.588441, 0.767792, 0.499236, 0.743924, 0.588441, 0.767792, 0.588192, 0.716003, 0.588441, 0.767792, 0.499489, 0.932952, 0.743907, 0.887962, 0.899372, 0.767792, 0.988325, 0.932952, 0.988448, 0.795768, 0.899372, 0.767792, 0.988578, 0.743923, 0.899621, 0.716002, 0.013711, 0.466074, 0.013726, 0.68047, 0.29802, 0.680449, 0.405465, 0.251577, 0.298005, 0.251679, 0.512511, 0.466056, 0.40548, 0.680543, 0.619914, 0.466052, 0.512511, 0.466056, 0.013711, 0.466074, 0.512511, 0.466056, 0.298005, 0.251679, 0.514643, 0.466584, 0.300097, 0.680921, 0.407558, 0.681043, 0.015843, 0.466472, 0.015803, 0.680868, 0.300097, 0.680921, 0.015843, 0.466472, 0.514643, 0.466584, 0.300193, 0.252151, 0.514643, 0.466584, 0.622047, 0.466608, 0.407653, 0.252077, 0.300414, 0.722717, 0.407185, 0.716996, 0.300505, 0.709775, 0.299561, 0.710655, 0.0168, 0.715141, 0.29947, 0.723597, 0.0164, 0.465856, 0.016416, 0.680252, 0.30071, 0.680231, 0.408155, 0.251358, 0.300695, 0.251461, 0.5152, 0.465838, 0.40817, 0.680325, 0.622604, 0.465834, 0.5152, 0.465838, 0.0164, 0.465856, 0.5152, 0.465838, 0.300695, 0.251461, 0.512847, 0.464191, 0.298301, 0.678527, 0.405761, 0.67865, 0.014047, 0.464078, 0.014007, 0.678474, 0.298301, 0.678527, 0.014047, 0.464078, 0.512847, 0.464191, 0.298397, 0.249757, 0.512847, 0.464191, 0.62025, 0.464215, 0.405857, 0.249683, 0.301227, 0.722789, 0.407997, 0.717067, 0.301318, 0.709847, 0.299575, 0.711376, 0.016812, 0.715862, 0.299484, 0.724318, 0.192103, 0.797634, 0.127004, 0.770738, 0.127086, 0.862768, 0.127086, 0.862768, 0.127168, 0.954798, 0.19222, 0.927785, 0.127086, 0.862768, 0.035056, 0.86285, 0.062069, 0.927902, 0.061952, 0.797751, 0.035056, 0.86285, 0.127086, 0.862768, 0.996672, 0.176913, 0.003328, 0.176924, 0.003328, 0.201967, 0.996672, 0.151873, 0.003328, 0.15188, 0.003328, 0.176924, 0.996672, 0.151873, 0.996671, 0.126833, 0.003328, 0.126836, 0.996671, 0.101793, 0.003328, 0.101793, 0.003328, 0.126836, 0.996671, 0.101793, 0.996671, 0.076752, 0.003328, 0.076749, 0.996671, 0.051712, 0.003328, 0.051705, 0.003328, 0.076749, 0.996671, 0.026672, 0.003329, 0.026662, 0.003328, 0.051705, 0.996672, 0.001632, 0.003329, 0.001618, 0.003329, 0.026662, 0.989398, 0.251107, 0.989439, 0.226287, 0.857067, 0.226299, 0.989398, 0.251107, 0.857066, 0.251115, 0.857066, 0.276209, 0.989352, 0.301486, 0.989369, 0.276203, 0.857066, 0.276209, 0.989352, 0.301486, 0.857065, 0.301489, 0.857065, 0.326862, 0.989346, 0.326862, 0.857065, 0.326862, 0.857065, 0.352234, 0.989352, 0.352237, 0.857065, 0.352234, 0.857066, 0.377514, 0.989398, 0.402617, 0.989369, 0.37752, 0.857066, 0.377514, 0.989439, 0.427436, 0.989398, 0.402617, 0.857066, 0.402608, 0.378785, 0.876782, 0.360749, 0.89234, 0.389541, 0.954479, 0.260052, 0.902258, 0.322631, 0.873503, 0.324572, 0.851571, 0.388241, 0.773, 0.363395, 0.836551, 0.377737, 0.853692, 0.441221, 0.827514, 0.377737, 0.853692, 0.378785, 0.876782, 0.389541, 0.954479, 0.360749, 0.89234, 0.337541, 0.890748, 0.260916, 0.82526, 0.324572, 0.851571, 0.340005, 0.834646, 0.337541, 0.890748, 0.322631, 0.873503, 0.260052, 0.902258, 0.340005, 0.834646, 0.363395, 0.836551, 0.388241, 0.773, 0.378785, 0.876782, 0.377737, 0.853692, 0.350653, 0.863718, 0.324572, 0.851571, 0.322631, 0.873503, 0.350653, 0.863718, 0.363395, 0.836551, 0.340005, 0.834646, 0.350653, 0.863718, 0.337541, 0.890748, 0.360749, 0.89234, 0.350653, 0.863718, 0.590438, 0.714212, 0.590687, 0.766001, 0.746154, 0.327512, 0.901868, 0.71421, 0.745491, 0.277366, 0.746154, 0.327512, 0.501482, 0.742133, 0.501613, 0.793977, 0.590687, 0.766001, 0.901619, 0.765999, 0.990694, 0.793975, 0.990824, 0.742131, 0.901619, 0.765999, 0.746152, 0.886169, 0.990571, 0.931159, 0.590687, 0.766001, 0.501613, 0.793977, 0.501735, 0.931159, 0.783712, 0.950119, 0.834038, 0.946306, 0.78385, 0.940987, 0.783441, 0.950332, 0.833766, 0.946518, 0.783578, 0.941199, 0.743025, 0.328554, 0.898492, 0.76704, 0.898741, 0.715252, 0.743025, 0.328554, 0.743025, 0.27661, 0.587311, 0.715252, 0.498355, 0.743174, 0.498486, 0.795017, 0.587561, 0.767041, 0.587561, 0.767041, 0.498486, 0.795017, 0.498608, 0.9322, 0.898492, 0.76704, 0.743027, 0.887211, 0.987445, 0.9322, 0.898492, 0.76704, 0.987567, 0.795017, 0.987698, 0.743172, 0.58998, 0.714162, 0.590229, 0.765952, 0.745696, 0.327465, 0.90141, 0.714163, 0.745034, 0.277319, 0.745696, 0.327465, 0.501023, 0.742083, 0.501154, 0.793927, 0.590229, 0.765952, 0.90116, 0.765951, 0.990236, 0.793927, 0.990366, 0.742083, 0.90116, 0.765951, 0.745695, 0.886121, 0.990113, 0.931111, 0.590229, 0.765952, 0.501154, 0.793927, 0.501276, 0.931111, 0.784817, 0.950202, 0.835141, 0.946388, 0.784954, 0.941069, 0.784268, 0.95028, 0.834593, 0.946467, 0.784405, 0.941147, 0.743905, 0.329305, 0.899372, 0.767792, 0.899621, 0.716002, 0.743905, 0.329305, 0.743905, 0.277362, 0.588192, 0.716003, 0.499236, 0.743924, 0.499367, 0.795769, 0.588441, 0.767792, 0.588441, 0.767792, 0.499367, 0.795769, 0.499489, 0.932952, 0.899372, 0.767792, 0.743907, 0.887962, 0.988325, 0.932952, 0.899372, 0.767792, 0.988448, 0.795768, 0.988578, 0.743923};
+
+       // Draw the Planes Sidewinders
+
+       // activate and specify pointer to vertex array
+       glEnableClientState(GL_VERTEX_ARRAY);
+       glVertexPointer(3, GL_FLOAT, 0, j_35_draken_sw_l_vertices);
+
+       // activate normal pointers
+       glEnableClientState(GL_NORMAL_ARRAY);
+       glNormalPointer(GL_FLOAT, 0, j_35_draken_sw_l_normals);
+
+       // activate UV pointers
+       glEnableClientState(GL_TEXTURE_COORD_ARRAY);
+       glTexCoordPointer(2, GL_FLOAT, 0, j_35_draken_sw_l_UVs);
+
+       // draw the Plane
+       glDrawArrays(GL_TRIANGLES, 0, 504); //tris in blender times 3x
+
+       glDisableClientState(GL_VERTEX_ARRAY);                  // deactivate vertex arrays after drawing
+       glDisableClientState(GL_NORMAL_ARRAY);                  // deactivate normal arrays after drawing
+       glDisableClientState(GL_TEXTURE_COORD_ARRAY);           // deactivate texture arrays after drawing
+
+       // disable texture
+       glDisable(GL_TEXTURE_2D);
+
+       //------------------------------------------------------------------------------------------------------------------------------------------------------------------//
+       if (draken_ab_on == 1)
+       {
+               // enable blending
+               glEnable(GL_BLEND);
+
+               // set afterburner flame color
+               glColor4f(1, 0.6, 0.1, 0.6);    // R,G,B,A - last i Alpha chanel, 1 = No transparancy, 0 = full transparancy
+
+               // set vertices for afterburner
+               static GLfloat j_35_draken_afterburner_vertices[] = {-5.733394, 1.207771, 0.36573, -10.724335, 1.312716, 0.004, -5.737863, 0.995198, 0.296646, -5.737863, 0.995198, 0.296646,           -10.724335, 1.312716, 0.004, -5.740625, 0.863821, 0.115781, -5.740625, 0.863821, 0.115781, -10.724335, 1.312716, 0.004, -5.740625, 0.863821, -0.107781, -5.740625, 0.863821, -0.107781, -10.724335, 1.312716, 0.004, -5.737864, 0.995198, -0.288646, -5.737864, 0.995198, -0.288646, -10.724335, 1.312716, 0.004, -5.733394, 1.207771, -0.357731, -5.733394, 1.207771, -0.357731, -10.724335, 1.312716, 0.004, -5.728924, 1.420344, -0.288646, -5.728924, 1.420344, -0.288646, -10.724335, 1.312716, 0.004, -5.726161, 1.551721, -0.107781, -5.726161, 1.551721, -0.107781, -10.724335, 1.312716, 0.004, -5.726161, 1.551721, 0.115781, -5.726161, 1.551721, 0.115781, -10.724335, 1.312716, 0.004, -5.728924, 1.420344, 0.296646, -5.728924, 1.420344, 0.296646, -10.724335, 1.312716, 0.004, -5.733394, 1.207771, 0.36573};
+
+               // set normals for afterburner
+               static GLfloat j_35_draken_afterburner_normals[] = {-0.072237, 0.001495, 0.997375, -0.999756, 0.020966, 0.0, -0.084567, -0.584582, 0.806879, -0.084567, -0.584582, 0.806879, -0.999756, 0.020966, 0.0, -0.092196, -0.946837, 0.308206, -0.092196, -0.946837, 0.308206, -0.999756, 0.020966, 0.0, -0.092196, -0.946837, -0.308206, -0.092196, -0.946837, -0.308206, -0.999756, 0.020966, 0.0, -0.084567, -0.584582, -0.806879, -0.084567, -0.584582, -0.806879, -0.999756, 0.020966, 0.0, -0.072237, 0.001495, -0.997375, -0.072237, 0.001495, -0.997375, -0.999756, 0.020966, 0.0, -0.059908, 0.587634, -0.806879, -0.059908, 0.587634, -0.806879, -0.999756, 0.020966, 0.0, -0.052309, 0.949858, -0.308206, -0.052309, 0.949858, -0.308206, -0.999756, 0.020966, 0.0, -0.052309, 0.949858, 0.308206, -0.052309, 0.949858, 0.308206, -0.999756, 0.020966, 0.0, -0.059908, 0.587634, 0.806879, -0.059908, 0.587634, 0.806879, -0.999756, 0.020966, 0.0, -0.072237, 0.001495, 0.997375};
+
+
+               // Draw the Planes afterburner flame
+
+               // activate and specify pointer to vertex array
+               glEnableClientState(GL_VERTEX_ARRAY);
+               glVertexPointer(3, GL_FLOAT, 0, j_35_draken_afterburner_vertices);
+
+               // activate normal pointers
+               glEnableClientState(GL_NORMAL_ARRAY);
+               glNormalPointer(GL_FLOAT, 0, j_35_draken_afterburner_normals);
+
+               // draw the flame
+               glDrawArrays(GL_TRIANGLES, 0, 30); //tris in blender times 3x
+
+               glDisableClientState(GL_VERTEX_ARRAY);                  // deactivate vertex arrays after drawing
+               glDisableClientState(GL_NORMAL_ARRAY);                  // deactivate normal arrays after drawing
+
+               // disable blending
+               glDisable (GL_BLEND);
+               glColor3f(1, 1, 1);
+       }
+       //------------------------------------------------------------------------------------------------------------------------------------------------------------------//
+
+       // Code for drawing contrail
+       if (draken_contrail == 1)
+       {
+               // disable ligth for props and contrails
+               glDisable(GL_LIGHTING);
+               glDisable(GL_LIGHT0);
+
+               // set texture
+               glBindTexture( GL_TEXTURE_2D, texture_contrail_draken );
+               glEnable(GL_TEXTURE_2D);
+
+               // enable blending
+               glEnable(GL_BLEND);
+
+               // turn off deptmask so things will blend properly
+               glDepthMask(GL_FALSE);
+
+
+
+               // loop for drawing the 50 smoke puffs per contrail
+               for (int i = 0; i < 50; ++i)
+               {
+                       glPushMatrix();                                                         // save the matrix so we make sure we dont rotate anything but parts of the pin.
+                       glTranslatef(0  - contrail_draken_x[i] - 10 , 0 , 0);                   // plot the contrails puffs using the X acoordinate data from the ary.
+
+                       // render the contrail
+                       glTranslatef (0, 1, 0); // Engine 1
+
+                       // billboard code borrowed from example code becuse my Basic4GL code did not backport well
+                       // get the current modelview matrix
+                       glGetFloatv(GL_MODELVIEW_MATRIX , modelview_contrail_draken);
+                       // undo all rotations
+                       // beware all scaling is lost as well
+                       for( int i=0; i<3; i++ )
+                               for( int j=0; j<3; j++ )
+                               {
+                                       if ( i==j )
+                                               modelview_contrail_draken[i*4+j] = 1.0;
+                                       else
+                                               modelview_contrail_draken[i*4+j] = 0.0;
+                               }
+                       // set the modelview with no rotations and scaling
+                       glLoadMatrixf(modelview_contrail_draken);
+                       // end of billboard code
+
+                       // Exapnd puffs for contrail and fade them in
+                       if (contrail_draken_x[i] < 100)
+                       {
+                               glScalef(1 + (contrail_draken_x[i] * 0.01),1 + (contrail_draken_x[i] * 0.01),1 + (contrail_draken_x[i] * 0.01));        // scale up contrail puffs
+                               glColor4f(1,1,1,(contrail_draken_x[i] * 0.01));                                                                         // fade contrail in
+                       }
+                       else if (( contrail_draken_x[i] > 100 ) && ( contrail_draken_x[i] < 125 ))
+                       {
+                               glScalef(2, 2, 2);      // maximum and fixed size of puffs
+                               glColor4f(1,1,1,1);     // contrails fully visible
+                       }
+                       else
+                       {
+                               glScalef(2, 2, 2);                                              // maximum and fixed size of puffs
+                               glColor4f(1,1,1, 1 - ((contrail_draken_x[i]) -124 ) / 10 );     // fade contrails out
+                       }
+
+                       // draw the smoke puffs for the contrail
+                       glBegin(GL_QUADS);
+                       glNormal3f(0, 0, 1);
+                       glTexCoord2f(0,1);glVertex3f(-1, -1, 0);
+                       glTexCoord2f(1,1);glVertex3f(1, -1, 0);
+                       glTexCoord2f(1,0);glVertex3f(1, 1, 0);
+                       glTexCoord2f(0,0);glVertex3f(-1, 1, 0);
+
+                       // done drawing the contrails
+                       glEnd();
+
+                       glPopMatrix();                                                                          // revert to the previous matrix
+                       if (contrail_draken_x[i] >= 150)contrail_draken_x[i] =  contrail_draken_x[i] - 150;     // move smoke puffs from the end of the contrail to the begining
+
+                       //restor colors and alpha
+                       glColor4f(1,1,1, 1);
+
+               }
+
+               // turn onf depthmask after blending propes and contrails properly
+               glDepthMask(GL_TRUE);
+
+               // disable propeller texture
+               glDisable(GL_TEXTURE_2D);
+
+               // disable blending
+               glDisable (GL_BLEND);
+
+               // enable ligth
+               glEnable(GL_LIGHTING);
+               glEnable(GL_LIGHT0);
+       }
+}
diff --git a/j35_draken.h b/j35_draken.h
new file mode 100644 (file)
index 0000000..de558a8
--- /dev/null
@@ -0,0 +1,18 @@
+#ifndef J35_DRAKEN_H_
+#define J35_DRAKEN_H_
+
+// License information.
+// The Software "SAF BENCH" was written by Patrik.A, also known as Nitton Attiofyra
+// on YouTube. (https://www.youtube.com/@NittonAttiofyra)
+
+// The software is released in to the Public Domain and comes with no warranty and is used
+// at your own risk!
+
+void textures_draken();                        // used to load textures
+void j35_draken();                     // draws all the geometry of the Plane 
+extern int draken_wheels;              // toggel landing gear visible or hidden
+extern int draken_ab_on;               // toggle afterburner on or off
+extern int draken_contrail;            // toggle contrail on or off
+extern GLfloat contrail_draken_x [];   // contrails, J-35 Draken
+
+#endif /* J35_DRAKEN_H_ */
diff --git a/license.txt b/license.txt
new file mode 100644 (file)
index 0000000..1778244
--- /dev/null
@@ -0,0 +1,10 @@
+License information.
+
+The Software "SAF BENCH" was written by Patrik.A, also known as Nitton Attiofyra
+on YouTube. (https://www.youtube.com/@NittonAttiofyra)
+
+The software is released in to the Public Domain and comes with no warranty and
+is used at your own risk!
+
+Minor modifications, reformatting, and cleanup by
+  John Tsiombikas <nuclear@mutantstargoat.com>
diff --git a/menus.cpp b/menus.cpp
new file mode 100644 (file)
index 0000000..3ef3b2f
--- /dev/null
+++ b/menus.cpp
@@ -0,0 +1,136 @@
+// License information.
+// The Software "SAF BENCH" was written by Patrik.A, also known as Nitton Attiofyra
+// on YouTube. (https://www.youtube.com/@NittonAttiofyra)
+
+// The software is released in to the Public Domain and comes with no warranty and is used
+// at your own risk!
+
+#include <stdlib.h> // VS 2005 wont compile it if its noth placed here, need to investigate
+#ifdef macintosh
+#include <glut.h>
+#include <gl.h>
+#include <glu.h>
+#else
+#include <GL/glut.h>
+#include <GL/gl.h>
+#include <GL/glu.h>
+#endif
+#include <iostream>
+
+#include "menus.h"
+#include "bmp_alpha.h"
+#include <stdio.h>
+
+#define for if(0);else for     // C2374 VC6++ on Alpha bug
+
+#ifdef _WIN32
+#pragma warning( disable : 4305 )
+#define for if(0);else for     // VC6++ on Alpha bug
+#endif
+
+int menu = 1;                  // what menu to render
+GLfloat check_pos;             // position of check marker in settings menu
+GLfloat res_dial_w;            // rotate the width  resolution dial
+GLfloat res_dial_h;            // rotate the height resolution dial
+
+static GLuint texture_main_menu, texture_settings_menu, texture_check;         // Textures
+
+// Load textures
+void textures_menus()
+{
+#ifdef macintosh
+       texture_main_menu = LoadTexture(":textures:menu:main.bmp", 256, 256);
+       texture_settings_menu = LoadTexture(":textures:menu:settings.bmp", 256, 256);
+       texture_check = LoadTexture(":textures:menu:check.bmp", 16, 16);
+#else
+       texture_main_menu = LoadTexture("textures/menu/main.bmp", 256, 256);
+       texture_settings_menu = LoadTexture("textures/menu/settings.bmp", 256, 256);
+       texture_check = LoadTexture("textures/menu/check.bmp", 16, 16);
+#endif
+}
+
+// code for drwaing menus
+void menus()
+{
+       // draw main menu or settings menu
+       switch(menu)
+       {
+       case 1:
+               glBindTexture( GL_TEXTURE_2D, texture_main_menu );
+               glEnable(GL_TEXTURE_2D);
+               glBegin(GL_QUADS);
+               glNormal3f(0, 0, 1);
+               glColor3f(1, 1, 1);
+               glTexCoord2f(.005,0);glVertex3f(-32, -24, -41.5);
+               glTexCoord2f(.995,0); glVertex3f(32, -24, -41.5);
+               glTexCoord2f(.995,1);glVertex3f(32, 24, -41.5);
+               glTexCoord2f(.005,1);glVertex3f(-32, 24, -41.5);
+               glEnd();
+
+               // disable texture
+               glDisable(GL_TEXTURE_2D);
+
+               // draw width resolution dial indicator
+               glPushMatrix();
+               glTranslatef (6, -17, 0);                       // position the dial indicator
+               glRotatef(res_dial_w, 0, 0, -1);        // rotate the dial indicator
+               glBegin(GL_QUADS);
+               glNormal3f(0, 0, 1);
+               glColor3f(1, 1, 1);
+               glVertex3f(-0.5, 0, -41.0);
+               glVertex3f(-0.1, -3.5, -41.0);
+               glVertex3f(0.1, -3.5, -41.0);
+               glVertex3f(0.5, 0, -41.0);
+               glEnd();
+               glPopMatrix();
+
+               // draw height resolution dial indicator
+               glPushMatrix();
+               glTranslatef (6, -17, 0);                       // position the dial indicator
+               glRotatef(res_dial_h, 0, 0, -1);        // rotate the dial indicator
+               glBegin(GL_QUADS);
+               glNormal3f(0, 0, 1);
+               glColor3f(0.8, 0.8, 0.8);
+               glVertex3f(-1, 0, -40.5);
+               glVertex3f(0, -3, -40.5);
+               glVertex3f(1, 0, -40.5);
+               glVertex3f(0, 1, -40.5);
+               glEnd();
+               glPopMatrix();
+
+               break;
+       case 2:
+               // draws settings menu
+               glBindTexture( GL_TEXTURE_2D, texture_settings_menu );
+               glEnable(GL_TEXTURE_2D);
+               glBegin(GL_QUADS);
+               glNormal3f(0, 0, 1);
+               glColor3f(1, 1, 1);
+               glTexCoord2f(.005,0);glVertex3f(-32, -24, -41.5);
+               glTexCoord2f(.995,0);glVertex3f(32, -24, -41.5);
+               glTexCoord2f(.995,1);glVertex3f(32, 24, -41.5);
+               glTexCoord2f(.005,1);glVertex3f(-32, 24, -41.5);
+               glEnd();
+
+               // disable texture
+               glDisable(GL_TEXTURE_2D);
+
+               // draw marker in check box in settins menu
+               glEnable(GL_BLEND);
+               glBindTexture( GL_TEXTURE_2D, texture_check );
+               //else if (left_mouse_button == 1 && mouse_x_pos >= 15 && mouse_x_pos <= 47 && mouse_y_pos >= 39 && mouse_y_pos <= 62 && mouse_lock == 0)
+               glEnable(GL_TEXTURE_2D);
+               glBegin(GL_QUADS);
+               glNormal3f(0, 0, 1);
+               glColor3f(1, 1, 1);
+               glTexCoord2f(.005,0);glVertex3f(-28.8, 16.7 - check_pos, -41);
+               glTexCoord2f(.995,0);glVertex3f(-26.8,16.7 - check_pos, -41);
+               glTexCoord2f(.995,1);glVertex3f(-26.8, 18.7 - check_pos, -41);
+               glTexCoord2f(.005,1);glVertex3f(-28.8, 18.7 - check_pos, -41);
+               glEnd();
+               glDisable(GL_BLEND);
+               // disable texture
+               glDisable(GL_TEXTURE_2D);
+               break;
+       }
+}
diff --git a/menus.h b/menus.h
new file mode 100644 (file)
index 0000000..0376837
--- /dev/null
+++ b/menus.h
@@ -0,0 +1,18 @@
+#ifndef MENUS_H_
+#define MENUS_H_
+
+// License information.
+// The Software "SAF BENCH" was written by Patrik.A, also known as Nitton Attiofyra
+// on YouTube. (https://www.youtube.com/@NittonAttiofyra)
+
+// The software is released in to the Public Domain and comes with no warranty and is used
+// at your own risk!
+
+void menus();                          // render menus
+void textures_menus();         // textur for menus
+extern int menu;                       // what menu  to render
+extern GLfloat check_pos;      // position of check marker in settings menu
+extern GLfloat res_dial_w;     // rotate the width resolution dial
+extern GLfloat res_dial_h;     // rotate the height resolution dial
+
+#endif /* MENUS_H_ */
diff --git a/resource.h b/resource.h
new file mode 100644 (file)
index 0000000..76c23f9
--- /dev/null
@@ -0,0 +1,16 @@
+//{{NO_DEPENDENCIES}}
+// Microsoft Visual C++ generated include file.
+// Used by SAF BENCH.rc
+//
+#define IDI_ICON1                       101
+
+// Next default values for new objects
+//
+#ifdef APSTUDIO_INVOKED
+#ifndef APSTUDIO_READONLY_SYMBOLS
+#define _APS_NEXT_RESOURCE_VALUE        106
+#define _APS_NEXT_COMMAND_VALUE         40001
+#define _APS_NEXT_CONTROL_VALUE         1001
+#define _APS_NEXT_SYMED_VALUE           101
+#endif
+#endif
diff --git a/run_irix.csh b/run_irix.csh
new file mode 100755 (executable)
index 0000000..a8127b3
--- /dev/null
@@ -0,0 +1,7 @@
+#!/bin/csh -f
+
+# Turn of Vsync
+
+setenv DECOUPLE_SWAPBUF y
+
+./saf_bench
diff --git a/runway.cpp b/runway.cpp
new file mode 100644 (file)
index 0000000..a1ca647
--- /dev/null
@@ -0,0 +1,90 @@
+// License information.
+// The Software "SAF BENCH" was written by Patrik.A, also known as Nitton Attiofyra
+// on YouTube. (https://www.youtube.com/@NittonAttiofyra)
+
+// The software is released in to the Public Domain and comes with no warranty and is used
+// at your own risk!
+
+#include <stdlib.h> // VS 2005 wont compile it if its not placed here, need to investigate
+#ifdef macintosh
+#include <glut.h>
+#include <gl.h>
+#include <glu.h>
+#else
+#include <GL/glut.h>
+#include <GL/gl.h>
+#include <GL/glu.h>
+#endif
+#include <iostream>
+#include "bmp_alpha.h"
+#include "runway.h"
+
+static GLuint texture_bg, texture_grass, texture_ground;
+
+
+void textures_runway()
+{
+#ifdef macintosh
+       texture_bg = LoadTexture(":textures:runway:runway.bmp" , 256, 256);
+       texture_grass = LoadTexture(":textures:runway:grass_runway.bmp" , 256, 256);
+       texture_ground = LoadTexture(":textures:runway:ground.bmp" , 256, 256);
+#else
+       texture_bg = LoadTexture("textures/runway/runway.bmp" , 256, 256);
+       texture_grass = LoadTexture("textures/runway/grass_runway.bmp" , 256, 256);
+       texture_ground = LoadTexture("textures/runway/ground.bmp" , 256, 256);
+#endif
+}
+
+void runway()
+{
+       // enable blending
+       glEnable(GL_BLEND);
+
+       // Enable culling. Remove one side of the polygons, back or front.
+       glEnable(GL_CULL_FACE);
+       glCullFace(GL_BACK);
+
+       //draw ground texture
+       glBindTexture( GL_TEXTURE_2D, texture_ground );
+       glEnable(GL_TEXTURE_2D);
+
+       glBegin(GL_QUADS);
+       glNormal3f(0, 1, 0);
+       glTexCoord2f(.005,0);glVertex3f(-2100, -0.2, 2100);
+       glTexCoord2f(50,0);glVertex3f(2100, -0.2, 2100);
+       glTexCoord2f(50,50);glVertex3f(2100, -0.2, -2100);
+       glTexCoord2f(.005,50);glVertex3f(-2100, -0.2, -2100);
+       glEnd();
+
+       //draw grass texture
+       glBindTexture( GL_TEXTURE_2D, texture_grass );
+
+       glBegin(GL_QUADS);
+       glNormal3f(0, 1, 0);
+       glTexCoord2f(.005,0);glVertex3f(-1032, -0.04, 32);
+       glTexCoord2f(50,0);glVertex3f(1032, -0.04, 32);
+       glTexCoord2f(50,1);glVertex3f(1032, -0.04, -32);
+       glTexCoord2f(.005,1);glVertex3f(-1032, -0.04, -32);
+       glEnd();
+
+       //draw runway texture
+       glBindTexture( GL_TEXTURE_2D, texture_bg );
+
+       glBegin(GL_QUADS);
+       glNormal3f(0, 1, 0);
+       glTexCoord2f(.005,0);glVertex3f(-1000, 0, 8);
+       glTexCoord2f(50,0);glVertex3f(1000, 0, 8);
+       glTexCoord2f(50,1);glVertex3f(1000, 0, -8);
+       glTexCoord2f(.005,1);glVertex3f(-1000, 0, -8);
+       glEnd();
+
+       // disable texture
+       glDisable(GL_TEXTURE_2D);
+
+       // disable culling
+       glDisable(GL_CULL_FACE);
+
+       // disable blending
+       glDisable(GL_BLEND);
+
+}
diff --git a/runway.h b/runway.h
new file mode 100644 (file)
index 0000000..af3e70e
--- /dev/null
+++ b/runway.h
@@ -0,0 +1,14 @@
+#ifndef RUNWAY_H_
+#define RUNWAY_H_
+
+// License information.
+// The Software "SAF BENCH" was written by Patrik.A, also known as Nitton Attiofyra
+// on YouTube. (https://www.youtube.com/@NittonAttiofyra)
+
+// The software is released in to the Public Domain and comes with no warranty and is used
+// at your own risk!
+
+void textures_runway();
+void runway();
+
+#endif /* RUNWAY_H_ */
diff --git a/saf_bench.cpp b/saf_bench.cpp
new file mode 100644 (file)
index 0000000..dbf7eee
--- /dev/null
@@ -0,0 +1,1701 @@
+// License information.
+// The Software "SAF BENCH" was written by Patrik.A, also known as Nitton Attiofyra
+// on YouTube. (https://www.youtube.com/@NittonAttiofyra)
+
+// The software is released in to the Public Domain and comes with no warranty and is used
+// at your own risk!
+
+// how to compile under linux.
+// g++ saf_bench.cpp j35_draken.cpp tu_95.cpp bmp_alpha.cpp runway.cpp skybox1.cpp skybox2.cpp ground2.cpp digits.cpp menus.cpp -lglut -lGL -lGLU -o saf_bench
+// how to compile under IRIX with MIPS4
+// g++ saf_bench.cpp j35_draken.cpp tu_95.cpp bmp_alpha.cpp runway.cpp skybox1.cpp skybox2.cpp ground2.cpp digits.cpp menus.cpp -lglut -lGL -lGLU -mips4 -o saf_bench
+
+#include <stdlib.h> // VS 2005 wont compile it if its noth placed here, need to investigate
+#ifdef macintosh
+#include <glut.h>
+#include <gl.h>
+#include <glu.h>
+#else
+#include <GL/glut.h>
+#include <GL/gl.h>
+#include <GL/glu.h>
+#endif
+
+#include <iostream>
+#include <string>
+#ifdef _WIN32
+//#include <Windows.h>
+#include "wglext.h"
+#else
+#include <unistd.h>
+#endif
+#include "menus.h"
+#include "digits.h"
+#include "j35_draken.h"
+#include "tu_95.h"
+#include "bmp_alpha.h"
+#include "runway.h"
+#include "skybox1.h"
+#include "skybox2.h"
+#include "ground2.h"
+#include <stdio.h>
+#include <cstring>
+#include <time.h>
+
+#define for if(0);else for                             // C2374 VC6++ on Alpha bug
+
+using namespace std;
+
+static GLfloat rotX = 0;                               // rotate everything on the X axis
+static GLfloat rotY = 0;                               // rotate everything on the Y axis
+static GLfloat rotZ = 0;                               // rotate everything on the Z axis
+static GLfloat transX = 0;                             // sets the zoom on X axis in viewport
+static GLfloat transY = 0;                             // sets the zoom on Y axis in viewport
+static GLfloat transZ = 0;                             // sets the zoom on Z axis in viewport
+
+static GLfloat rot_worldX = 0;                 // rotate the world on the X axis
+static GLfloat rot_worldY = 0;                 // rotate the world on the Y axis
+static GLfloat rot_worldZ = 0;                 // rotate the world on the Z axis
+static GLfloat trans_worldX = 0;               // translates the world X axis
+static GLfloat trans_worldY = 0;               // translates the world Y axis
+static GLfloat trans_worldZ = 0;               // translates the world Z axis
+
+static GLfloat rot_drakenX = 0;                        // rotate draken
+static GLfloat rot_drakenY = 0;                        // rotate draken
+static GLfloat rot_drakenZ = 0;                        // rotate draken
+
+static GLfloat trans_drakenX = 0;              // translate draken
+static GLfloat trans_drakenY = 0;              // translate draken
+static GLfloat trans_drakenZ = 0;              // translate draken
+
+static GLfloat rot_tu95_X = 0;                 // translate TU-95
+static GLfloat rot_tu95_Y = 0;                 // translate TU-95
+static GLfloat rot_tu95_Z = 0;                 // translate TU-95
+static GLfloat trans_tu95_X = 0;               // translate TU-95
+static GLfloat trans_tu95_Y = 0;               // translate TU-95
+static GLfloat trans_tu95_Z = 0;               // translate TU-95
+
+static GLfloat draken_velocity = 0;            // J 35 Draken Velocity
+
+static int ScreenWidth = 512;                  // windows width excluding boarders
+static int ScreenHeight = 384;                 // windows hight excluding boarders
+static int Pre_ScreenWidth;                            // store previous screen width, usfulle for toggeling fullscreen
+static int Pre_ScreenHeight;                   // store previous screen higth, usfulle for toggeling fullscreen
+static int fullscreen;                                 // toggle fullscreen
+static int res_mode = 4;                               // preset resolution modes
+
+static int frames;                                             // count every rendered frame
+static int fps=0;                                              // countes frames per second
+extern int draken_wheels;                              // toggel landing gear visible or hidden
+extern int draken_ab_on;                               // toggle afterburner on and off
+extern int draken_contrail;                            // toggle contrail on or off
+extern int draw_ground2;                               // draw ground2 or ground3
+static int old_time = 0;                               // time passed in ms since last physics calcualtions
+static int now_time = 0;                               // current time passed in ms
+static int diff_time = 0;                              // difference in ms between time passed for previous physic calculation and start of current
+static int scene = 0;                                  // scene to render
+static int scene_defaults = 0;                 // check if defaults are set for a scene
+static int bench_start_time = 0;               // when the demo started to run
+extern GLfloat clouds_x;                               // move the clouds on X axis
+extern GLfloat contrail_x[];                   // contrails, TU-95
+extern GLfloat contrail_draken_x [];   // contrails, J-35 Draken
+extern int menu;                                               // keep track on what menu to render
+extern GLfloat res_dial_w;                             // rotate the width resolution dialresolution dial
+extern GLfloat res_dial_h;                             // rotate the height resolution dial
+static int demo;                                               // if = 1 then we are running a demo
+static int frames_total;                               // total rendered frames during the benchmark
+extern GLfloat check_pos;                              // settings check marker position
+extern int draw_fps[];                                 // array that holds up to 5 digits that represents each digit in the FPS number
+extern int draw_score[];                               // array that holds up to 8 digits that represents each digit in the score number
+int fps_i;                                                             // increments so every digit is saved in the fps array
+static int score_i;                                            // increments so every digit is saved in the score array
+static int old_pos_x, old_pos_y;                       // save old X and Y window position, old glut forgets
+
+// light stuff
+static GLfloat light_position[4];               // light position (X,Y,Z,W) if W = 0 light is directional
+static GLfloat light_ambient[4] = { .1, .1, .1, .1 };
+
+// mouse stuff
+// Mouse_lock is to make sure the left button is released before registering
+// another button press. If we dont we will flipp back and fort betemen menus that have
+// overlapping buttons
+static int left_mouse_button, right_mouse_button, mouse_x_pos, mouse_y_pos, mouse_lock;
+
+// change the checkmarker position for the resolution alternatives
+void check_marker_pos()
+{
+       switch(res_mode)
+       {
+       case 0: check_pos = 0; break;
+       case 1: check_pos = 4.4; break;
+       case 2: check_pos = 8.85; break;
+       case 3: check_pos = 13.25; break;
+       case 4: check_pos = 17.7; break;
+       case 5: check_pos = 22.15; break;
+       case 6: check_pos = 26.6; break;
+       case 7: check_pos = 31; break;
+       }
+}
+
+// code to set resolutions
+void resolutions()
+{
+       switch(res_mode)
+       {
+       case 0: ScreenWidth = 320; ScreenHeight = 240; glutReshapeWindow(ScreenWidth, ScreenHeight);fullscreen = 0; break;
+       case 1: ScreenWidth = 400; ScreenHeight = 300; glutReshapeWindow(ScreenWidth, ScreenHeight);fullscreen = 0; break;
+       case 2: ScreenWidth = 512; ScreenHeight = 384; glutReshapeWindow(ScreenWidth, ScreenHeight);fullscreen = 0; break;
+       case 3: ScreenWidth = 640; ScreenHeight = 480; glutReshapeWindow(ScreenWidth, ScreenHeight);fullscreen = 0; break;
+       case 4: ScreenWidth = 800; ScreenHeight = 600; glutReshapeWindow(ScreenWidth, ScreenHeight);fullscreen = 0; break;
+       case 5: ScreenWidth = 1024; ScreenHeight = 768; glutReshapeWindow(ScreenWidth, ScreenHeight);fullscreen = 0; break;
+       case 6: ScreenWidth = 1280; ScreenHeight = 1024; glutReshapeWindow(ScreenWidth, ScreenHeight);fullscreen = 0; break;
+       case 7:
+#ifdef macintosh
+                       // Window wont start at 0,0 and when it is its not full screen hight so we move it down 20 pixels
+                       old_pos_x = (glutGet(GLUT_WINDOW_X));   // save old X window position, old glut forgets
+                       old_pos_y = (glutGet(GLUT_WINDOW_Y));   // save old Y window position, old glut forgets
+                       glutPositionWindow(0, 20);
+#else
+                       old_pos_x = (glutGet(GLUT_WINDOW_X));   // save old X window position, old glut forgets
+                       old_pos_y = (glutGet(GLUT_WINDOW_Y));   // save old Y window position, old glut forgets
+#endif
+                       fullscreen = 1;
+                       Pre_ScreenWidth = ScreenWidth;                  // windows width excluding boarders
+                       Pre_ScreenHeight = ScreenHeight;                // windows hight excluding boarders
+                       glutFullScreen();
+                       break;
+       }
+}
+
+// convert score to separet digits
+void convert_score()
+{
+       // set the first digit to 0 so it always renders, any higher digits sis set to 10 so they wont render.
+       draw_score[0] = 0;
+       draw_score[1] = 10;
+       draw_score[2] = 10;
+       draw_score[3] = 10;
+       draw_score[4] = 10;
+       draw_score[5] = 10;
+       draw_score[6] = 10;
+       draw_score[7] = 10;
+
+       // devide fps int into separete digits
+       score_i = 0;
+       while (frames_total > 0)
+       {
+               int digit2 = frames_total%10;
+               frames_total /= 10;
+               //print digit2
+               draw_score[score_i] = digit2;
+               score_i++;
+       }
+}
+
+// Save score to file with Time and Date
+void save_score()
+{
+       // get date and time
+       char* dt;
+       time_t now;
+       struct tm* gmtm;
+       FILE *f;
+       // current date/time based on current system
+       now = time(0);
+
+       // convert now to string form
+       dt = ctime(&now);
+
+       // write score to file
+       f = fopen("score.txt", "a+");                                                                                   // open file, append
+       if(f!=NULL)
+       {
+               fprintf(f,"%s",dt);
+               fprintf(f,"Resolution %d x %d\n", ScreenWidth, ScreenHeight);           // prins resolution
+               fprintf(f,"Average FPS %.1f\n",frames_total / 107.5);                           // print the average frame rate
+               fprintf(f,"Score %d\n\n",frames_total);
+               fclose(f);                                                                                                                      // close file
+       }
+       else
+       {
+               fprintf(stderr,"\nThere was an error opening score.txt\n\n");
+       }
+}
+
+// rotate propellers and move contrails
+void rotate_propellers()
+{
+       r_propeller = r_propeller + (0.05 * diff_time);
+       // loop for drawing the 50 smoke puffs per contrail
+       for (int i = 0; i < 50; ++i)
+       {
+               contrail_x[i] = contrail_x[i] + (0.072 * diff_time);                            // exhaust speed of contrail
+       }
+}
+
+// move J-35 Draken contrails
+void move_draken_contrail()
+{
+       for (int i = 0; i < 50; ++i)
+       {
+               contrail_draken_x[i] = contrail_draken_x[i] + (0.072 * diff_time);      // exhaust speed of contrail
+       }
+}
+
+// scroll the cloud and ground texture on the X axis
+void scroll_clouds_X()
+{
+       clouds_x = clouds_x + (0.0001 * diff_time);
+}
+
+// light position for menu
+void light_position_menu()
+{
+       // light position (X,Y,Z,W) if W = 0 light is directional
+       light_position[0] = 0;          // X
+       light_position[1] = 0;          // Y
+       light_position[2] = 1000;       // Z
+       light_position[3] = 1;          // W
+}
+
+// light position for skybox1
+void light_position_skybox1()
+{
+       // light position (X,Y,Z,W) if W = 0 light is directional
+       light_position[0] = 0;          // X
+       light_position[1] = 10000;      // Y
+       light_position[2] = 3500;       // Z
+       light_position[3] = 1;          // W
+}
+
+// light position for skybox2
+void light_position_skybox2()
+{
+       // light position (X,Y,Z,W) if W = 0 light is directional
+       light_position[0] = 100;        // X
+       light_position[1] = 490;        // Y
+       light_position[2] = -300;       // Z
+       light_position[3] = 1;          // W
+}
+
+// check for keyboard inputs
+void NormalKeys(unsigned char key, int mouse_x, int mouse_y)
+{
+       switch(key)
+       {
+       case 'f':
+               // if 'f' key is pressed go fullscreen
+               if ((fullscreen == 0) && (demo == 1))
+               {
+                       res_mode = 7;                                                                   // set res_mode to 7 that equals fullscreen
+                       resolutions();                                                                  // run resolution code to set fullscreen
+                       break;
+               }
+               // if 'f' key is pressed and we are in demo mode, exit fullscreen and restor window size
+               if ((fullscreen == 1) && (demo == 1))
+               {
+                       res_mode = 2;                                                                   // set 512x384 as the windows resolution
+                       resolutions();                                                                  // sets resolution
+                       glutPositionWindow(old_pos_x, old_pos_y);               // restore old window X and Y position
+                       break;
+               }
+               break;
+
+       case 27:
+               // if 'ESC' key(s) is pressed in fullscreen benchmark got back to main menu
+               if ((fullscreen == 1) && (demo == 0))
+               {
+                       scene = 0;                                                                              // sett scene to none existing scene zero
+                       menu = 1;                                                                               // goto main menu
+                       frames_total = 0;                                                               // set score to zero
+                       convert_score();                                                                // show zero score
+                       break;
+               }
+               // if 'ESC' key is pressed in fullscreen demo mode, exit fullscreen and restor window size
+               if ((fullscreen == 1) && (demo == 1))
+               {
+                       res_mode = 2;                                                                   // set 512x384 as the windows resolution
+                       resolutions();                                                                  // sets resolution
+                       glutPositionWindow(old_pos_x, old_pos_y);               // restore old window X and Y position
+                       break;
+               }
+               //if 'ESC' key is pressed  and the program is running a scene in a window, exit to main menu
+               if ((scene > 0) && ( fullscreen == 0 ))
+               {
+                       scene = 0;                                                                              // sett scene to none existing scene zero
+                       menu = 1;                                                                               // goto main menu
+                       frames_total = 0;                                                               // set score to zero
+                       convert_score();                                                                // show zero score
+                       break;
+               }
+               //if 'ESC" key is pressed  and we are in the settings menu, go back to main menu
+               if (menu == 2)
+               {
+                       menu = 1;                                                                               // goto main menu
+                       break;
+               }
+
+               //if 'ESC" key is pressed exit the program if we are in the main menu
+               if ((fullscreen == 0) && (menu == 1))
+               {
+                       exit(0);                                                                                // exit program
+               }
+               break;
+
+               // Increase window size
+       case '+':
+               if ((demo == 1) && (res_mode < 6) && (fullscreen  == 0))
+               {
+                       ++res_mode;                                                                     // add 1 to res_model variable
+                       resolutions();                                                                  // sets resolution
+               }
+               break;
+
+               // Reduce Window Size
+       case '-':
+               if ((demo == 1) && (res_mode > 0) && (fullscreen  == 0))
+               {
+                       --res_mode;                                                                             // subracts 1 from res_model variable
+                       resolutions();                                                                  // sets resolution
+               }
+               break;
+       }
+}
+
+// grab mouse clicks and corsponding coordinates
+void MouseClick(int mouse_button, int mouse_button_state, int mouse_x, int mouse_y)
+{
+       if ((mouse_button == GLUT_LEFT_BUTTON) && (mouse_button_state == GLUT_DOWN))
+       {
+               left_mouse_button = 1;
+               mouse_x_pos = mouse_x;
+               mouse_y_pos = mouse_y;
+       }
+       else if ((mouse_button == GLUT_LEFT_BUTTON) && (mouse_button_state == GLUT_UP))
+       {
+               mouse_lock = 0;
+               left_mouse_button = 0;
+               mouse_x_pos = 0;
+               mouse_y_pos = 0;
+       }
+       if ((mouse_button ==  GLUT_RIGHT_BUTTON) && (mouse_button_state == GLUT_DOWN))
+       {
+               right_mouse_button = 1;
+       }
+       else{right_mouse_button = 0;
+       }
+}
+
+// Calculate scenes and Menus every 5 ms
+void timer(int)
+{
+       glutTimerFunc(5, timer, 0);     // next Timer call milliseconds later
+
+       // kill the program if we dont have a glut Window.
+       // MacOS classis wont terminate the console if we use the close button on the window
+       if (glutGetWindow() == 0)exit(0);
+
+       // calculate time between frames
+       old_time = now_time;
+       now_time = glutGet(GLUT_ELAPSED_TIME);
+       diff_time = now_time - old_time;
+
+       switch(menu)
+       {
+               // Main menu, 1
+       case 1:
+               // run benchmark
+               if (left_mouse_button == 1 && mouse_x_pos >= 32 && mouse_x_pos <= 257 && mouse_y_pos >= 290 && mouse_y_pos <= 325 && mouse_lock == 0)
+               {
+                       scene = 1;                                                              // scene to render, 0 = no scene
+                       menu = 0;                                                               // keep track on what menu to render
+                       demo = 0;                                                               // if = 1 then we are running a demo
+                       mouse_lock = 1;                                                 // make sure mouse button is released before registering another button press
+                       resolutions();                                                  // set the selected resolution
+               }
+               // run demo in a loop
+               else if (left_mouse_button == 1 && mouse_x_pos >= 354 && mouse_x_pos <= 482 && mouse_y_pos >= 290 && mouse_y_pos <= 326 && mouse_lock == 0)
+               {
+                       scene = 1;                                                              // scene to render, 0 = no scene
+                       menu = 0;                                                               // keep track on what menu to render
+                       demo = 1;                                                               // if = 1 then we are running a demo
+                       mouse_lock = 1;                                                 // make sure mouse button is released before registering another button press
+                       resolutions();                                                  // set the selected resolution
+               }
+               // settings menu
+               else if (left_mouse_button == 1 && mouse_x_pos >= 32 && mouse_x_pos <= 257 && mouse_y_pos >= 338 && mouse_y_pos <= 373 && mouse_lock == 0)
+               {
+                       scene = 0;
+                       menu = 2;
+                       mouse_lock = 1;
+                       check_marker_pos();                                             // check marker indication selected resoltution in settings menu
+               }
+               // quit the program
+               else if (left_mouse_button == 1 && mouse_x_pos >= 354 && mouse_x_pos <= 482 && mouse_y_pos >= 338 && mouse_y_pos <= 373 && mouse_lock == 0)
+               {
+                       exit(0);                                                                // exit the program
+               }
+               break;
+
+               // settings menu
+       case 2:
+               check_marker_pos();
+               // OK button. Retrun to main menu
+               if (left_mouse_button == 1 && mouse_x_pos >= 177 && mouse_x_pos <= 339 && mouse_y_pos >= 339 && mouse_y_pos <= 373 && mouse_lock == 0)
+               {
+                       scene = 0;
+                       menu = 1;
+                       mouse_lock = 1;
+               }
+               // 320x240
+               else if (left_mouse_button == 1 && mouse_x_pos >= 15 && mouse_x_pos <= 47 && mouse_y_pos >= 39 && mouse_y_pos <= 62 && mouse_lock == 0)
+               {
+                       res_mode = 0;
+                       mouse_lock = 1;
+               }
+               // 400x300
+               else if (left_mouse_button == 1 && mouse_x_pos >= 15 && mouse_x_pos <= 47 && mouse_y_pos >= 75 && mouse_y_pos <= 99 && mouse_lock == 0)
+               {
+                       res_mode = 1;
+                       mouse_lock = 1;
+               }
+               // 512x384
+               else if (left_mouse_button == 1 && mouse_x_pos >= 15 && mouse_x_pos <= 47 && mouse_y_pos >= 111 && mouse_y_pos <= 133 && mouse_lock == 0)
+               {
+                       res_mode = 2;
+                       mouse_lock = 1;
+               }
+               // 640x480
+               else if (left_mouse_button == 1 && mouse_x_pos >= 15 && mouse_x_pos <= 47 && mouse_y_pos >= 147 && mouse_y_pos <= 171 && mouse_lock == 0)
+               {
+                       res_mode = 3;
+                       mouse_lock = 1;
+               }
+               // 800x600
+               else if (left_mouse_button == 1 && mouse_x_pos >= 15 && mouse_x_pos <= 47 && mouse_y_pos >= 182 && mouse_y_pos <= 207 && mouse_lock == 0)
+               {
+                       res_mode = 4;
+                       mouse_lock = 1;
+               }
+               // 1024x768
+               else if (left_mouse_button == 1 && mouse_x_pos >= 15 && mouse_x_pos <= 47 && mouse_y_pos >= 218 && mouse_y_pos <= 242 && mouse_lock == 0)
+               {
+                       res_mode = 5;
+                       mouse_lock = 1;
+               }
+               // 1280x1024
+               else if (left_mouse_button == 1 && mouse_x_pos >= 15 && mouse_x_pos <= 47 && mouse_y_pos >= 252 && mouse_y_pos <= 278 && mouse_lock == 0)
+               {
+                       res_mode = 6;
+                       mouse_lock = 1;
+               }
+               // 1600x1200
+               else if (left_mouse_button == 1 && mouse_x_pos >= 15 && mouse_x_pos <= 47 && mouse_y_pos >= 290 && mouse_y_pos <= 315 && mouse_lock == 0)
+               {
+                       res_mode = 7;
+                       mouse_lock = 1;
+               }
+               break;
+       }
+
+       // scenes
+       switch(scene)
+       {
+               //-----------------------------------------//
+               // if case 0 then menus are loaded and should always be 512x384 res
+       case 0:
+
+               fullscreen = 0;                                                                         // no fullscreen in menu mode
+               demo = 0;                                                                                               // if = 1 then we are running a demo
+               scene_defaults = 0;                                                                     // make sure defaults are loaded when needed
+
+               // reset coordinates
+               transX = 0;
+               transY = 0;
+               transZ = 0;
+               rotX = 0;
+               rotY = 0;
+               rotZ = 0;
+               rot_worldX = 0;
+               rot_worldY = 0;
+               rot_worldZ = 0;
+               trans_worldX = 0;
+               trans_worldY = 0;
+               trans_worldZ = 0;
+
+               if ((glutGet(GLUT_WINDOW_X) == 0) || (glutGet(GLUT_WINDOW_Y) == 0)){glutPositionWindow(old_pos_x, old_pos_y);}
+
+               // restore menu resolution to 512x384
+               ScreenWidth = 512;                                                                      // windows width excluding boarders
+               ScreenHeight = 384;                                                                     // windows hight excluding boarders
+               glutReshapeWindow(ScreenWidth, ScreenHeight);           // changes window size
+
+               light_position_menu();                                                          // set ligth position
+
+               // rotat the resolution dial clockwize for ever if we have no score
+               if ((draw_score[0] == 0) && (draw_score[1] == 10))      // rotate dail's if first and second digit in the score was not written to
+               {
+                       res_dial_h++;
+                       res_dial_w+=2;
+               }
+               break;
+
+               //-----------------------------------------//
+               // Start of first J 35 Draken scene Physics
+               // setup scene defaults
+       case 1:
+               if (scene_defaults == 0)
+               {
+                       // Create array of 50 smoke puffs for the Draken and TU-95 contrail, evenly spaced 3.0 appart on X axis.
+                       // No need to do it more then ocne peer loop of the demo.
+                       for (int i = 0; i < 50; ++i)
+                       {
+                               contrail_draken_x[i] = i * 3;   // exhaust speed of contrail
+                               contrail_x[i] = i * 3;                  // exhaust speed of contrail
+                       }
+
+                       scene_defaults = 1;                                     // sett to 1 so we only set defaults once
+                       frames_total = 0;                                       // reset total_total frames in case benchmark has been run before
+
+                       transX = 0;
+                       transY = 0;
+                       transZ = -16;
+                       rotX = 24;
+                       rotY = -30;
+                       rotZ = 0;
+                       rot_worldX = 0;
+                       rot_worldY = 0;
+                       rot_worldZ = 0;
+                       trans_worldX = 980;
+                       trans_worldY = -0.3;
+                       trans_worldZ = 0;
+                       rot_drakenX = 0;
+                       rot_drakenY = 0;
+                       rot_drakenZ = 0;
+                       trans_drakenX = 0;
+                       trans_drakenY = 0;
+                       trans_drakenZ = 0;
+                       draken_velocity = 0.3;
+                       draken_wheels = 1;
+                       draken_ab_on = 1;
+                       draken_contrail = 0;
+                       draw_ground2 = 1;
+
+                       // set ligth position
+                       light_position_skybox1();
+
+                       //record when benchmark started
+                       bench_start_time = glutGet(GLUT_ELAPSED_TIME);
+               }
+               // accelerate the plane
+               if (glutGet(GLUT_ELAPSED_TIME) - bench_start_time < 7500)
+               {
+                       draken_velocity = (draken_velocity + (0.00035 * diff_time ));
+                       trans_worldX = trans_worldX - ((draken_velocity / 21) * diff_time);
+               }
+               // V1 rotate
+               else if (glutGet(GLUT_ELAPSED_TIME) - bench_start_time > 7500 && glutGet(GLUT_ELAPSED_TIME) - bench_start_time < 9500)
+               {
+                       rot_drakenZ = rot_drakenZ + (0.0021 * diff_time);
+                       trans_worldX = trans_worldX - (0.13 * diff_time);
+               }
+               // lift off and gear up
+               else if (glutGet(GLUT_ELAPSED_TIME) - bench_start_time > 9500 && glutGet(GLUT_ELAPSED_TIME) - bench_start_time < 11500)
+               {
+                       rotY = 90;
+                       rotZ = 20;
+                       trans_worldY = trans_worldY - (0.003 * diff_time);
+                       draken_wheels = 0;
+                       trans_worldX = trans_worldX - (0.13 * diff_time);
+               }
+               // role to the left and glimb
+               else if (glutGet(GLUT_ELAPSED_TIME) - bench_start_time > 11500 && glutGet(GLUT_ELAPSED_TIME) - bench_start_time < 15500)
+               {
+                       rotX = 0;
+                       rotY = -30;
+                       rotZ = 0;
+                       trans_worldY = trans_worldY - (0.003 * diff_time);
+                       rot_drakenX = rot_drakenX - (0.005 * diff_time);
+                       trans_worldX = trans_worldX - (0.13 * diff_time);
+               }
+               // role rigth and pull up and increas clime rate
+               else if (glutGet(GLUT_ELAPSED_TIME) - bench_start_time > 15500 && glutGet(GLUT_ELAPSED_TIME) - bench_start_time < 17500)
+               {
+                       trans_worldY = trans_worldY - (0.007 * diff_time);
+                       rot_drakenX = rot_drakenX + (0.005 * diff_time);
+                       transZ = transZ - (0.00478 * diff_time);
+                       rotY = rotY + (0.06 * diff_time);
+                       rot_drakenZ = rot_drakenZ + (0.0286 * diff_time);
+                       trans_drakenY = trans_drakenY + (0.0045 * diff_time);
+                       trans_worldX = trans_worldX - (00.13 * diff_time);
+               }
+               // pull up even more for higher angle of attack for maximm climbe rate
+               else if (glutGet(GLUT_ELAPSED_TIME) - bench_start_time > 17500 && glutGet(GLUT_ELAPSED_TIME) - bench_start_time < 18100)
+               {
+                       trans_worldY = trans_worldY - (0.03 * diff_time);
+                       trans_drakenY = trans_drakenY + (0.025 * diff_time);
+                       rot_drakenX = rot_drakenX + (0.02 * diff_time);
+                       rot_drakenZ = rot_drakenZ + (0.0286 * diff_time);
+                       trans_worldX = trans_worldX - (0.13 * diff_time);
+               }
+               // Goto Scene 2
+               else if (glutGet(GLUT_ELAPSED_TIME) - bench_start_time > 18100)
+               {
+                       scene = 2;              // goto scene 2
+                       scene_defaults = 0;     // make sure defaults are loaded
+               }
+               break;
+               // End of first J 35 Draken scene Physics
+
+               //-----------------------------------------//
+
+               // Start of second J 35 Draken scene Physics
+               // setup scene defaults
+       case 2:
+               if (scene_defaults == 0)
+               {
+                       scene_defaults = 1;
+
+                       transX = 0;
+                       transY = 0;
+                       transZ = 0;
+                       rotX = 10;
+                       rotX = 0;
+                       rotY = -90;
+                       rotZ = -70;
+                       transZ = -13;
+                       rot_worldX = 0;
+                       rot_worldY = 0;
+                       rot_worldZ = 0;
+                       trans_worldX = 600;
+                       trans_worldY = -50;
+                       trans_worldZ = 0;
+                       rot_drakenX = 0;
+                       rot_drakenY = 0;
+                       rot_drakenZ = 50;
+                       trans_drakenX = 0;
+                       trans_drakenY = 0;
+                       trans_drakenZ = 0;
+                       draken_velocity = 0;
+                       draken_wheels = 0;
+                       draken_ab_on = 0;
+                       draken_contrail = 0;
+                       draw_ground2 = 1;
+
+                       // set ligth position
+                       //light_position_skybox1();     // same as previous scene
+               }
+
+               // Rotate the world and the Draken
+               if (glutGet(GLUT_ELAPSED_TIME) - bench_start_time > 18100 && glutGet(GLUT_ELAPSED_TIME) - bench_start_time < 22000)
+               {
+                       rot_drakenZ = rot_drakenZ + (0.001 * diff_time);
+                       trans_worldY = trans_worldY - (0.07 * diff_time);
+                       trans_worldX = trans_worldX - (0.21 * diff_time);
+               }
+               // Rotate the world and the Draken
+               else if (glutGet(GLUT_ELAPSED_TIME) - bench_start_time > 22000 && glutGet(GLUT_ELAPSED_TIME) - bench_start_time < 27000)
+               {
+                       draw_ground2 = 0;
+                       rotZ = rotZ + (-0.00025 * diff_time);
+                       rot_worldX = rot_worldX + (0.00175 * diff_time);
+                       rot_worldY = rot_worldY - (0.001 * diff_time);
+                       rot_drakenZ = rot_drakenZ + (0.00075 * diff_time);
+                       trans_worldX = trans_worldX - (0.21 * diff_time);
+                       trans_worldY = trans_worldY - (0.07 * diff_time);
+                       trans_worldZ = trans_worldZ - (0.01 * diff_time);
+               }
+               // Move the world and Zoom in on the plane
+               else if (glutGet(GLUT_ELAPSED_TIME) - bench_start_time > 27000 && glutGet(GLUT_ELAPSED_TIME) - bench_start_time < 28400)
+               {
+                       draw_ground2 = 0;
+                       trans_worldX = trans_worldX - (0.21 * diff_time);
+                       trans_worldY = trans_worldY - (0.07 * diff_time);
+                       trans_worldZ = trans_worldZ - (0.01 * diff_time);
+                       transZ = transZ + (0.0006 * diff_time);
+               }
+               // Goto Scene 3
+               else if (glutGet(GLUT_ELAPSED_TIME) - bench_start_time > 28400)
+               {
+                       scene = 3;              // goto scene 3
+                       scene_defaults = 0;     // make sure defaults are loaded
+               }
+               break;
+               // End of second J 35 Draken scene Physics
+
+               //-----------------------------------------//
+
+               // Start of first TU-95 scene Physics
+               // setup scene defaults
+       case 3:
+               if (scene_defaults == 0)
+               {
+                       scene_defaults = 1;
+
+                       transX = 0;
+                       transY = 0;
+                       transZ = 0;
+                       rotX = 10;
+                       rotX = 90;
+                       rotY = 90;
+                       rotZ = 0;
+                       rot_worldX = 0;
+                       rot_worldY = 0;
+                       rot_worldZ = 0;
+                       transZ = -64;
+                       trans_worldX = 0;
+                       trans_worldY = 0;
+                       trans_worldZ = 0;
+                       rot_tu95_X = 0;
+                       rot_tu95_Y = 0;
+                       rot_tu95_Z = 0;
+                       trans_tu95_X = 6;
+                       trans_tu95_Y = 0;
+                       trans_tu95_Z = 0;
+                       clouds_x = 0;
+                       r_propeller = 0;
+
+                       // set ligth position
+                       light_position_skybox2();
+               }
+
+               // Zoom in on the TU-95 Bear from above
+               if (glutGet(GLUT_ELAPSED_TIME) - bench_start_time > 28400 && glutGet(GLUT_ELAPSED_TIME) - bench_start_time < 35000)
+               {
+                       transZ = transZ + (0.002 * diff_time);
+               }
+               // Rotate the world 200 degrees to view the plane from a top side angle
+               else if (glutGet(GLUT_ELAPSED_TIME) - bench_start_time > 35000 && glutGet(GLUT_ELAPSED_TIME) - bench_start_time < 35500)
+               {
+                       rotX = 35;
+                       rotY = 200;
+                       rotZ = 0;
+                       transZ = -60;
+               }
+               // Rotate Camera around the plane
+               else if (glutGet(GLUT_ELAPSED_TIME) - bench_start_time > 35500 && glutGet(GLUT_ELAPSED_TIME) - bench_start_time < 48000)
+               {
+                       rotY = rotY + (0.02 * diff_time);
+                       rotX = rotX - (0.0065 * diff_time);
+                       transZ = -60;
+               }
+               // go to scene 4
+               else if (glutGet(GLUT_ELAPSED_TIME) - bench_start_time > 48000)
+               {
+                       scene = 4;              // goto scene 4
+                       scene_defaults = 0;     // make sure defaults are loaded
+               }
+
+               // rotat propellers routine
+               rotate_propellers();
+
+               // rutine for moving the cloud textures
+               scroll_clouds_X();
+
+               break;
+               // End of first TU-95 scene Physics
+
+               //-----------------------------------------//
+
+               // Start of third J 35 Draken scene Physics
+               // setup scene defaults
+       case 4:
+               if (scene_defaults == 0)
+               {
+                       scene_defaults = 1;
+
+                       transX = 0;
+                       transY = 0;
+                       transZ = 0;
+                       rotX = 10;
+                       rotX = 35;
+                       rotY = 190;
+                       rotZ = 0;
+                       rot_worldX = 0;
+                       rot_worldY = 0;
+                       rot_worldZ = 0;
+                       transZ = 50;
+                       trans_worldX = 0;
+                       trans_worldY = 100;
+                       trans_worldZ = -80;
+                       rot_drakenX = 0;
+                       rot_drakenY = 0;
+                       rot_drakenZ = 20;
+                       trans_drakenX = -80;
+                       trans_drakenY = -80;
+                       trans_drakenZ = 100;
+                       draken_velocity = 0;
+                       draken_wheels = 0;
+                       draken_ab_on = 1;
+                       draken_contrail = 1;
+                       clouds_x = 0;
+
+                       // set ligth position
+                       //light_position_skybox2();     // same as previous scene
+               }
+
+               // Track the Draken passing by from the left to the rigth
+               if (glutGet(GLUT_ELAPSED_TIME) - bench_start_time > 48000 && glutGet(GLUT_ELAPSED_TIME) - bench_start_time < 51000)
+               {
+                       trans_drakenY = trans_drakenY + (0.02 * diff_time);
+                       trans_drakenX = trans_drakenX + (0.04 * diff_time);
+                       rotX = rotX - (0.007 * diff_time);
+                       rotY = rotY - (0.004 * diff_time);
+                       transZ = transZ + (0.007 * diff_time);
+               }
+               // go to scene 5
+               else if (glutGet(GLUT_ELAPSED_TIME) - bench_start_time > 51000)
+               {
+                       scene = 5;              // goto scene 5
+                       scene_defaults = 0;     // make sure defaults are loaded
+               }
+
+               // rutine for moving the cloud textures
+               scroll_clouds_X();
+
+               // move J-35 Draken contrail
+               move_draken_contrail();
+
+               break;
+               // End of third J 35 Draken scene Physics
+
+               //-----------------------------------------//
+
+               // Start of first scene with Draken and TU-95
+               // setup scene defaults
+       case 5:
+               if (scene_defaults == 0)
+               {
+                       scene_defaults = 1;
+
+                       transX = 0;
+                       transY = 0;
+                       transZ = 0;
+                       rotX = 10;
+                       rotX = 0;
+                       rotY = 90;
+                       rotZ = 2;
+                       rot_worldX = 0;
+                       rot_worldY = 0;
+                       rot_worldZ = 0;
+                       transZ = -5;
+                       trans_worldX = 0;
+                       trans_worldY = 0;
+                       trans_worldZ = 0;
+                       rot_drakenX = 0;
+                       rot_drakenY = 0;
+                       rot_drakenZ = 0;
+                       trans_drakenX = -0;
+                       trans_drakenY = -4;
+                       trans_drakenZ = -1.4;
+                       draken_velocity = 0;
+                       draken_wheels = 0;
+                       draken_ab_on = 0;
+                       draken_contrail = 0;
+                       rot_tu95_X = 0;
+                       rot_tu95_Y = 0;
+                       rot_tu95_Z = 0;
+                       trans_tu95_X = 150;
+                       trans_tu95_Y = 15;
+                       trans_tu95_Z = 50;
+                       clouds_x = 0;
+                       r_propeller = 0;
+                       clouds_x = 0;
+
+                       // set ligth position
+                       //light_position_skybox2();     // same as previous scene
+               }
+
+               // camera hugs the Draken rigth wing, draken aprotching TU-95 on its left side from the rear
+               if (glutGet(GLUT_ELAPSED_TIME) - bench_start_time > 51000 && glutGet(GLUT_ELAPSED_TIME) - bench_start_time < 53000)
+               {
+                       trans_tu95_X = trans_tu95_X - (0.02 * diff_time);
+               }
+               // camera rotatest to the rigth to track the TU-95
+               else if (glutGet(GLUT_ELAPSED_TIME) - bench_start_time > 53000 && glutGet(GLUT_ELAPSED_TIME) - bench_start_time < 55000)
+               {
+                       trans_tu95_X = trans_tu95_X - (0.015 * diff_time);
+                       rotY = rotY + (0.007 * diff_time);
+                       trans_drakenZ = trans_drakenZ - (0.0005 * diff_time);
+               }
+               // camera keeps rotatest to the rigth and pans up to track the TU-95
+               else if (glutGet(GLUT_ELAPSED_TIME) - bench_start_time > 55000 && glutGet(GLUT_ELAPSED_TIME) - bench_start_time < 57000)
+               {
+                       trans_tu95_X = trans_tu95_X - (0.01 * diff_time);
+                       rotY = rotY + (0.007 * diff_time);
+                       rotX = rotX - (0.004 * diff_time);
+                       trans_drakenZ = trans_drakenZ - (0.0005 * diff_time);
+                       trans_drakenY = trans_drakenY - (0.0002 * diff_time);
+               }
+               // go to scene 1
+               else if (glutGet(GLUT_ELAPSED_TIME) - bench_start_time > 57000)
+               {
+                       scene = 6;              // goto scene 6
+                       scene_defaults = 0;     // make sure defaults are loaded
+               }
+
+               // rotat propellers routine
+               rotate_propellers();
+
+               // rutine for moving the cloud textures
+               scroll_clouds_X();
+
+               // move J-35 Draken contrail
+               move_draken_contrail();
+
+               break;
+               // End of first Draken & TU-95 Physics Scenen
+
+               //-----------------------------------------//
+
+               // Start of second scene with Draken and TU-95
+               // setup scene defaults
+       case 6:
+               if (scene_defaults == 0)
+               {
+                       scene_defaults = 1;
+
+                       transX = 0;
+                       transY = 0;
+                       transZ = 0;
+                       rotX = 10;
+                       rotX = 20;
+                       rotY = -40;
+                       rotZ = 0;
+                       rot_worldX = 0;
+                       rot_worldY = 0;
+                       rot_worldZ = 0;
+                       transZ = 1.5;
+                       trans_worldX = 0;
+                       trans_worldY = 0;
+                       trans_worldZ = 0;
+                       rot_drakenX = 0;
+                       rot_drakenY = 0;
+                       rot_drakenZ = 0;
+                       trans_drakenX = -120;
+                       trans_drakenY = -30;
+                       trans_drakenZ = -50;
+                       draken_velocity = 0;
+                       draken_wheels = 0;
+                       draken_ab_on = 0;
+                       draken_contrail = 1;
+                       rot_tu95_X = 0;
+                       rot_tu95_Y = 0;
+                       rot_tu95_Z = 0;
+                       trans_tu95_X = -12;
+                       trans_tu95_Y = -0.5;
+                       trans_tu95_Z = 0;
+                       clouds_x = 0;
+                       r_propeller = 0;
+                       clouds_x = 0;
+
+                       // set ligth position
+                       //light_position_skybox2();     // same as previous scene
+               }
+
+               // Draken spotted from the TU-95 rigth wing, tracking Draken
+               if (glutGet(GLUT_ELAPSED_TIME) - bench_start_time > 57000 && glutGet(GLUT_ELAPSED_TIME) - bench_start_time < 62000)
+               {
+                       trans_drakenX = trans_drakenX + (0.02 * diff_time);
+                       rotX = rotX + (0.002 * diff_time);
+                       rotY = rotY + (0.002 * diff_time);
+               }
+               // Draken spotted from the TU-95 rigth wing, tracking Draken
+               else if (glutGet(GLUT_ELAPSED_TIME) - bench_start_time > 62000 && glutGet(GLUT_ELAPSED_TIME) - bench_start_time < 65500)
+               {
+                       trans_drakenX = trans_drakenX + (0.015 * diff_time);
+                       rotX = rotX + (0.001 * diff_time);
+                       rotY = rotY + (0.015 * diff_time);
+               }
+
+               // go to scene 1
+               else if (glutGet(GLUT_ELAPSED_TIME) - bench_start_time > 65500)
+               {
+                       scene = 7;                      // goto scene 7
+                       scene_defaults = 0;     // make sure defaults are loaded
+               }
+
+               // rotat propellers routine
+               rotate_propellers();
+
+               // rutine for moving the cloud textures
+               scroll_clouds_X();
+
+               // move J-35 Draken contrail
+               move_draken_contrail();
+
+               break;
+               // End of second Draken & TU-95 Physics Scenen
+
+               //-----------------------------------------//
+
+               // Start of third scene with Draken and TU-95
+               // setup scene defaults
+       case 7:
+               if (scene_defaults == 0)
+               {
+                       scene_defaults = 1;
+
+                       transX = 0;
+                       transY = 0;
+                       transZ = 0;
+                       rotX = 10;
+                       rotX = 0;
+                       rotY = 190;
+                       rotZ = 0;
+                       rot_worldX = 0;
+                       rot_worldY = 0;
+                       rot_worldZ = 0;
+                       transZ = -60;
+                       trans_worldX = 0;
+                       trans_worldY = 0;
+                       trans_worldZ = 0;
+                       rot_drakenX = 0;
+                       rot_drakenY = 0;
+                       rot_drakenZ = 0;
+                       trans_drakenX = 0;
+                       trans_drakenY = -15;
+                       trans_drakenZ = -35;
+                       draken_velocity = 0;
+                       draken_wheels = 0;
+                       draken_ab_on = 0;
+                       draken_contrail = 1;
+                       rot_tu95_X = 0;
+                       rot_tu95_Y = 0;
+                       rot_tu95_Z = 0;
+                       trans_tu95_X = -20;
+                       trans_tu95_Y = 10;
+                       trans_tu95_Z = 30;
+                       clouds_x = 0;
+                       r_propeller = 0;
+                       clouds_x = 0;
+
+                       // set ligth position
+                       //light_position_skybox2();     // same as previous scene
+               }
+
+               // Draken slowly climbind and rotating in to position next to TU-95 left side
+               if (glutGet(GLUT_ELAPSED_TIME) - bench_start_time > 65500 && glutGet(GLUT_ELAPSED_TIME) - bench_start_time < 68500)
+               {
+                       trans_drakenY = trans_drakenY + (0.002 * diff_time);
+                       trans_drakenX = trans_drakenX + (0.001 * diff_time);
+                       trans_drakenZ = trans_drakenZ + (0.0005 * diff_time);
+                       rot_drakenX = rot_drakenX + (0.006 * diff_time);
+                       trans_tu95_X = trans_tu95_X - (0.002 * diff_time);
+               }
+               // Draken slowly climbind and rotating in to position next to TU-95 left side
+               else if (glutGet(GLUT_ELAPSED_TIME) - bench_start_time > 68500 && glutGet(GLUT_ELAPSED_TIME) - bench_start_time < 71500)
+               {
+                       trans_drakenY = trans_drakenY + (0.002 * diff_time);
+                       trans_drakenX = trans_drakenX + (0.001 * diff_time);
+                       trans_drakenZ = trans_drakenZ + (0.001 * diff_time);
+                       rot_drakenX = rot_drakenX + (0.002 * diff_time);
+                       trans_tu95_X = trans_tu95_X - (0.002 * diff_time);
+               }
+               // Draken slowly climbind and rotating in to position next to TU-95 left side
+               else if (glutGet(GLUT_ELAPSED_TIME) - bench_start_time > 71500 && glutGet(GLUT_ELAPSED_TIME) - bench_start_time < 73000)
+               {
+                       rotX = 25;
+                       rotY = 10;
+                       transZ = -70;
+                       trans_drakenY = trans_drakenY + (0.001 * diff_time);
+                       trans_drakenX = trans_drakenX + (0.001 * diff_time);
+                       trans_drakenZ = trans_drakenZ + (0.004 * diff_time);
+                       rot_drakenX = rot_drakenX - (0.007 * diff_time);
+                       trans_tu95_X = trans_tu95_X + (0.0005 * diff_time);
+               }
+               // Draken slowly climbind and rotating in to position next to TU-95 left side
+               else if (glutGet(GLUT_ELAPSED_TIME) - bench_start_time > 73000 && glutGet(GLUT_ELAPSED_TIME) - bench_start_time < 74500)
+               {
+                       trans_drakenY = trans_drakenY + (0.001 * diff_time);
+                       trans_drakenX = trans_drakenX + (0.0008 * diff_time);
+                       trans_drakenZ = trans_drakenZ + (0.003 * diff_time);
+                       rot_drakenX = rot_drakenX - (0.014 * diff_time);
+                       trans_tu95_X = trans_tu95_X + (0.0003 * diff_time);
+               }
+               // Rotate the world 220 degrees on Y axis to view the plane from a top side angle of 55 degres on X axis
+               else if (glutGet(GLUT_ELAPSED_TIME) - bench_start_time > 74500 && glutGet(GLUT_ELAPSED_TIME) - bench_start_time < 74750)
+               {
+                       rotX = 55;
+                       rotY = 220;
+                       rotZ = 0;
+                       transZ = -80;
+                       rot_drakenX = 0;
+                       trans_drakenX = 10;
+                       trans_drakenY = -7;
+                       trans_drakenZ = -35;
+                       trans_tu95_X = 0;
+                       trans_tu95_Z = 15;
+               }
+               // Rotate Camera around the planes
+               else if (glutGet(GLUT_ELAPSED_TIME) - bench_start_time > 74750 && glutGet(GLUT_ELAPSED_TIME) - bench_start_time < 90000)
+               {
+                       rotY = rotY + (0.023 * diff_time);
+                       rotX = rotX - (0.0035 * diff_time);
+                       transZ = transZ + (0.001 * diff_time);
+               }
+               // go to scene 1
+               else if (glutGet(GLUT_ELAPSED_TIME) - bench_start_time > 90000)
+               {
+                       scene = 8;              // goto scene 8
+                       scene_defaults = 0;     // make sure defaults are loaded
+               }
+               // routine for rotating the propellers
+               rotate_propellers();
+
+               // rutine for moving the cloud textures
+               scroll_clouds_X();
+
+               // move J-35 Draken contrail
+               move_draken_contrail();
+
+               break;
+               // End of third Draken & TU-95 Physics Scenen
+
+               //-----------------------------------------//
+
+               // Start of second TU-95 scene
+               // setup scene defaults
+       case 8:
+               if (scene_defaults == 0)
+               {
+                       scene_defaults = 1;
+
+                       transX = 0;
+                       transY = 0;
+                       transZ = 0;
+                       rotX = 10;
+                       rotY = 190;
+                       rotZ = 0;
+                       rot_worldX = 0;
+                       rot_worldY = 0;
+                       rot_worldZ = 0;
+                       transZ = -55;
+                       trans_worldX = 0;
+                       trans_worldY = 0;
+                       trans_worldZ = 0;
+                       rot_tu95_X = 5;
+                       rot_tu95_Y = 0;
+                       rot_tu95_Z = 0;
+                       trans_tu95_X = 10;
+                       trans_tu95_Y = 8;
+                       trans_tu95_Z = 0;
+                       clouds_x = 0;
+                       r_propeller = 0;
+                       clouds_x = 0;
+
+                       // set ligth position
+                       //light_position_skybox2();     // same as previous scene
+               }
+
+               // TU-95 roles to the rigth to start its rigth turn to head home to base
+               if (glutGet(GLUT_ELAPSED_TIME) - bench_start_time > 90000 && glutGet(GLUT_ELAPSED_TIME) - bench_start_time < 92000)
+               {
+                       rot_tu95_X = rot_tu95_X + (0.003 * diff_time);
+                       rot_tu95_Z = rot_tu95_Z + (0.0004 * diff_time);
+                       trans_tu95_X = trans_tu95_X - (0.0005 * diff_time);
+                       trans_tu95_Z = trans_tu95_Z + (0.0004 * diff_time);
+                       transZ = transZ - (0.0005 * diff_time);
+                       rotY = rotY - (0.0002 * diff_time);
+               }
+               else if (glutGet(GLUT_ELAPSED_TIME) - bench_start_time > 92000 && glutGet(GLUT_ELAPSED_TIME) - bench_start_time < 94000)
+               {
+                       rot_tu95_X = rot_tu95_X + (0.002 * diff_time);
+                       rot_tu95_Y = rot_tu95_Y - (0.0005 * diff_time);
+                       rot_tu95_Z = rot_tu95_Z + (0.0006 * diff_time);
+                       trans_tu95_X = trans_tu95_X - (0.0008 * diff_time);
+                       trans_tu95_Z = trans_tu95_Z + (0.0008 * diff_time);
+                       transZ = transZ - (0.001 * diff_time);
+                       rotY = rotY - (0.0004 * diff_time);
+               }
+               else if (glutGet(GLUT_ELAPSED_TIME) - bench_start_time > 94000 && glutGet(GLUT_ELAPSED_TIME) - bench_start_time < 95000)
+               {
+                       rot_tu95_X = rot_tu95_X + (0.001 * diff_time);
+                       rot_tu95_Y = rot_tu95_Y - (0.001 * diff_time);
+                       rot_tu95_Z = rot_tu95_Z + (0.0003 * diff_time);
+                       trans_tu95_X = trans_tu95_X - (0.0011 * diff_time);
+                       trans_tu95_Z = trans_tu95_Z + (0.0012 * diff_time);
+                       transZ = transZ - (0.0015 * diff_time);
+                       rotY = rotY - (0.0007 * diff_time);
+               }
+               else if (glutGet(GLUT_ELAPSED_TIME) - bench_start_time > 95000 && glutGet(GLUT_ELAPSED_TIME) - bench_start_time < 96000)
+               {
+                       rot_tu95_X = rot_tu95_X + (0.0008 * diff_time);
+                       rot_tu95_Y = rot_tu95_Y - (0.0015 * diff_time);
+                       rot_tu95_Z = rot_tu95_Z + (0.0002 * diff_time);
+                       trans_tu95_X = trans_tu95_X - (0.0014 * diff_time);
+                       trans_tu95_Z = trans_tu95_Z + (0.0016 * diff_time);
+                       transZ = transZ - (0.002 * diff_time);
+                       rotY = rotY - (0.0007 * diff_time);
+               }
+               else if (glutGet(GLUT_ELAPSED_TIME) - bench_start_time > 96000 && glutGet(GLUT_ELAPSED_TIME) - bench_start_time < 97000)
+               {
+                       rot_tu95_Y = rot_tu95_Y - (0.002 * diff_time);
+                       rot_tu95_Z = rot_tu95_Z + (0.00025 * diff_time);
+                       trans_tu95_X = trans_tu95_X - (0.002 * diff_time);
+                       trans_tu95_Z = trans_tu95_Z + (0.0024 * diff_time);
+                       transZ = transZ - (0.002 * diff_time);
+                       rotY = rotY - (0.001 * diff_time);
+               }
+               else if (glutGet(GLUT_ELAPSED_TIME) - bench_start_time > 97000 && glutGet(GLUT_ELAPSED_TIME) - bench_start_time < 100000)
+               {
+                       rot_tu95_Y = rot_tu95_Y - (0.0025 * diff_time);
+                       rot_tu95_Z = rot_tu95_Z + (0.0004 * diff_time);
+                       trans_tu95_X = trans_tu95_X - (0.0026 * diff_time);
+                       trans_tu95_Z = trans_tu95_Z + (0.003 * diff_time);
+                       transZ = transZ - (0.002 * diff_time);
+                       rotY = rotY - (0.001 * diff_time);
+               }
+               else if (glutGet(GLUT_ELAPSED_TIME) - bench_start_time > 100000 && glutGet(GLUT_ELAPSED_TIME) - bench_start_time < 104000)
+               {
+                       rot_tu95_Y = rot_tu95_Y - (0.003 * diff_time);
+                       rot_tu95_Z = rot_tu95_Z + (0.00050 * diff_time);
+                       trans_tu95_X = trans_tu95_X - (0.0034 * diff_time);
+                       trans_tu95_Z = trans_tu95_Z + (0.0038 * diff_time);
+                       transZ = transZ - (0.002 * diff_time);
+                       rotY = rotY - (0.0015 * diff_time);
+               }
+               // go to scene 9
+               else if (glutGet(GLUT_ELAPSED_TIME) - bench_start_time > 104000)
+               {
+                       scene = 9;              // goto scene 1
+                       scene_defaults = 0;     // make sure defaults are loaded
+               }
+
+               // routine for rotating the propellers
+               rotate_propellers();
+
+               // rutine for moving the cloud textures
+               scroll_clouds_X();
+
+               break;
+               // End of second TU-95 scene
+
+               //-----------------------------------------//
+
+               // Start of fourth scene with Draken and TU-95
+               // setup scene defaults
+       case 9:
+               if (scene_defaults == 0)
+               {
+                       scene_defaults = 1;
+
+                       transX = -30;
+                       transY = 0;
+                       transZ = 0;
+                       rotX = 15;
+                       rotY = 230;
+                       rotZ = 0;
+                       rot_worldX = 0;
+                       rot_worldY = 0;
+                       rot_worldZ = 0;
+                       transZ = -80;
+                       trans_worldX = 0;
+                       trans_worldY = 0;
+                       trans_worldZ = 0;
+                       rot_drakenX = 0;
+                       rot_drakenY = 0;
+                       rot_drakenZ = 0;
+                       trans_drakenX = 0.5;
+                       trans_drakenY = 5;
+                       trans_drakenZ = -35;
+                       draken_velocity = 0;
+                       draken_wheels = 0;
+                       draken_ab_on = 0;
+                       draken_contrail = 1;
+                       rot_tu95_X = 15;
+                       rot_tu95_Y = -20;
+                       rot_tu95_Z = 5;
+                       trans_tu95_X = -10;
+                       trans_tu95_Y = 10;
+                       trans_tu95_Z = 50;
+                       clouds_x = 0;
+                       r_propeller = 0;
+                       clouds_x = 0;
+
+                       // set ligth position
+                       //light_position_skybox2();     // same as previous scene
+               }
+
+               // Draken roles to the left and disengaged the TU-95
+               if (glutGet(GLUT_ELAPSED_TIME) - bench_start_time > 104000 && glutGet(GLUT_ELAPSED_TIME) - bench_start_time < 106000)
+               {
+                       trans_tu95_X = trans_tu95_X - (0.0034 * diff_time);
+                       trans_tu95_Z = trans_tu95_Z + (0.0034 * diff_time);
+                       rot_tu95_Y = rot_tu95_Y - (0.002 * diff_time);
+                       rot_drakenX = rot_drakenX - (0.02 * diff_time);
+                       rot_drakenZ = rot_drakenZ + (0.003 * diff_time);
+                       trans_drakenZ = trans_drakenZ - (0.01 * diff_time);
+                       trans_drakenY = trans_drakenY + (0.0038 * diff_time);
+               }
+               else if (glutGet(GLUT_ELAPSED_TIME) - bench_start_time > 106000 && glutGet(GLUT_ELAPSED_TIME) - bench_start_time < 106500)
+               {
+                       trans_tu95_X = trans_tu95_X - (0.0034 * diff_time);
+                       trans_tu95_Z = trans_tu95_Z + (0.004 * diff_time);
+                       rot_tu95_Y = rot_tu95_Y - (0.002 * diff_time);
+                       rot_drakenX = rot_drakenX - (0.015 * diff_time);
+                       rot_drakenZ = rot_drakenZ + (0.003 * diff_time);
+                       trans_drakenZ = trans_drakenZ - (0.011 * diff_time);
+                       trans_drakenY = trans_drakenY + (0.0047 * diff_time);
+               }
+               // Draken roles in to the camera
+               else if (glutGet(GLUT_ELAPSED_TIME) - bench_start_time > 106500 && glutGet(GLUT_ELAPSED_TIME) - bench_start_time < 107350)
+               {
+                       transX = 0;
+                       rotY = 180;
+                       trans_tu95_X = trans_tu95_X - (0.0034 * diff_time);
+                       trans_tu95_Z = trans_tu95_Z + (0.005 * diff_time);
+                       rot_tu95_Y = rot_tu95_Y - (0.002 * diff_time);
+                       rot_drakenX = rot_drakenX - (0.01 * diff_time);
+                       rot_drakenZ = rot_drakenZ + (0.003 * diff_time);
+                       trans_drakenZ = trans_drakenZ - (0.013 * diff_time);
+                       trans_drakenY = trans_drakenY + (0.0052 * diff_time);
+               }
+               else if (glutGet(GLUT_ELAPSED_TIME) - bench_start_time > 107350 && glutGet(GLUT_ELAPSED_TIME) - bench_start_time < 107500)
+               {
+                       trans_tu95_X = trans_tu95_X - (0.0034 * diff_time);
+                       trans_tu95_Z = trans_tu95_Z + (0.005 * diff_time);
+                       rot_tu95_Y = rot_tu95_Y - (0.002 * diff_time);
+                       rot_drakenX = rot_drakenX - (0.01 * diff_time);
+                       rot_drakenZ = rot_drakenZ + (0.003 * diff_time);
+                       trans_drakenZ = trans_drakenZ - (0.014 * diff_time);
+                       trans_drakenY = trans_drakenY + (0.0055 * diff_time);
+               }
+
+               // go to scene 1
+               else if (glutGet(GLUT_ELAPSED_TIME) - bench_start_time > 107500 && demo == 1)
+               {
+                       scene = 1;                      // sett scene to none existing scene zero
+                       menu = 0;                       // goto main menu
+                       scene_defaults = 0;     // make sure defaults are loaded
+               }
+
+               // collect benchmark data and goto main menu
+               else if (glutGet(GLUT_ELAPSED_TIME) - bench_start_time > 107500 && demo == 0)
+               {
+                       scene = 0;                                                                                                              // sett scene to none existing scene zero
+                       res_dial_w = 5;                                                                                                 // set width dail position 5 degres past 6'o clock in case we run some odd resolution
+                       res_dial_h      = 5;                                                                                            // set height dail position 5 degres past 6'o clock in case we run some odd resolution
+
+                       // move the resolution dail's to indicate what valid resolution the benchmark ran at
+                       if (glutGet(GLUT_WINDOW_WIDTH) > 1280){res_dial_w = 345;}               // if width resolution is above 1280 move dial to red area on resolution scale
+                       if (glutGet(GLUT_WINDOW_HEIGHT) > 1024){res_dial_h = 345;}              // if higth resolution is above 1024 move dial to red area on resolution scale
+
+                       // move the width dial to the proper resolution on the scale
+                       switch(glutGet(GLUT_WINDOW_WIDTH))
+                       {
+                       case 320: res_dial_w = 57; break;
+                       case 400: res_dial_w = 77; break;
+                       case 512: res_dial_w = 97; break;
+                       case 640: res_dial_w = 130; break;
+                       case 800: res_dial_w = 180; break;
+                       case 1024: res_dial_w = 240; break;
+                       case 1152: res_dial_w = 275; break;
+                       case 1280: res_dial_w = 305; break;
+                       }
+                       // move the heigth dial to the proper resolution on the scale
+                       switch(glutGet(GLUT_WINDOW_HEIGHT))
+                       {
+                       case 240: res_dial_h = 39; break;
+                       case 300: res_dial_h = 51; break;
+                       case 384: res_dial_h = 72; break;
+                       case 480: res_dial_h = 90; break;
+                       case 576: res_dial_h = 110; break;
+                       case 600: res_dial_h = 118; break;
+                       case 720: res_dial_h = 155; break;
+                       case 768: res_dial_h = 170; break;
+                       case 800: res_dial_h = 180; break;
+                       case 864: res_dial_h = 197; break;
+                       case 960: res_dial_h = 225; break;
+                       case 1024: res_dial_h = 240; break;
+                       }
+
+                       menu = 1;                                                                                                               // goto main menu
+                       scene_defaults = 0;                                                                                             // make sure defaults are loaded
+
+                       // Save the score to a file
+                       save_score();
+
+                       // convert score to individual digits so we can render them later
+                       convert_score();
+               }
+
+               // routine for rotating the propellers
+               rotate_propellers();
+
+               // rutine for moving the cloud textures
+               scroll_clouds_X();
+
+               // move J-35 Draken contrail
+               move_draken_contrail();
+
+               break;
+               // End of fourth Draken & TU-95 Physics Scenen
+       }
+}
+
+// set the backgorund color
+void background_color()
+{
+       glClearColor(0.424, 0.639, 0.725, 1);
+}
+
+// Clears the current window and draws the benchmark.
+void display()
+{
+#ifdef macintosh
+       // Mac OS specific
+       // set up the viewport and the screen size
+       glViewport(0, 0, ScreenWidth,ScreenHeight );
+#endif
+
+       //get window resolution to maintain aspect ratio with gluPerspective and glOrtho
+       ScreenWidth = glutGet(GLUT_WINDOW_WIDTH);
+       ScreenHeight = glutGet(GLUT_WINDOW_HEIGHT);
+
+       //set FOV, perspective, clipping and maintan aspect ratio
+       glMatrixMode(GL_PROJECTION);
+       glLoadIdentity();
+
+       gluPerspective(60,(float)ScreenWidth/ScreenHeight,1,2048);
+       glMatrixMode(GL_MODELVIEW);
+       glLoadIdentity();
+       glutPostRedisplay();    // Post re-paint request to activate display()
+
+       // Set every pixel in the frame buffer to the current clear color.
+       //clear the depth buffer
+       glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
+       glLoadIdentity();
+       glEnable(GL_DEPTH_TEST);
+       glLoadIdentity();
+
+       //-----------------------------------------//
+
+       if (menu != 0)
+       {
+               menus();                                                                                                        // render menus
+               if (menu == 1) render_score();                                                          // render score in main menu
+       }
+
+       if (demo == 0 && scene > 0 && res_mode != 7)                                    // make sure resolution cant be changed during benchmarking
+       {
+
+               switch(res_mode)
+               {
+               case 0:
+                       if (ScreenWidth != 320 || ScreenHeight != 240)resolutions();
+                       break;
+               case 1:
+                       if (ScreenWidth != 400 || ScreenHeight != 300)resolutions();
+                       break;
+               case 2:
+                       if (ScreenWidth != 512 || ScreenHeight != 384)resolutions();
+                       break;
+               case 3:
+                       if (ScreenWidth != 640 || ScreenHeight != 480)resolutions();
+                       break;
+               case 4:
+                       if (ScreenWidth != 800 || ScreenHeight != 600)resolutions();
+                       break;
+               case 5:
+                       if (ScreenWidth != 1024 || ScreenHeight != 768)resolutions();
+                       break;
+               case 6:
+                       if (ScreenWidth != 1280 || ScreenHeight != 1024)resolutions();
+                       break;
+               }
+       }
+       // Render Scenes
+
+       // Render Skybox1 in scene 1
+       if (scene == 1 && scene_defaults == 1)
+       {
+               // rotate and translate skybox
+               glPushMatrix();
+               glTranslatef (0 , 0 + trans_worldY , 0);
+               glRotatef(rotX, 1, 0, 0);
+               glRotatef(rotY, 0, 1, 0);
+               glRotatef(rotZ, 0, 0, 1);
+               skybox1();      // render skybox1
+               glPopMatrix();
+       }
+
+       glPushMatrix();
+       // rotate and translate everything
+       glTranslatef (0 + transX, 0 + transY, 0 + transZ);
+       glRotatef(rotX, 1, 0, 0);
+       glRotatef(rotY, 0, 1, 0);
+       glRotatef(rotZ, 0, 0, 1);
+       glPushMatrix();
+
+       // rotate and translate the world but not the plane
+       glTranslatef (0 + trans_worldX, 0 + trans_worldY, 0 + trans_worldZ);
+       glRotatef(rot_worldX, 1, 0, 0);
+       glRotatef(rot_worldY, 0, 1, 0);
+       glRotatef(rot_worldZ, 0, 0, 1);
+       if (scene == 1 && scene_defaults == 1)runway();                                 // render the runway, scene 1
+       if (scene == 2 && scene_defaults == 1)ground2();                                // render ground2, scene 2
+
+       // render skybox2, scene 3, 4, 5, 6, 7 and 8
+       if (scene_defaults == 1 && scene == 3 || scene == 4 || scene == 5 || scene == 6 || scene == 7 || scene == 8 || scene == 9)skybox2();
+       glPopMatrix();
+       glPopMatrix();
+
+       glPushMatrix();
+       // rotate and translate everything
+       glTranslatef (0 + transX, 0 + transY, 0 + transZ);
+       glRotatef(rotX, 1, 0, 0);
+       glRotatef(rotY, 0, 1, 0);
+       glRotatef(rotZ, 0, 0, 1);
+
+       // rotate and translate J 35 Draken
+       glPushMatrix();
+       glTranslatef (0 + trans_drakenX, 0 + trans_drakenY, 0 + trans_drakenZ);
+       glRotatef(rot_drakenX, 1, 0, 0);
+       glRotatef(rot_drakenY, 0, 1, 0);
+       glRotatef(rot_drakenZ, 0, 0, 1);
+
+       // render the plane from j35_draken.cpp
+       // render draken in scene 1, 2, 4, 5, 6 and 7
+       if (scene_defaults == 1 && scene == 1 || scene == 2 || scene == 4 || scene == 5 || scene == 6 || scene == 7 || scene == 9)j35_draken();
+       glPopMatrix();
+
+       // rotate and translate TU-95
+       glPushMatrix();
+       glTranslatef (0 + trans_tu95_X, 0 + trans_tu95_Y, 0 + trans_tu95_Z);
+       glRotatef(rot_tu95_X, 1, 0, 0);
+       glRotatef(rot_tu95_Y, 0, 1, 0);
+       glRotatef(rot_tu95_Z, 0, 0, 1);
+
+       // render the plane from tu_95.cpp
+       // render TU-95 in scene 3, 5, 6, 7 and 8
+       if (scene_defaults == 1 && scene == 3 || scene == 5 || scene == 6 || scene == 7 || scene == 8 || scene == 9)tu_95();
+       glPopMatrix();
+
+       // update ligth
+       glLightfv(GL_LIGHT0, GL_POSITION, light_position);
+       glPopMatrix();
+
+       // render FPS counter
+       glDisable(GL_DEPTH_TEST);
+       if (scene > 0)render_fps();
+       glEnable(GL_DEPTH_TEST);
+
+       // alpha transperancy
+       glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
+
+       //we need to swap the frame buffer when we are running double buffering
+       glutSwapBuffers();
+
+       // Flush drawing command buffer to make drawing happen as soon as possible.
+       //      glFlush();
+
+
+       ++frames;               // add +1 to frame variable so we can count the number of frames rendered
+       if (scene > 0)++frames_total; // add +1 to total number of rendered frames so we can computee a score later
+}
+
+// fps counter
+void fps_timer(int)
+{
+       glutTimerFunc(1000, fps_timer, 0);      // next Timer call milliseconds later
+       fps = frames;
+       frames = 0;
+
+       // sett entrys in array to 10 so not to render any digits that is not part of the frame rate number
+       draw_fps[0] = 10;
+       draw_fps[1] = 10;
+       draw_fps[2] = 10;
+       draw_fps[3] = 10;
+       draw_fps[4] = 10;
+
+       // devide fps int into separete digits
+       fps_i = 0;
+       while (fps > 0)
+       {
+               int digit = fps%10;
+               fps /= 10;
+               //print digit
+               draw_fps[fps_i] = digit;
+               fps_i++;
+       }
+}
+
+// Initializes GLUT, the display mode, and main window; registers callbacks;
+// enters the main event loop.
+int main(int argc, char** argv)
+{
+       // set up the viewport and the screen size
+       glViewport(0, 0, ScreenWidth,ScreenHeight );
+
+       // Use a double buffered window in RGB mode
+       // Use depth buffer
+       glutInit(&argc, argv);
+
+#ifdef __linux__
+       putenv( (char *) "vblank_mode=0" );                                                                                             // Disable Vsync in linux, AMD Intel
+       putenv( (char *) "__GL_SYNC_TO_VBLANK=0" );                                                                             // Disable Vsync in linux, Nvidia
+#elif __sgi
+       putenv( (char *) "DECOUPLE_SWAPBUF y" );                                                                                // Disables swapbuffers sync to vertical blank
+#endif
+
+       //      glutInitDisplayMode(GLUT_DOUBLE | GLUT_RGB | GLUT_DEPTH | GLUT_MULTISAMPLE);    // antialasing, wont work with older glut but should work with newer freeglut
+       glutInitDisplayMode(GLUT_DOUBLE | GLUT_RGB | GLUT_DEPTH);
+
+       // Position window at 80,50 and give it a title.
+       glutInitWindowPosition(80, 50);
+       glutInitWindowSize(ScreenWidth, ScreenHeight);
+       glutCreateWindow("SAF BENCH v1.3 by Patrik.A");
+
+       // Tell GLUT that whenever the main window needs to be repainted that it
+       // should call the function display().
+       glutDisplayFunc(display);
+
+       // enable ligthting
+       glEnable(GL_LIGHTING);
+       glEnable(GL_LIGHT0);
+       glEnable(GL_COLOR_MATERIAL);
+       glEnable(GL_NORMALIZE);
+       glLightfv(GL_LIGHT0, GL_AMBIENT, light_ambient);
+
+       //set background color
+       background_color();
+
+       // glut mouse support
+       glutMouseFunc(MouseClick);
+
+       // glut keyboard support
+       glutKeyboardFunc(NormalKeys);
+
+       // time for physics and stuff
+       glutTimerFunc(0, timer, 0);
+
+       // update fps timer and terminal every
+       glutTimerFunc(0, fps_timer, 0);
+
+       // load textures
+       textures_digits();
+       textures_menus();
+       textures_draken();
+       textures_runway();
+       textures_skybox1();
+       textures_ground2();
+       textures_skybox2();
+       textures_tu_95();
+
+#ifdef _WIN32
+       // Turn off V-sync in windows
+       typedef BOOL (WINAPI *PFNWGLSWAPINTERVALEXTPROC)(int interval);
+       PFNWGLSWAPINTERVALEXTPROC wglSwapIntervalEXT = NULL;
+       wglSwapIntervalEXT = (PFNWGLSWAPINTERVALEXTPROC)wglGetProcAddress("wglSwapIntervalEXT");
+       if(wglSwapIntervalEXT)
+               wglSwapIntervalEXT(0);  // 0 = Vsync off, 1 = Vsync on
+#endif
+
+       // Tell GLUT to start reading and processing events.  This function
+       // never returns; the program only exits when the user closes the main
+       // window or kills the process.
+       glutMainLoop();
+       return 0;
+
+}
diff --git a/saf_bench.dsp b/saf_bench.dsp
new file mode 100644 (file)
index 0000000..e0e8984
--- /dev/null
@@ -0,0 +1,152 @@
+# Microsoft Developer Studio Project File - Name="saf_bench" - Package Owner=<4>\r
+# Microsoft Developer Studio Generated Build File, Format Version 6.00\r
+# ** DO NOT EDIT **\r
+\r
+# TARGTYPE "Win32 (ALPHA) Console Application" 0x0603\r
+\r
+CFG=saf_bench - Win32 AXP Release\r
+!MESSAGE This is not a valid makefile. To build this project using NMAKE,\r
+!MESSAGE use the Export Makefile command and run\r
+!MESSAGE \r
+!MESSAGE NMAKE /f "saf_bench.mak".\r
+!MESSAGE \r
+!MESSAGE You can specify a configuration when running NMAKE\r
+!MESSAGE by defining the macro CFG on the command line. For example:\r
+!MESSAGE \r
+!MESSAGE NMAKE /f "saf_bench.mak" CFG="saf_bench - Win32 AXP Release"\r
+!MESSAGE \r
+!MESSAGE Possible choices for configuration are:\r
+!MESSAGE \r
+!MESSAGE "saf_bench - Win32 AXP Release" (based on "Win32 (ALPHA) Console Application")\r
+!MESSAGE \r
+\r
+# Begin Project\r
+# PROP AllowPerConfigDependencies 0\r
+# PROP Scc_ProjName ""\r
+# PROP Scc_LocalPath ""\r
+CPP=cl.exe\r
+RSC=rc.exe\r
+# PROP BASE Use_MFC 0\r
+# PROP BASE Use_Debug_Libraries 0\r
+# PROP BASE Output_Dir "saf_bench___Win32_AXP_Release"\r
+# PROP BASE Intermediate_Dir "saf_bench___Win32_AXP_Release"\r
+# PROP BASE Ignore_Export_Lib 0\r
+# PROP BASE Target_Dir ""\r
+# PROP Use_MFC 0\r
+# PROP Use_Debug_Libraries 0\r
+# PROP Output_Dir "saf_bench___Win32_AXP_Release"\r
+# PROP Intermediate_Dir "saf_bench___Win32_AXP_Release"\r
+# PROP Ignore_Export_Lib 0\r
+# PROP Target_Dir ""\r
+# ADD BASE CPP /nologo /Gt0 /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /YX /FD /c\r
+# ADD CPP /nologo /Gt0 /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /YX /FD /c\r
+# ADD BASE RSC /l 0x41d /d "NDEBUG"\r
+# ADD RSC /l 0x41d /d "NDEBUG"\r
+BSC32=bscmake.exe\r
+# ADD BASE BSC32 /nologo\r
+# ADD BSC32 /nologo\r
+LINK32=link.exe\r
+# ADD BASE LINK32 opengl32.lib glu32.lib glut32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /subsystem:console /machine:ALPHA\r
+# ADD LINK32 opengl32.lib glu32.lib glut32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /entry:"mainCRTStartup" /subsystem:windows /machine:ALPHA\r
+# SUBTRACT LINK32 /pdb:none\r
+# Begin Target\r
+\r
+# Name "saf_bench - Win32 AXP Release"\r
+# Begin Group "Source Files"\r
+\r
+# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"\r
+# Begin Source File\r
+\r
+SOURCE=.\bmp_alpha.cpp\r
+# End Source File\r
+# Begin Source File\r
+\r
+SOURCE=.\digits.cpp\r
+# End Source File\r
+# Begin Source File\r
+\r
+SOURCE=.\ground2.cpp\r
+# End Source File\r
+# Begin Source File\r
+\r
+SOURCE=.\j35_draken.cpp\r
+# End Source File\r
+# Begin Source File\r
+\r
+SOURCE=.\menus.cpp\r
+# End Source File\r
+# Begin Source File\r
+\r
+SOURCE=.\runway.cpp\r
+# End Source File\r
+# Begin Source File\r
+\r
+SOURCE=.\saf_bench.cpp\r
+# End Source File\r
+# Begin Source File\r
+\r
+SOURCE=.\skybox1.cpp\r
+# End Source File\r
+# Begin Source File\r
+\r
+SOURCE=.\skybox2.cpp\r
+# End Source File\r
+# Begin Source File\r
+\r
+SOURCE=.\tu_95.cpp\r
+# End Source File\r
+# End Group\r
+# Begin Group "Header Files"\r
+\r
+# PROP Default_Filter "h;hpp;hxx;hm;inl"\r
+# Begin Source File\r
+\r
+SOURCE=.\bmp_alpha.h\r
+# End Source File\r
+# Begin Source File\r
+\r
+SOURCE=.\digits.h\r
+# End Source File\r
+# Begin Source File\r
+\r
+SOURCE=.\ground2.h\r
+# End Source File\r
+# Begin Source File\r
+\r
+SOURCE=.\j35_draken.h\r
+# End Source File\r
+# Begin Source File\r
+\r
+SOURCE=.\menus.h\r
+# End Source File\r
+# Begin Source File\r
+\r
+SOURCE=.\runway.h\r
+# End Source File\r
+# Begin Source File\r
+\r
+SOURCE=.\skybox1.h\r
+# End Source File\r
+# Begin Source File\r
+\r
+SOURCE=.\skybox2.h\r
+# End Source File\r
+# Begin Source File\r
+\r
+SOURCE=.\tu_95.h\r
+# End Source File\r
+# End Group\r
+# Begin Group "Resource Files"\r
+\r
+# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"\r
+# Begin Source File\r
+\r
+SOURCE=.\misc\icon.ico\r
+# End Source File\r
+# Begin Source File\r
+\r
+SOURCE=".\saf_bench.rc"\r
+# End Source File\r
+# End Group\r
+# End Target\r
+# End Project\r
diff --git a/saf_bench.dsw b/saf_bench.dsw
new file mode 100644 (file)
index 0000000..a396327
--- /dev/null
@@ -0,0 +1,29 @@
+Microsoft Developer Studio Workspace File, Format Version 6.00\r
+# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!\r
+\r
+###############################################################################\r
+\r
+Project: "saf_bench"=.\saf_bench.dsp - Package Owner=<4>\r
+\r
+Package=<5>\r
+{{{\r
+}}}\r
+\r
+Package=<4>\r
+{{{\r
+}}}\r
+\r
+###############################################################################\r
+\r
+Global:\r
+\r
+Package=<5>\r
+{{{\r
+}}}\r
+\r
+Package=<3>\r
+{{{\r
+}}}\r
+\r
+###############################################################################\r
+\r
diff --git a/saf_bench.rc b/saf_bench.rc
new file mode 100644 (file)
index 0000000..e5075ae
--- /dev/null
@@ -0,0 +1,72 @@
+// Microsoft Visual C++ generated resource script.
+//
+#include "resource.h"
+
+#define APSTUDIO_READONLY_SYMBOLS
+/////////////////////////////////////////////////////////////////////////////
+//
+// Generated from the TEXTINCLUDE 2 resource.
+//
+#include "afxres.h"
+
+/////////////////////////////////////////////////////////////////////////////
+#undef APSTUDIO_READONLY_SYMBOLS
+
+/////////////////////////////////////////////////////////////////////////////
+// English (U.S.) resources
+
+#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU)
+#ifdef _WIN32
+LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
+#pragma code_page(1252)
+#endif //_WIN32
+
+#ifdef APSTUDIO_INVOKED
+/////////////////////////////////////////////////////////////////////////////
+//
+// TEXTINCLUDE
+//
+
+1 TEXTINCLUDE 
+BEGIN
+    "resource.h\0"
+END
+
+2 TEXTINCLUDE 
+BEGIN
+    "#include ""afxres.h""\r\n"
+    "\0"
+END
+
+3 TEXTINCLUDE 
+BEGIN
+    "\r\n"
+    "\0"
+END
+
+#endif    // APSTUDIO_INVOKED
+
+
+/////////////////////////////////////////////////////////////////////////////
+//
+// Icon
+//
+
+// Icon with lowest ID value placed first to ensure application icon
+// remains consistent on all systems.
+IDI_ICON1               ICON                    "misc\\icon.ico"
+#endif    // English (U.S.) resources
+/////////////////////////////////////////////////////////////////////////////
+
+
+
+#ifndef APSTUDIO_INVOKED
+/////////////////////////////////////////////////////////////////////////////
+//
+// Generated from the TEXTINCLUDE 3 resource.
+//
+
+
+/////////////////////////////////////////////////////////////////////////////
+#endif    // not APSTUDIO_INVOKED
+
diff --git a/saf_bench.sln b/saf_bench.sln
new file mode 100644 (file)
index 0000000..7e97ffd
--- /dev/null
@@ -0,0 +1,17 @@
+
+Microsoft Visual Studio Solution File, Format Version 9.00
+# Visual Studio 2005
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SAF BENCH", "saf_bench.vcproj", "{BE2ADFD9-2233-4812-B3DC-330D08D28E90}"
+EndProject
+Global
+       GlobalSection(SolutionConfigurationPlatforms) = preSolution
+               Release|Win32 = Release|Win32
+       EndGlobalSection
+       GlobalSection(ProjectConfigurationPlatforms) = postSolution
+               {BE2ADFD9-2233-4812-B3DC-330D08D28E90}.Release|Win32.ActiveCfg = Release|Win32
+               {BE2ADFD9-2233-4812-B3DC-330D08D28E90}.Release|Win32.Build.0 = Release|Win32
+       EndGlobalSection
+       GlobalSection(SolutionProperties) = preSolution
+               HideSolutionNode = FALSE
+       EndGlobalSection
+EndGlobal
diff --git a/saf_bench.vcproj b/saf_bench.vcproj
new file mode 100644 (file)
index 0000000..2b6b350
--- /dev/null
@@ -0,0 +1,310 @@
+<?xml version="1.0" encoding="Windows-1252"?>
+<VisualStudioProject
+       ProjectType="Visual C++"
+       Version="8.00"
+       Name="SAF BENCH"
+       ProjectGUID="{BE2ADFD9-2233-4812-B3DC-330D08D28E90}"
+       RootNamespace="My Benchmark"
+       >
+       <Platforms>
+               <Platform
+                       Name="Win32"
+               />
+       </Platforms>
+       <ToolFiles>
+       </ToolFiles>
+       <Configurations>
+               <Configuration
+                       Name="Release|Win32"
+                       OutputDirectory=".\release_win9x"
+                       IntermediateDirectory=".\release_win9x"
+                       ConfigurationType="1"
+                       InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops"
+                       UseOfMFC="0"
+                       ATLMinimizesCRunTimeLibraryUsage="false"
+                       CharacterSet="2"
+                       >
+                       <Tool
+                               Name="VCPreBuildEventTool"
+                       />
+                       <Tool
+                               Name="VCCustomBuildTool"
+                       />
+                       <Tool
+                               Name="VCXMLDataGeneratorTool"
+                       />
+                       <Tool
+                               Name="VCWebServiceProxyGeneratorTool"
+                       />
+                       <Tool
+                               Name="VCMIDLTool"
+                               TypeLibraryName=".\AlphaRel/Steam_engine.tlb"
+                               HeaderFileName=""
+                       />
+                       <Tool
+                               Name="VCCLCompilerTool"
+                               AdditionalOptions="/Zm700 "
+                               Optimization="2"
+                               InlineFunctionExpansion="1"
+                               FavorSizeOrSpeed="1"
+                               OmitFramePointers="true"
+                               WholeProgramOptimization="true"
+                               PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE"
+                               StringPooling="true"
+                               RuntimeLibrary="0"
+                               EnableFunctionLevelLinking="true"
+                               FloatingPointModel="2"
+                               PrecompiledHeaderFile=".\release_win9x/Steam_engine.pch"
+                               AssemblerListingLocation=".\release_win9x/"
+                               ObjectFile=".\release_win9x/"
+                               ProgramDataBaseFileName=".\release_win9x/"
+                               WarningLevel="3"
+                               SuppressStartupBanner="true"
+                       />
+                       <Tool
+                               Name="VCManagedResourceCompilerTool"
+                       />
+                       <Tool
+                               Name="VCResourceCompilerTool"
+                               PreprocessorDefinitions="NDEBUG"
+                               Culture="1033"
+                       />
+                       <Tool
+                               Name="VCPreLinkEventTool"
+                       />
+                       <Tool
+                               Name="VCLinkerTool"
+                               AdditionalDependencies="opengl32.lib glu32.lib glut32.lib $(NOINHERIT)"
+                               OutputFile=".\release_win9x/saf_bench.exe"
+                               LinkIncremental="1"
+                               SuppressStartupBanner="true"
+                               ProgramDatabaseFile=".\release_win9x/Steam_engine.pdb"
+                               SubSystem="2"
+                               EntryPointSymbol="mainCRTStartup"
+                       />
+                       <Tool
+                               Name="VCALinkTool"
+                       />
+                       <Tool
+                               Name="VCManifestTool"
+                       />
+                       <Tool
+                               Name="VCXDCMakeTool"
+                       />
+                       <Tool
+                               Name="VCBscMakeTool"
+                               SuppressStartupBanner="true"
+                               OutputFile=".\release_win9x/Steam_engine.bsc"
+                       />
+                       <Tool
+                               Name="VCFxCopTool"
+                       />
+                       <Tool
+                               Name="VCAppVerifierTool"
+                       />
+                       <Tool
+                               Name="VCWebDeploymentTool"
+                       />
+                       <Tool
+                               Name="VCPostBuildEventTool"
+                       />
+               </Configuration>
+               <Configuration
+                       Name="Debug|Win32"
+                       OutputDirectory=".\AlphaDbg"
+                       IntermediateDirectory=".\AlphaDbg"
+                       ConfigurationType="1"
+                       InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops"
+                       UseOfMFC="0"
+                       ATLMinimizesCRunTimeLibraryUsage="false"
+                       CharacterSet="2"
+                       >
+                       <Tool
+                               Name="VCPreBuildEventTool"
+                       />
+                       <Tool
+                               Name="VCCustomBuildTool"
+                       />
+                       <Tool
+                               Name="VCXMLDataGeneratorTool"
+                       />
+                       <Tool
+                               Name="VCWebServiceProxyGeneratorTool"
+                       />
+                       <Tool
+                               Name="VCMIDLTool"
+                               TypeLibraryName=".\AlphaDbg/Steam_engine.tlb"
+                               HeaderFileName=""
+                       />
+                       <Tool
+                               Name="VCCLCompilerTool"
+                               Optimization="0"
+                               PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE"
+                               RuntimeLibrary="1"
+                               PrecompiledHeaderFile=".\AlphaDbg/Steam_engine.pch"
+                               AssemblerListingLocation=".\AlphaDbg/"
+                               ObjectFile=".\AlphaDbg/"
+                               ProgramDataBaseFileName=".\AlphaDbg/"
+                               WarningLevel="3"
+                               SuppressStartupBanner="true"
+                               DebugInformationFormat="3"
+                       />
+                       <Tool
+                               Name="VCManagedResourceCompilerTool"
+                       />
+                       <Tool
+                               Name="VCResourceCompilerTool"
+                               PreprocessorDefinitions="_DEBUG"
+                               Culture="1053"
+                       />
+                       <Tool
+                               Name="VCPreLinkEventTool"
+                       />
+                       <Tool
+                               Name="VCLinkerTool"
+                               AdditionalDependencies="odbc32.lib odbccp32.lib opengl32.lib glu32.lib glut32.lib"
+                               OutputFile=".\AlphaDbg/Steam_engine.exe"
+                               LinkIncremental="2"
+                               SuppressStartupBanner="true"
+                               GenerateDebugInformation="true"
+                               ProgramDatabaseFile=".\AlphaDbg/Steam_engine.pdb"
+                               SubSystem="1"
+                       />
+                       <Tool
+                               Name="VCALinkTool"
+                       />
+                       <Tool
+                               Name="VCManifestTool"
+                       />
+                       <Tool
+                               Name="VCXDCMakeTool"
+                       />
+                       <Tool
+                               Name="VCBscMakeTool"
+                               SuppressStartupBanner="true"
+                               OutputFile=".\AlphaDbg/Steam_engine.bsc"
+                       />
+                       <Tool
+                               Name="VCFxCopTool"
+                       />
+                       <Tool
+                               Name="VCAppVerifierTool"
+                       />
+                       <Tool
+                               Name="VCWebDeploymentTool"
+                       />
+                       <Tool
+                               Name="VCPostBuildEventTool"
+                       />
+               </Configuration>
+       </Configurations>
+       <References>
+       </References>
+       <Files>
+               <Filter
+                       Name="Source Files"
+                       Filter="cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
+                       >
+                       <File
+                               RelativePath=".\bmp_alpha.cpp"
+                               >
+                       </File>
+                       <File
+                               RelativePath=".\digits.cpp"
+                               >
+                       </File>
+                       <File
+                               RelativePath=".\ground2.cpp"
+                               >
+                       </File>
+                       <File
+                               RelativePath=".\j35_draken.cpp"
+                               >
+                       </File>
+                       <File
+                               RelativePath=".\menus.cpp"
+                               >
+                       </File>
+                       <File
+                               RelativePath=".\runway.cpp"
+                               >
+                       </File>
+                       <File
+                               RelativePath=".\saf_bench.rc"
+                               >
+                       </File>
+                       <File
+                               RelativePath=".\saf_bench.cpp"
+                               >
+                       </File>
+                       <File
+                               RelativePath=".\skybox1.cpp"
+                               >
+                       </File>
+                       <File
+                               RelativePath=".\skybox2.cpp"
+                               >
+                       </File>
+                       <File
+                               RelativePath=".\tu_95.cpp"
+                               >
+                       </File>
+               </Filter>
+               <Filter
+                       Name="Header Files"
+                       Filter="h;hpp;hxx;hm;inl"
+                       >
+                       <File
+                               RelativePath=".\bmp_alpha.h"
+                               >
+                       </File>
+                       <File
+                               RelativePath=".\digits.h"
+                               >
+                       </File>
+                       <File
+                               RelativePath=".\ground2.h"
+                               >
+                       </File>
+                       <File
+                               RelativePath=".\j35_draken.h"
+                               >
+                       </File>
+                       <File
+                               RelativePath=".\menus.h"
+                               >
+                       </File>
+                       <File
+                               RelativePath=".\resource.h"
+                               >
+                       </File>
+                       <File
+                               RelativePath=".\runway.h"
+                               >
+                       </File>
+                       <File
+                               RelativePath=".\skybox1.h"
+                               >
+                       </File>
+                       <File
+                               RelativePath=".\skybox2.h"
+                               >
+                       </File>
+                       <File
+                               RelativePath=".\tu_95.h"
+                               >
+                       </File>
+               </Filter>
+               <Filter
+                       Name="Resource Files"
+                       Filter="ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
+                       >
+                       <File
+                               RelativePath=".\misc\icon.ico"
+                               >
+                       </File>
+               </Filter>
+       </Files>
+       <Globals>
+       </Globals>
+</VisualStudioProject>
diff --git a/skybox1.cpp b/skybox1.cpp
new file mode 100644 (file)
index 0000000..6b91be4
--- /dev/null
@@ -0,0 +1,101 @@
+// License information.
+// The Software "SAF BENCH" was written by Patrik.A, also known as Nitton Attiofyra
+// on YouTube. (https://www.youtube.com/@NittonAttiofyra)
+
+// The software is released in to the Public Domain and comes with no warranty and is used
+// at your own risk!
+
+#include <stdlib.h> // VS 2005 wont compile it if its noth placed here, need to investigate
+#ifdef macintosh
+#include <glut.h>
+#include <gl.h>
+#include <glu.h>
+#else
+#include <GL/glut.h>
+#include <GL/gl.h>
+#include <GL/glu.h>
+#endif
+#include <iostream>
+#include "bmp_alpha.h"
+#include "skybox1.h"
+
+#define for if(0);else for     // C2374 VC6++ on Alpha bug
+
+static GLuint texture_sky1;
+
+
+void textures_skybox1()
+{
+#ifdef macintosh
+       texture_sky1 = LoadTexture(":textures:runway:sky1.bmp" , 256, 256);
+#else
+       texture_sky1 = LoadTexture("textures/runway/sky1.bmp" , 256, 256);
+#endif
+}
+
+void skybox1()
+{
+       glDisable(GL_LIGHTING);
+       glDisable(GL_LIGHT0);
+
+       // enable blending
+       //      glEnable(GL_BLEND);
+
+       // Enable culling. Remove one side of the polygons, back or front.
+       glEnable(GL_CULL_FACE);
+       glCullFace(GL_BACK);
+
+       //draw texture
+       glBindTexture( GL_TEXTURE_2D, texture_sky1 );
+       glEnable(GL_TEXTURE_2D);
+       //      glDepthMask(GL_FALSE);
+       //      glDisable(GL_DEPTH_TEST);
+
+       // left side of skybox relative to start of demo
+       glBegin(GL_QUADS);
+       glTexCoord2f(.005,.995);glVertex3f(-800, 700, -800);
+       glTexCoord2f(.995,.995);glVertex3f(-800, 700, 800);
+       glTexCoord2f(.995,.005);glVertex3f(-800, -5, 800);
+       glTexCoord2f(0,.005);glVertex3f(-800, -5, -800);
+       glEnd();
+
+       //front side of skybox realtive to start of demo
+       glBegin(GL_QUADS);
+       glTexCoord2f(0,.005);glVertex3f(-800, -5, -800);
+       glTexCoord2f(.995,.005);glVertex3f(800, -5, -800);
+       glTexCoord2f(.995,.995);glVertex3f(800, 700, -800);
+       glTexCoord2f(.005,.995);glVertex3f(-800, 700, -800);
+       glEnd();
+
+       // right side of skybox relative to start of demo
+       glBegin(GL_QUADS);
+       glTexCoord2f(0,.005);glVertex3f(800, -5, -800);
+       glTexCoord2f(.995,.005);glVertex3f(800, -5, 800);
+       glTexCoord2f(.995,.995);glVertex3f(800, 700, 800);
+       glTexCoord2f(.005,.995);glVertex3f(800, 700, -800);
+       glEnd();
+
+       //rear side of skybox realtive to start of demo
+       glBegin(GL_QUADS);
+       glTexCoord2f(.005,.995);glVertex3f(-800, 700, 800);
+       glTexCoord2f(.995,.995);glVertex3f(800, 700, 800);
+       glTexCoord2f(.995,.005);glVertex3f(800, -5, 800);
+       glTexCoord2f(0,.005);glVertex3f(-800, -5, 800);
+       glEnd();
+
+       //      glDepthMask(GL_TRUE);
+       //      glEnable(GL_DEPTH_TEST);
+
+       // disable texture
+       glDisable(GL_TEXTURE_2D);
+
+       // disable culling
+       glDisable(GL_CULL_FACE);
+
+       // disable blending
+       //      glDisable (GL_BLEND);
+
+       glEnable(GL_LIGHTING);
+       glEnable(GL_LIGHT0);
+
+}
diff --git a/skybox1.h b/skybox1.h
new file mode 100644 (file)
index 0000000..00a84fd
--- /dev/null
+++ b/skybox1.h
@@ -0,0 +1,14 @@
+#ifndef SKYBOX1_H_
+#define SKYBOX1_H_
+
+// License information.
+// The Software "SAF BENCH" was written by Patrik.A, also known as Nitton Attiofyra
+// on YouTube. (https://www.youtube.com/@NittonAttiofyra)
+
+// The software is released in to the Public Domain and comes with no warranty and is used
+// at your own risk!
+
+void textures_skybox1();
+void skybox1();
+
+#endif /* SKYBOX1_H_ */
diff --git a/skybox2.cpp b/skybox2.cpp
new file mode 100644 (file)
index 0000000..8629371
--- /dev/null
@@ -0,0 +1,206 @@
+// License information.
+// The Software "SAF BENCH" was written by Patrik.A, also known as Nitton Attiofyra
+// on YouTube. (https://www.youtube.com/@NittonAttiofyra)
+
+// The software is released in to the Public Domain and comes with no warranty and is used
+// at your own risk!
+
+#include <stdlib.h> // VS 2005 wont compile it if its noth placed here, need to investigate
+#ifdef macintosh
+#include <glut.h>
+#include <gl.h>
+#include <glu.h>
+#else
+#include <GL/glut.h>
+#include <GL/gl.h>
+#include <GL/glu.h>
+#endif
+#include <iostream>
+#include "bmp_alpha.h"
+#include "skybox2.h"
+
+#define for if(0);else for     // C2374 VC6++ on Alpha bug
+
+float modelview_sun[16];               // used for billboarding
+static GLuint texture_sky2, texture_sky2_ground,texture_sky2_top, texture_sky2_cloud_border;
+static GLuint texture_sky2_cloudl1, texture_sky2_cloudl2, texture_sky2_cloudl3, texture_sky2_sun;
+GLfloat clouds_x;              // move the cloud textures
+
+void textures_skybox2()
+{
+#ifdef macintosh
+       texture_sky2 = LoadTexture(":textures:sky2:sky2.bmp" , 256, 256);
+       texture_sky2_ground = LoadTexture(":textures:sky2:sky2_ground.bmp" , 256, 256);
+       texture_sky2_top = LoadTexture(":textures:sky2:sky2_top.bmp" , 256, 256);
+       texture_sky2_cloud_border = LoadTexture(":textures:sky2:sky2_cloud_border.bmp" , 256, 256);
+       texture_sky2_cloudl1 = LoadTexture(":textures:sky2:sky2_cloudl1.bmp" , 256, 256);
+       texture_sky2_cloudl2 = LoadTexture(":textures:sky2:sky2_cloudl2.bmp" , 256, 256);
+       texture_sky2_cloudl3 = LoadTexture(":textures:sky2:sky2_cloudl3.bmp" , 256, 256);
+       texture_sky2_sun = LoadTexture(":textures:sky2:sun.bmp" , 128, 128);
+#else
+       texture_sky2 = LoadTexture("textures/sky2/sky2.bmp" , 256, 256);
+       texture_sky2_ground = LoadTexture("textures/sky2/sky2_ground.bmp" , 256, 256);
+       texture_sky2_top = LoadTexture("textures/sky2/sky2_top.bmp" , 256, 256);
+       texture_sky2_cloud_border = LoadTexture("textures/sky2/sky2_cloud_border.bmp" , 256, 256);
+       texture_sky2_cloudl1 = LoadTexture("textures/sky2/sky2_cloudl1.bmp" , 256, 256);
+       texture_sky2_cloudl2 = LoadTexture("textures/sky2/sky2_cloudl2.bmp" , 256, 256);
+       texture_sky2_cloudl3 = LoadTexture("textures/sky2/sky2_cloudl3.bmp" , 256, 256);
+       texture_sky2_sun = LoadTexture("textures/sky2/sun.bmp" , 128, 128);
+#endif
+}
+
+void skybox2()
+{
+       // disable ligth
+       glDisable(GL_LIGHTING);
+       glDisable(GL_LIGHT0);
+
+       // enable blending
+       glEnable(GL_BLEND);
+
+       // Enable culling. Remove one side of the polygons, back or front.
+       glEnable(GL_CULL_FACE);
+       glCullFace(GL_BACK);
+
+       // draw texture
+       glEnable(GL_TEXTURE_2D);
+       glDepthMask(GL_FALSE);
+       //      glDisable(GL_DEPTH_TEST);
+
+       // ground side of skybox
+       glBindTexture( GL_TEXTURE_2D, texture_sky2_ground );
+       glBegin(GL_QUADS);
+       glTexCoord2f(0.002,0.002 + (clouds_x * 0.6));glVertex3f(-700, -500, -700);
+       glTexCoord2f(0.998,0.002 + (clouds_x * 0.6));glVertex3f(-700, -500, 700);
+       glTexCoord2f(0.998,0.998 + (clouds_x * 0.6));glVertex3f(700, -500, 700);
+       glTexCoord2f(0.002,0.998 + (clouds_x * 0.6));glVertex3f(700, -500, -700);
+       glEnd();
+
+       // left side of skybox relative to start of demo
+       glBindTexture( GL_TEXTURE_2D, texture_sky2 );
+       glBegin(GL_QUADS);
+       glTexCoord2f(0.002,0.998);glVertex3f(-500, 500, -500);
+       glTexCoord2f(0.998,0.998);glVertex3f(-500, 500, 500);
+       glTexCoord2f(0.998,0.002);glVertex3f(-500, -500, 500);
+       glTexCoord2f(0.002,0.002);glVertex3f(-500, -500, -500);
+       glEnd();
+
+       // front side of skybox realtive to start of demo
+       glBegin(GL_QUADS);
+       glTexCoord2f(0.002,0.002);glVertex3f(-500, -500, -500);
+       glTexCoord2f(0.998,0.002);glVertex3f(500, -500, -500);
+       glTexCoord2f(0.998,0.998);glVertex3f(500, 500, -500);
+       glTexCoord2f(0.002,0.998);glVertex3f(-500, 500, -500);
+       glEnd();
+
+       // right side of skybox relative to start of demo
+       glBegin(GL_QUADS);
+       glTexCoord2f(0.002,0.002);glVertex3f(500, -500, -500);
+       glTexCoord2f(0.998,0.002);glVertex3f(500, -500, 500);
+       glTexCoord2f(0.998,0.998);glVertex3f(500, 500, 500);
+       glTexCoord2f(0.002,0.998);glVertex3f(500, 500, -500);
+       glEnd();
+
+       // rear side of skybox realtive to start of demo
+       glBegin(GL_QUADS);
+       glTexCoord2f(0.002,0.998);glVertex3f(-500, 500, 500);
+       glTexCoord2f(0.998,0.998);glVertex3f(500, 500, 500);
+       glTexCoord2f(0.998,0.002);glVertex3f(500, -500, 500);
+       glTexCoord2f(0.002,0.002);glVertex3f(-500, -500, 500);
+       glEnd();
+
+       // top side of skybox
+       glBindTexture( GL_TEXTURE_2D, texture_sky2_top );
+       glBegin(GL_QUADS);
+       glTexCoord2f(0.002,0.998);glVertex3f(500, 500, -500);
+       glTexCoord2f(0.998,0.998);glVertex3f(500, 500, 500);
+       glTexCoord2f(0.998,0.002);glVertex3f(-500, 500, 500);
+       glTexCoord2f(0.002,0.002);glVertex3f(-500, 500, -500);
+       glEnd();
+
+       // third cloud layer
+       glBindTexture( GL_TEXTURE_2D, texture_sky2_cloudl3 );
+       glBegin(GL_QUADS);
+       glTexCoord2f(0,0 + (clouds_x * 0.6));glVertex3f(-500, -213, -500);
+       glTexCoord2f(1,0 + (clouds_x * 0.6));glVertex3f(-500, -213, 500);
+       glTexCoord2f(1,1 + (clouds_x * 0.6));glVertex3f(500, -213, 500);
+       glTexCoord2f(0,1 + (clouds_x * 0.6));glVertex3f(500, -213, -500);
+       glEnd();
+
+       // second cloud layer
+       glBindTexture( GL_TEXTURE_2D, texture_sky2_cloudl2 );
+       glBegin(GL_QUADS);
+       glTexCoord2f(0,0 + (clouds_x * 0.8));glVertex3f(-500, -203, -500);
+       glTexCoord2f(1,0 + (clouds_x * 0.8));glVertex3f(-500, -203, 500);
+       glTexCoord2f(1,1 + (clouds_x * 0.8));glVertex3f(500, -203, 500);
+       glTexCoord2f(0,1 + (clouds_x * 0.8));glVertex3f(500, -203, -500);
+       glEnd();
+
+       // top cloud layer
+       glBindTexture( GL_TEXTURE_2D, texture_sky2_cloudl1 );
+       glBegin(GL_QUADS);
+       glTexCoord2f(0,0 + clouds_x);glVertex3f(-500, -193, -500);
+       glTexCoord2f(1,0 + clouds_x);glVertex3f(-500, -193, 500);
+       glTexCoord2f(1,1 + clouds_x);glVertex3f(500, -193, 500);
+       glTexCoord2f(0,1 + clouds_x);glVertex3f(500, -193, -500);
+       glEnd();
+
+
+       // cloud border
+       glBindTexture( GL_TEXTURE_2D, texture_sky2_cloud_border );
+       glBegin(GL_QUADS);
+       glTexCoord2f(0,0);glVertex3f(-501, -192, -501);
+       glTexCoord2f(1,0);glVertex3f(-501, -192, 501);
+       glTexCoord2f(1,1);glVertex3f(501, -192, 501);
+       glTexCoord2f(0,1);glVertex3f(501, -192, -501);
+       glEnd();
+
+       // sun
+       glPushMatrix();                 // save the matrix so we make sure we dont rotate anything but parts of the pin.
+       glTranslatef (100, 490, -300);  // sun position
+
+       // billboard code borrowed from example code becuse my Basic4GL code did not backport well
+       // get the current modelview matrix
+       glGetFloatv(GL_MODELVIEW_MATRIX , modelview_sun);
+       // undo all rotations
+       // beware all scaling is lost as well
+       for( int i=0; i<3; i++ )
+               for( int j=0; j<3; j++ )
+               {
+                       if ( i==j )
+                               modelview_sun[i*4+j] = 1.0;
+                       else
+                               modelview_sun[i*4+j] = 0.0;
+               }
+       // set the modelview with no rotations and scaling
+       glLoadMatrixf(modelview_sun);
+       // end of billboard code
+
+       glBindTexture( GL_TEXTURE_2D, texture_sky2_sun );
+       glBegin(GL_QUADS);
+       glTexCoord2f(0,1);glVertex3f(-35, -35, 0);
+       glTexCoord2f(1,1);glVertex3f(35, -35, 0);
+       glTexCoord2f(1,0);glVertex3f(35, 35, 0);
+       glTexCoord2f(0,0);glVertex3f(-35, 35, 0);
+       glEnd();
+       glPopMatrix();                  // revert to the previous matrix
+
+       glDepthMask(GL_TRUE);
+       //      glEnable(GL_DEPTH_TEST);
+
+       // disable texture
+       glDisable(GL_TEXTURE_2D);
+
+       // disable culling
+       glDisable(GL_CULL_FACE);
+
+       // disable blending
+       glDisable(GL_BLEND);
+
+       // enable ligth
+       glEnable(GL_LIGHTING);
+       glEnable(GL_LIGHT0);
+
+
+
+}
diff --git a/skybox2.h b/skybox2.h
new file mode 100644 (file)
index 0000000..165c945
--- /dev/null
+++ b/skybox2.h
@@ -0,0 +1,14 @@
+#ifndef SKYBOX2_H_
+#define SKYBOX2_H_
+
+// License information.
+// The Software "SAF BENCH" was written by Patrik.A, also known as Nitton Attiofyra
+// on YouTube. (https://www.youtube.com/@NittonAttiofyra)
+
+// The software is released in to the Public Domain and comes with no warranty and is used
+// at your own risk!
+
+void textures_skybox2();
+void skybox2();
+
+#endif /* SKYBOX2_H_ */
diff --git a/tu_95.cpp b/tu_95.cpp
new file mode 100644 (file)
index 0000000..a05cae6
--- /dev/null
+++ b/tu_95.cpp
@@ -0,0 +1,394 @@
+// License information.
+// The Software "SAF BENCH" was written by Patrik.A, also known as Nitton Attiofyra
+// on YouTube. (https://www.youtube.com/@NittonAttiofyra)
+
+// The software is released in to the Public Domain and comes with no warranty and is used
+// at your own risk!
+
+#include <stdlib.h> // VS 2005 wont compile it if its noth placed here, need to investigate
+#ifdef macintosh
+#include <glut.h>
+#include <gl.h>
+#include <glu.h>
+#else
+#include <GL/glut.h>
+#include <GL/gl.h>
+#include <GL/glu.h>
+#endif
+#include <iostream>
+#include "tu_95.h"
+#include "bmp_alpha.h"
+#include <stdio.h>
+
+#define for if(0);else for     // C2374 VC6++ on Alpha bug
+
+#ifdef _WIN32
+#pragma warning( disable : 4305 )
+#define for if(0);else for     // VC6++ on Alpha bug
+#endif
+
+static GLuint texture_tu_95_1, texture_tu_95_2, texture_tu_95_3, texture_contrail, texture_test_background;            // Textures
+
+GLfloat r_propeller;           // rotate forward propellers
+
+// x position of contrail smoke puffs
+GLfloat contrail_x [50];
+
+float modelview[16];           // used for billboarding
+
+// Load textures
+void textures_tu_95()
+{
+#ifdef macintosh
+       texture_tu_95_1 = LoadTexture(":textures:tu_95:tu_95_fuselage.bmp", 256, 256);
+       texture_tu_95_2 = LoadTexture(":textures:tu_95:tu_95_wings.bmp", 256, 256);
+       texture_tu_95_3 = LoadTexture(":textures:tu_95:tu_95_f_prop.bmp", 256, 256);
+       texture_contrail = LoadTexture(":textures:tu_95:contrail.bmp", 128, 128);
+#else
+       texture_tu_95_1 = LoadTexture("textures/tu_95/tu_95_fuselage.bmp", 256, 256);
+       texture_tu_95_2 = LoadTexture("textures/tu_95/tu_95_wings.bmp", 256, 256);
+       texture_tu_95_3 = LoadTexture("textures/tu_95/tu_95_f_prop.bmp", 256, 256);
+       texture_contrail = LoadTexture("textures/tu_95/contrail.bmp", 128, 128);
+#endif
+}
+
+// draw the geometry of the TU-95 Plane
+void tu_95()
+{
+       // Enable culling. Remove one side of the polygons, back or front.
+       glEnable(GL_CULL_FACE);
+       glCullFace(GL_BACK);
+
+       // Drawing is done by specifying a sequence of vertices.  The way these
+       // vertices are connected (or not connected) depends on the argument to
+       // glBegin.  GL_POLYGON constructs a filled polygon.
+
+
+       //------------------------------------------------------------------------------------------------------------------------------------------------------------------//
+
+       // draw texture_tu_95_1
+       glBindTexture( GL_TEXTURE_2D, texture_tu_95_1 );
+       glEnable(GL_TEXTURE_2D);
+
+       // enable blending
+       //      glEnable(GL_BLEND);
+
+       //       Set color
+       //      glColor3f(.5, .3, 1);
+
+       // set vertices for TU-95 fusulage
+       static GLfloat tu_95_fusulage_vertices[] = {7.57557, -0.523717, 6.874849, 7.457663, -0.187338, 6.879619, 7.457663, -0.523717, 6.969751, 7.57557, -0.523717, 6.874849, 7.457663, -0.860096, 6.879619, 7.57557, -0.812645, 6.797431, 7.57557, -0.023279, 6.585921, 7.457663, 0.149041, 6.296993, 7.457663, 0.058908, 6.633372, 7.57557, -1.024155, 6.585921, 7.457663, -0.860096, 6.879619, 7.457663, -1.106343, 6.633372, 7.57557, -0.023279, 6.585921, 7.457663, -0.187338, 6.879619, 7.57557, -0.234789, 6.797431, 7.57557, -1.101573, 6.296993, 7.457663, -1.106343, 6.633372, 7.457663, -1.196475, 6.296993, 7.457663, 0.058908, 6.633372, 6.587801, -0.07608, 6.984383, 7.457663, -0.187338, 6.879619, 7.457663, -1.106343, 6.633372, 6.813089, -1.296494, 6.296993, 7.457663, -1.196475, 6.296993, 7.457663, -0.187338, 6.879619, 6.669429, -0.522461, 7.090722, 7.457663, -0.523717, 6.969751, 6.535219, 0.21147, 5.900129, 7.457663, 0.149041, 6.296993, 7.457664, 0.058908, 5.960614, 7.457663, -0.523717, 6.969751, 6.741259, -0.915261, 6.984383, 7.457663, -0.860096, 6.879619, 7.457663, -0.860096, 6.879619, 6.793842, -1.202811, 6.693858, 7.457663, -1.106343, 6.633372, -2.495383, 0.291829, 6.764008, -3.992533, 0.210898, 6.296991, -3.986801, 0.096896, 6.770368, 0.884346, -0.140304, 6.895591, 1.03816, 0.585367, 6.642593, 0.219224, 0.407437, 6.442794, -2.481041, -0.100893, 5.560101, -3.986801, 0.096896, 5.823615, -2.495383, 0.291829, 5.829974, 1.056457, 0.674755, 6.296992, 0.219224, 0.407437, 6.442794, 1.03816, 0.585367, 6.642593, -2.495383, 0.291829, 5.829974, -3.992533, 0.210898, 6.296991, -2.49961, 0.411763, 6.296991, 4.690493, 0.283496, 6.687037, 2.306822, 0.150331, 6.985501, 4.690493, -0.062799, 6.975354, 4.690493, -1.286003, 6.584775, 2.306822, -1.016206, 6.880252, 2.306823, -1.265685, 6.509758, 4.690493, 0.396952, 6.296993, 2.306823, 0.649738, 6.691643, 4.690493, 0.283496, 6.687037, 4.690493, -0.996553, 6.91618, 2.306822, -0.629597, 7.027306, 2.306822, -1.016206, 6.880252, 4.690493, -0.062799, 6.975354, 2.306822, -0.629597, 7.027306, 4.690493, -0.624713, 7.043916, 4.690493, -1.337667, 6.296993, 2.306823, -1.265685, 6.509758, 2.306823, -1.308999, 6.296992, 2.306822, 0.150331, 6.985501, 1.03816, 0.585367, 6.642593, 0.884346, -0.140304, 6.895591, 2.306823, 0.649738, 6.691643, 1.056457, 0.674755, 6.296992, 1.03816, 0.585367, 6.642593, 2.306822, 0.150331, 6.985501, 1.180024, -0.526971, 6.812483, 2.306822, -0.629597, 7.027306, 2.306823, -1.308999, 6.296992, 1.163778, -1.040459, 6.464466, 0.884346, -1.120213, 6.296992, 2.306822, -0.895648, 6.619317, 0.884346, -0.74334, 6.490982, 2.306823, -1.265685, 6.509758, 2.306822, -0.629597, 7.027306, 0.884346, -0.74334, 6.490982, 2.306822, -0.895648, 6.619317, 2.306823, -1.265685, 6.509758, 0.884346, -0.74334, 6.490982, 1.163778, -1.040459, 6.464466, 2.306822, -0.629597, 7.027306, 1.180024, -0.526971, 6.812483, 0.884346, -0.74334, 6.490982, 7.575571, -0.523717, 5.719137, 7.457664, -0.187338, 5.714368, 7.575571, -0.234789, 5.796556, 7.457664, -0.860096, 5.714368, 7.575571, -0.523717, 5.719137, 7.575571, -0.812645, 5.796556, 7.457664, 0.058908, 5.960614, 7.57557, 0.054139, 6.296993, 7.575571, -0.023279, 6.008065, 7.575571, -1.024155, 6.008065, 7.457664, -0.860096, 5.714368, 7.575571, -0.812645, 5.796556, 7.457664, -0.187338, 5.714368, 7.575571, -0.023279, 6.008065, 7.575571, -0.234789, 5.796556, 7.57557, -1.101573, 6.296993, 7.457664, -1.106343, 5.960614, 7.575571, -1.024155, 6.008065, 6.587802, -0.07608, 5.609604, 7.457664, 0.058908, 5.960614, 7.457664, -0.187338, 5.714368, 6.813089, -1.296494, 6.296993, 7.457664, -1.106343, 5.960614, 7.457663, -1.196475, 6.296993, 6.66943, -0.522461, 5.503265, 7.457664, -0.187338, 5.714368, 7.457664, -0.523717, 5.624235, 6.74126, -0.915261, 5.609604, 7.457664, -0.523717, 5.624235, 7.457664, -0.860096, 5.714368, 6.793843, -1.202811, 5.900129, 7.457664, -0.860096, 5.714368, 7.457664, -1.106343, 5.960614, -2.43466, -1.410627, 6.296991, -3.911385, -1.402036, 6.761054, -3.90565, -1.496107, 6.296991, 0.884346, -0.140304, 5.698393, 0.219224, 0.407437, 6.15119, 1.03816, 0.585367, 5.951391, -2.438638, -1.301233, 5.838701, -3.925848, -1.11465, 5.605434, -2.449615, -0.995583, 5.615082, 0.219224, 0.407437, 6.15119, 1.056457, 0.674755, 6.296992, 1.03816, 0.585367, 5.951391, -3.968354, -0.269302, 5.557125, -2.449615, -0.995583, 5.615082, -3.925848, -1.11465, 5.605434, 2.306822, 0.150331, 5.608484, 4.690493, 0.283496, 5.906949, 4.690493, -0.062799, 5.618632, 4.690493, -1.286003, 6.00921, 2.306823, -1.016206, 5.713732, 4.690493, -0.996553, 5.677805, 2.306823, 0.649738, 5.902342, 4.690493, 0.396952, 6.296993, 4.690493, 0.283496, 5.906949, 4.690493, -0.996553, 5.677805, 2.306823, -0.629597, 5.566679, 4.690493, -0.624713, 5.550069, 2.306823, -0.629597, 5.566679, 4.690493, -0.062799, 5.618632, 4.690493, -0.624713, 5.550069, 4.690493, -1.337667, 6.296993, 2.306823, -1.265685, 6.084227, 4.690493, -1.286003, 6.00921, 2.306822, 0.150331, 5.608484, 1.03816, 0.585367, 5.951391, 2.306823, 0.649738, 5.902342, 2.306823, 0.649738, 5.902342, 1.056457, 0.674755, 6.296992, 2.306823, 0.758841, 6.296992, 1.180024, -0.526971, 5.781501, 2.306822, 0.150331, 5.608484, 2.306823, -0.629597, 5.566679, 2.306823, -1.308999, 6.296992, 1.163778, -1.040459, 6.129518, 2.306823, -1.265685, 6.084227, 2.306822, -0.895648, 5.974668, 2.306823, -1.265685, 6.084227, 0.884346, -0.74334, 6.103002, 2.306823, -0.629597, 5.566679, 2.306822, -0.895648, 5.974668, 0.884346, -0.74334, 6.103002, 2.306823, -1.265685, 6.084227, 1.163778, -1.040459, 6.129518, 0.884346, -0.74334, 6.103002, 2.306823, -0.629597, 5.566679, 0.884346, -0.74334, 6.103002, 1.180024, -0.526971, 5.781501, 7.575571, -1.024155, 6.008065, 7.487842, -0.784038, 5.846106, 7.487842, -0.974605, 6.036673, 7.57557, -0.812645, 6.797431, 7.487842, -0.523717, 6.817634, 7.57557, -0.523717, 6.874849, 7.575571, -0.234789, 5.796556, 7.487842, -0.072829, 6.036673, 7.487842, -0.263397, 5.846106, 7.57557, 0.054139, 6.296993, 7.487842, -0.072829, 6.557313, 7.487842, -0.003077, 6.296993, 7.57557, -1.101573, 6.296993, 7.487842, -0.974605, 6.036673, 7.487842, -1.044358, 6.296993, 7.57557, -1.024155, 6.585921, 7.487842, -0.784038, 6.747881, 7.57557, -0.812645, 6.797431, 7.57557, -0.234789, 6.797431, 7.487842, -0.072829, 6.557313, 7.57557, -0.023279, 6.585921, 7.575571, -0.234789, 5.796556, 7.487842, -0.523717, 5.776353, 7.575571, -0.523717, 5.719137, 7.57557, -1.101573, 6.296993, 7.487842, -0.974605, 6.557313, 7.57557, -1.024155, 6.585921, 7.575571, -0.812645, 5.796556, 7.487842, -0.523717, 5.776353, 7.487842, -0.784038, 5.846106, 7.57557, -0.234789, 6.797431, 7.487842, -0.523717, 6.817634, 7.487842, -0.263397, 6.747881, 7.57557, 0.054139, 6.296993, 7.487842, -0.072829, 6.036673, 7.575571, -0.023279, 6.008065, 2.306822, -1.016206, 6.880252, 2.306822, -0.629597, 7.027306, 2.306822, -0.895648, 6.619317, 2.306822, -0.895648, 6.619317, 2.306822, -1.265685, 6.509758, 2.306822, -1.016206, 6.880252, 2.306822, -1.016206, 5.713732, 2.306822, -0.895648, 5.974668, 2.306822, -0.629597, 5.566679, 2.306822, -0.895648, 5.974668, 2.306822, -1.016206, 5.713732, 2.306822, -1.265685, 6.084227, 6.813089, -1.296494, 6.296993, 4.690493, -1.286003, 6.00921, 6.793843, -1.202811, 5.900129, 4.690493, -0.624713, 5.550069, 6.587802, -0.07608, 5.609604, 6.66943, -0.522461, 5.503265, 4.690493, -0.996553, 5.677805, 6.66943, -0.522461, 5.503265, 6.74126, -0.915261, 5.609604, 4.690493, 0.283496, 5.906949, 6.515972, 0.31672, 6.296993, 6.535219, 0.21147, 5.900129, 4.690493, -1.286003, 6.00921, 6.74126, -0.915261, 5.609604, 6.793843, -1.202811, 5.900129, 4.690493, -0.062799, 5.618632, 6.535219, 0.21147, 5.900129, 6.587802, -0.07608, 5.609604, 6.813089, -1.296494, 6.296993, 4.690493, -1.286003, 6.584775, 4.690493, -1.337667, 6.296993, 6.587801, -0.07608, 6.984383, 4.690493, -0.624713, 7.043916, 6.669429, -0.522461, 7.090722, 6.669429, -0.522461, 7.090722, 4.690493, -0.996553, 6.91618, 6.741259, -0.915261, 6.984383, 6.515972, 0.31672, 6.296993, 4.690493, 0.283496, 6.687037, 6.535218, 0.21147, 6.693858, 6.741259, -0.915261, 6.984383, 4.690493, -1.286003, 6.584775, 6.793842, -1.202811, 6.693858, 6.535218, 0.21147, 6.693858, 4.690493, -0.062799, 6.975354, 6.587801, -0.07608, 6.984383, -2.43466, -1.410627, 6.296991, -3.911384, -1.402036, 5.832928, -2.438638, -1.301233, 5.838701, 0.884346, -0.140304, 5.698393, -0.975328, -0.821385, 5.748633, -0.991939, 0.016406, 5.698392, -2.481041, -0.100893, 7.033881, -3.986801, 0.096896, 6.770368, -3.968354, -0.269302, 7.036857, -2.438639, -1.301233, 6.75528, -3.925848, -1.11465, 6.988548, -3.911385, -1.402036, 6.761054, 0.884346, -0.74334, 6.490982, -0.969139, -1.109005, 6.6661, 1.163778, -1.040459, 6.464466, 0.219224, 0.407437, 6.442794, -0.991939, 0.016406, 6.89559, 0.884346, -0.140304, 6.895591, -0.975328, -0.821385, 6.845348, 0.884346, -0.140304, 6.895591, -0.991939, 0.016406, 6.89559, 0.884346, -1.120213, 6.296992, -0.969139, -1.109005, 5.927882, 1.163778, -1.040459, 6.129518, 1.180024, -0.526971, 5.781501, 0.884346, -0.74334, 6.103002, 0.884346, -0.140304, 5.698393, 0.884346, -0.74334, 6.103002, -0.969139, -1.109005, 5.927882, -0.975328, -0.821385, 5.748633, 0.884346, -1.120213, 6.296992, -0.969139, -1.109005, 6.6661, -0.967388, -1.222251, 6.296991, 0.219224, 0.407437, 6.15119, -1.002692, 0.500643, 6.296991, 0.219224, 0.444268, 6.296992, 0.219224, 0.407437, 6.15119, -0.991939, 0.016406, 5.698392, -1.000475, 0.389018, 5.921238, 0.219224, 0.407437, 6.442794, -1.002692, 0.500643, 6.296991, -1.000475, 0.389018, 6.672743, -0.969139, -1.109005, 6.6661, -2.449615, -0.995583, 6.978899, -2.438639, -1.301233, 6.75528, -0.991939, 0.016406, 6.89559, -2.495383, 0.291829, 6.764008, -2.481041, -0.100893, 7.033881, 1.180024, -0.526971, 6.812483, 0.884346, -0.140304, 6.895591, 0.884346, -0.74334, 6.490982, -0.969139, -1.109005, 5.927882, -2.43466, -1.410627, 6.296991, -2.438638, -1.301233, 5.838701, -0.975328, -0.821385, 6.845348, -2.481041, -0.100893, 7.033881, -2.449615, -0.995583, 6.978899, -0.969139, -1.109005, 5.927882, -2.449615, -0.995583, 5.615082, -0.975328, -0.821385, 5.748633, -0.969139, -1.109005, 6.6661, -2.43466, -1.410627, 6.296991, -0.967388, -1.222251, 6.296991, -1.000475, 0.389018, 5.921238, -2.49961, 0.411763, 6.296991, -1.002692, 0.500643, 6.296991, -0.991939, 0.016406, 5.698392, -2.495383, 0.291829, 5.829974, -1.000475, 0.389018, 5.921238, -1.000475, 0.389018, 6.672743, -2.49961, 0.411763, 6.296991, -2.495383, 0.291829, 6.764008, -0.975328, -0.821385, 5.748633, -2.481041, -0.100893, 5.560101, -0.991939, 0.016406, 5.698392, -3.968354, -0.269302, 5.557125, -5.684218, -0.090228, 5.87644, -3.986801, 0.096896, 5.823615, -3.992533, 0.210898, 6.296991, -5.684218, -0.090228, 5.87644, -5.688971, 0.004296, 6.296991, -3.925848, -1.11465, 6.988548, -5.621687, -1.333069, 6.709267, -3.911385, -1.402036, 6.761054, -3.925848, -1.11465, 5.605434, -5.621686, -1.333069, 5.884714, -5.633679, -1.094783, 5.682607, -3.968354, -0.269302, 7.036857, -5.684218, -0.090228, 6.717541, -5.668923, -0.393862, 6.954292, -3.911385, -1.402036, 6.761054, -5.616933, -1.416285, 6.296991, -3.90565, -1.496107, 6.296991, -5.633679, -1.094783, 5.682607, -3.968354, -0.269302, 5.557125, -3.925848, -1.11465, 5.605434, -3.911384, -1.402036, 5.832928, -5.616933, -1.416285, 6.296991, -5.621686, -1.333069, 5.884714, -3.992533, 0.210898, 6.296991, -5.684218, -0.090228, 6.717541, -3.986801, 0.096896, 6.770368, -5.621687, -1.333069, 6.709267, -6.940484, -1.035277, 6.602757, -6.933425, -1.175507, 6.502172, -5.616933, -1.416285, 6.296991, -6.933425, -1.175507, 6.502172, -6.930628, -1.231287, 6.29699, -5.621686, -1.333069, 5.884714, -6.940484, -1.035277, 5.991223, -5.633679, -1.094783, 5.682607, -5.688971, 0.004296, 6.296991, -6.970225, -0.444103, 6.08769, -6.973022, -0.388476, 6.29699, -5.688971, 0.004296, 6.296991, -6.970225, -0.444103, 6.50629, -5.684218, -0.090228, 6.717541, -5.668923, -0.393862, 6.954292, -6.970225, -0.444103, 6.50629, -6.961224, -0.62279, 6.624117, -5.668923, -0.393862, 5.639689, -6.970225, -0.444103, 6.08769, -5.684218, -0.090228, 5.87644, -5.616933, -1.416285, 6.296991, -6.933424, -1.175507, 6.091807, -5.621686, -1.333069, 5.884714, -6.930628, -1.231287, 6.29699, -7.311787, -0.973861, 6.206894, -6.933424, -1.175507, 6.091807, -6.930628, -1.231287, 6.29699, -7.311787, -0.973861, 6.387085, -7.335758, -1.015646, 6.29699, -6.973022, -0.388476, 6.29699, -7.321105, -0.695942, 6.200601, -7.354806, -0.636946, 6.29699, -6.973022, -0.388476, 6.29699, -7.321105, -0.695942, 6.393379, -6.970225, -0.444103, 6.50629, -5.633679, -1.094783, 5.682607, -6.961223, -0.62279, 5.969863, -5.668923, -0.393862, 5.639689, -6.970225, -0.444103, 6.50629, -7.321105, -0.695942, 6.393379, -6.961224, -0.62279, 6.624117, -6.933425, -1.175507, 6.502172, -6.940484, -1.035277, 6.602757, -7.311787, -0.973861, 6.387085, -6.961224, -0.62279, 6.624117, -7.311787, -0.973861, 6.387085, -6.940484, -1.035277, 6.602757, -3.968354, -0.269302, 7.036857, -2.449615, -0.995583, 6.978899, -2.481041, -0.100893, 7.033881, -3.968354, -0.269302, 7.036857, -5.633679, -1.094783, 6.911374, -3.925848, -1.11465, 6.988548, -5.633679, -1.094783, 6.911374, -6.961224, -0.62279, 6.624117, -6.940484, -1.035277, 6.602757, -6.961223, -0.62279, 5.969863, -7.321105, -0.695942, 6.200601, -6.970225, -0.444103, 6.08769, -6.933424, -1.175507, 6.091807, -7.311787, -0.973861, 6.206894, -6.940484, -1.035277, 5.991223, -7.311787, -0.973861, 6.206894, -6.961223, -0.62279, 5.969863, -6.940484, -1.035277, 5.991223, -7.311787, -0.973861, 6.387085, -7.321105, -0.695942, 6.393379, -7.396282, -0.832033, 6.29699, -7.311787, -0.973861, 6.206894, -7.335758, -1.015646, 6.29699, -7.396282, -0.832033, 6.29699, -7.335758, -1.015646, 6.29699, -7.311787, -0.973861, 6.387085, -7.396282, -0.832033, 6.29699, -7.321105, -0.695942, 6.393379, -7.354806, -0.636946, 6.29699, -7.396282, -0.832033, 6.29699, -7.354806, -0.636946, 6.29699, -7.321105, -0.695942, 6.200601, -7.396282, -0.832033, 6.29699, -7.321105, -0.695942, 6.200601, -7.311787, -0.973861, 6.206894, -7.396282, -0.832033, 6.29699, 7.457663, 0.149041, 6.296993, 6.535218, 0.21147, 6.693858, 7.457663, 0.058908, 6.633372, 7.487842, -0.072829, 6.557313, 7.487842, -1.044358, 6.296993, 7.487842, -0.003077, 6.296993, 7.487842, -0.072829, 6.036673, 7.487842, -1.044358, 6.296993, 7.487842, -0.974605, 6.036673, 7.487842, -0.263397, 6.747881, 7.487842, -0.974605, 6.557313, 7.487842, -0.072829, 6.557313, 7.487842, -0.523717, 6.817634, 7.487842, -0.784038, 6.747881, 7.487842, -0.263397, 6.747881, 7.487842, -0.263397, 5.846106, 7.487842, -0.974605, 6.036673, 7.487842, -0.784038, 5.846106, 7.487842, -0.523717, 5.776353, 7.487842, -0.263397, 5.846106, 7.487842, -0.784038, 5.846106, 7.575573, -0.523717, -6.874846, 7.457666, -0.187338, -6.879616, 7.575573, -0.234789, -6.797428, 7.457666, -0.860096, -6.879616, 7.575573, -0.523717, -6.874846, 7.575573, -0.812645, -6.797428, 7.575573, -0.023279, -6.585918, 7.457666, 0.149041, -6.29699, 7.575573, 0.054139, -6.29699, 7.575573, -1.024155, -6.585918, 7.457666, -0.860096, -6.879616, 7.575573, -0.812645, -6.797428, 7.457666, -0.187338, -6.879616, 7.575573, -0.023279, -6.585918, 7.575573, -0.234789, -6.797428, 7.575573, -1.101573, -6.29699, 7.457666, -1.106343, -6.633369, 7.575573, -1.024155, -6.585918, 7.457666, 0.058908, -6.633369, 6.587804, -0.07608, -6.98438, 6.535221, 0.21147, -6.693855, 7.457666, -1.106343, -6.633369, 6.813092, -1.296494, -6.29699, 6.793845, -1.202811, -6.693855, 7.457666, -0.187338, -6.879616, 6.669432, -0.522461, -7.090719, 6.587804, -0.07608, -6.98438, 7.457666, 0.149041, -6.29699, 6.535221, 0.21147, -5.900126, 7.457665, 0.058908, -5.960611, 7.457666, -0.523717, -6.969748, 6.741262, -0.915261, -6.98438, 6.669432, -0.522461, -7.090719, 7.457666, -0.860096, -6.879616, 6.793845, -1.202811, -6.693855, 6.741262, -0.915261, -6.98438, -2.49538, 0.291829, -6.764009, -3.992531, 0.210898, -6.296993, -2.499607, 0.411763, -6.296992, 0.884349, -0.140304, -6.895591, 0.219227, 0.407437, -6.442794, 1.038163, 0.585367, -6.642593, -3.986799, 0.096896, -5.823617, -2.481038, -0.100893, -5.560102, -2.495381, 0.291829, -5.829975, 0.219227, 0.407437, -6.442794, 1.056459, 0.674755, -6.296992, 1.038163, 0.585367, -6.642593, -3.992531, 0.210898, -6.296993, -2.495381, 0.291829, -5.829975, -2.499607, 0.411763, -6.296992, 2.306825, 0.150331, -6.9855, 4.690495, 0.283496, -6.687035, 4.690495, -0.062799, -6.975352, 4.690495, -1.286003, -6.584774, 2.306825, -1.016206, -6.880251, 4.690495, -0.996553, -6.916178, 2.306825, 0.649738, -6.691642, 4.690495, 0.396952, -6.296991, 4.690495, 0.283496, -6.687035, 4.690495, -0.996553, -6.916178, 2.306825, -0.629597, -7.027305, 4.690495, -0.624713, -7.043914, 2.306825, -0.629597, -7.027305, 4.690495, -0.062799, -6.975352, 4.690495, -0.624713, -7.043914, 4.690495, -1.337667, -6.296991, 2.306825, -1.265685, -6.509757, 4.690495, -1.286003, -6.584774, 2.306825, 0.150331, -6.9855, 1.038163, 0.585367, -6.642593, 2.306825, 0.649738, -6.691642, 2.306825, 0.649738, -6.691642, 1.056459, 0.674755, -6.296992, 2.306825, 0.758841, -6.296991, 1.180026, -0.526971, -6.812483, 2.306825, 0.150331, -6.9855, 2.306825, -0.629597, -7.027305, 2.306825, -1.308999, -6.296991, 1.163781, -1.040459, -6.464466, 2.306825, -1.265685, -6.509757, 2.306824, -0.895648, -6.619316, 2.306825, -1.265685, -6.509757, 0.884349, -0.74334, -6.490982, 2.306825, -0.629597, -7.027305, 2.306824, -0.895648, -6.619316, 0.884349, -0.74334, -6.490982, 2.306825, -1.265685, -6.509757, 1.163781, -1.040459, -6.464466, 0.884349, -0.74334, -6.490982, 2.306825, -0.629597, -7.027305, 0.884349, -0.74334, -6.490982, 1.180026, -0.526971, -6.812483, 7.575572, -0.523717, -5.719134, 7.457665, -0.187338, -5.714365, 7.457665, -0.523717, -5.624232, 7.575572, -0.523717, -5.719134, 7.457665, -0.860096, -5.714365, 7.575572, -0.812645, -5.796553, 7.575572, -0.023279, -6.008062, 7.457666, 0.149041, -6.29699, 7.457665, 0.058908, -5.960611, 7.575572, -1.024155, -6.008062, 7.457665, -0.860096, -5.714365, 7.457665, -1.106343, -5.960611, 7.575572, -0.023279, -6.008062, 7.457665, -0.187338, -5.714365, 7.575572, -0.234789, -5.796553, 7.575572, -1.024155, -6.008062, 7.457666, -1.196475, -6.29699, 7.575573, -1.101573, -6.29699, 7.457665, 0.058908, -5.960611, 6.587804, -0.07608, -5.609601, 7.457665, -0.187338, -5.714365, 7.457665, -1.106343, -5.960611, 6.813092, -1.296494, -6.29699, 7.457666, -1.196475, -6.29699, 7.457665, -0.187338, -5.714365, 6.669432, -0.522461, -5.503262, 7.457665, -0.523717, -5.624232, 7.457665, -0.523717, -5.624232, 6.741261, -0.915261, -5.609601, 7.457665, -0.860096, -5.714365, 7.457665, -0.860096, -5.714365, 6.793845, -1.202811, -5.900126, 7.457665, -1.106343, -5.960611, -2.434657, -1.410627, -6.296992, -3.911382, -1.402036, -6.761056, -2.438636, -1.301233, -6.755281, 0.884349, -0.140304, -5.698393, 1.038162, 0.585367, -5.951391, 0.219227, 0.407437, -6.15119, -3.925845, -1.11465, -5.605436, -2.438636, -1.301233, -5.838702, -2.449613, -0.995583, -5.615083, 1.056459, 0.674755, -6.296992, 0.219227, 0.407437, -6.15119, 1.038162, 0.585367, -5.951391, -2.449613, -0.995583, -5.615083, -3.968352, -0.269302, -5.557127, -3.925845, -1.11465, -5.605436, 4.690495, 0.283496, -5.906947, 2.306824, 0.150331, -5.608483, 4.690495, -0.062799, -5.61863, 4.690495, -1.286003, -6.009208, 2.306825, -1.016206, -5.713731, 2.306825, -1.265685, -6.084226, 4.690495, 0.396952, -6.296991, 2.306825, 0.649738, -5.902341, 4.690495, 0.283496, -5.906947, 4.690495, -0.996553, -5.677804, 2.306825, -0.629597, -5.566678, 2.306825, -1.016206, -5.713731, 4.690495, -0.062799, -5.61863, 2.306825, -0.629597, -5.566678, 4.690495, -0.624713, -5.550067, 4.690495, -1.337667, -6.296991, 2.306825, -1.265685, -6.084226, 2.306825, -1.308999, -6.296991, 2.306824, 0.150331, -5.608483, 1.038162, 0.585367, -5.951391, 0.884349, -0.140304, -5.698393, 2.306825, 0.649738, -5.902341, 1.056459, 0.674755, -6.296992, 1.038162, 0.585367, -5.951391, 2.306824, 0.150331, -5.608483, 1.180026, -0.526971, -5.781501, 2.306825, -0.629597, -5.566678, 2.306825, -1.308999, -6.296991, 1.16378, -1.040459, -6.129518, 0.884349, -1.120213, -6.296992, 2.306824, -0.895648, -5.974667, 0.884349, -0.74334, -6.103002, 2.306825, -1.265685, -6.084226, 2.306825, -0.629597, -5.566678, 0.884349, -0.74334, -6.103002, 2.306824, -0.895648, -5.974667, 2.306825, -1.265685, -6.084226, 0.884349, -0.74334, -6.103002, 1.16378, -1.040459, -6.129518, 2.306825, -0.629597, -5.566678, 1.180026, -0.526971, -5.781501, 0.884349, -0.74334, -6.103002, 7.575572, -1.024155, -6.008062, 7.487844, -0.784038, -5.846103, 7.575572, -0.812645, -5.796553, 7.487844, -0.523717, -6.817631, 7.575573, -0.812645, -6.797428, 7.575573, -0.523717, -6.874846, 7.575572, -0.234789, -5.796553, 7.487844, -0.072829, -6.03667, 7.575572, -0.023279, -6.008062, 7.575573, 0.054139, -6.29699, 7.487844, -0.072829, -6.557311, 7.575573, -0.023279, -6.585918, 7.487844, -1.044358, -6.29699, 7.575572, -1.024155, -6.008062, 7.575573, -1.101573, -6.29699, 7.487844, -0.784038, -6.747878, 7.575573, -1.024155, -6.585918, 7.575573, -0.812645, -6.797428, 7.487844, -0.072829, -6.557311, 7.575573, -0.234789, -6.797428, 7.575573, -0.023279, -6.585918, 7.487844, -0.523717, -5.77635, 7.575572, -0.234789, -5.796553, 7.575572, -0.523717, -5.719134, 7.487844, -0.974605, -6.557311, 7.575573, -1.101573, -6.29699, 7.575573, -1.024155, -6.585918, 7.575572, -0.812645, -5.796553, 7.487844, -0.523717, -5.77635, 7.575572, -0.523717, -5.719134, 7.575573, -0.234789, -6.797428, 7.487844, -0.523717, -6.817631, 7.575573, -0.523717, -6.874846, 7.575572, -0.023279, -6.008062, 7.487844, -0.003077, -6.29699, 7.575573, 0.054139, -6.29699, 2.306825, -1.016206, -6.880251, 2.306824, -0.895648, -6.619316, 2.306825, -0.629597, -7.027305, 2.306824, -0.895648, -6.619316, 2.306825, -1.016206, -6.880251, 2.306824, -1.265685, -6.509757, 2.306824, -1.016206, -5.713731, 2.306824, -0.629597, -5.566678, 2.306824, -0.895648, -5.974667, 2.306824, -0.895648, -5.974667, 2.306824, -1.265685, -6.084226, 2.306824, -1.016206, -5.713731, 6.813092, -1.296494, -6.29699, 4.690495, -1.286003, -6.009208, 4.690495, -1.337667, -6.296991, 6.587804, -0.07608, -5.609601, 4.690495, -0.624713, -5.550067, 6.669432, -0.522461, -5.503262, 6.669432, -0.522461, -5.503262, 4.690495, -0.996553, -5.677804, 6.741261, -0.915261, -5.609601, 6.515975, 0.31672, -6.29699, 4.690495, 0.283496, -5.906947, 6.535221, 0.21147, -5.900126, 6.741261, -0.915261, -5.609601, 4.690495, -1.286003, -6.009208, 6.793845, -1.202811, -5.900126, 6.535221, 0.21147, -5.900126, 4.690495, -0.062799, -5.61863, 6.587804, -0.07608, -5.609601, 6.813092, -1.296494, -6.29699, 4.690495, -1.286003, -6.584774, 6.793845, -1.202811, -6.693855, 4.690495, -0.624713, -7.043914, 6.587804, -0.07608, -6.98438, 6.669432, -0.522461, -7.090719, 4.690495, -0.996553, -6.916178, 6.669432, -0.522461, -7.090719, 6.741262, -0.915261, -6.98438, 4.690495, 0.283496, -6.687035, 6.515975, 0.31672, -6.29699, 6.535221, 0.21147, -6.693855, 4.690495, -1.286003, -6.584774, 6.741262, -0.915261, -6.98438, 6.793845, -1.202811, -6.693855, 4.690495, -0.062799, -6.975352, 6.535221, 0.21147, -6.693855, 6.587804, -0.07608, -6.98438, -3.911382, -1.402036, -5.83293, -2.434657, -1.410627, -6.296992, -2.438636, -1.301233, -5.838702, 0.884349, -0.140304, -5.698393, -0.975326, -0.821385, -5.748633, 0.884349, -0.74334, -6.103002, -2.481038, -0.100893, -7.033882, -3.986798, 0.096896, -6.77037, -2.49538, 0.291829, -6.764009, -2.438636, -1.301233, -6.755281, -3.925845, -1.11465, -6.98855, -2.449613, -0.995583, -6.9789, -0.969136, -1.109005, -6.6661, 0.884349, -0.74334, -6.490982, 1.163781, -1.040459, -6.464466, -0.991937, 0.016406, -6.89559, 0.219227, 0.407437, -6.442794, 0.884349, -0.140304, -6.895591, -0.975326, -0.821385, -6.845348, 0.884349, -0.140304, -6.895591, 0.884349, -0.74334, -6.490982, -0.969136, -1.109005, -5.927882, 0.884349, -1.120213, -6.296992, 1.16378, -1.040459, -6.129518, 1.180026, -0.526971, -5.781501, 0.884349, -0.140304, -5.698393, 0.884349, -0.74334, -6.103002, 0.884349, -0.74334, -6.103002, -0.969136, -1.109005, -5.927882, 1.16378, -1.040459, -6.129518, 0.884349, -1.120213, -6.296992, -0.969136, -1.109005, -6.6661, 1.163781, -1.040459, -6.464466, -1.00269, 0.500643, -6.296991, 0.219227, 0.407437, -6.15119, 0.219227, 0.444268, -6.296992, 0.219227, 0.407437, -6.15119, -0.991937, 0.016406, -5.698392, 0.884349, -0.140304, -5.698393, 0.219227, 0.407437, -6.442794, -1.00269, 0.500643, -6.296991, 0.219227, 0.444268, -6.296992, -0.969136, -1.109005, -6.6661, -2.449613, -0.995583, -6.9789, -0.975326, -0.821385, -6.845348, -0.991937, 0.016406, -6.89559, -2.49538, 0.291829, -6.764009, -1.000472, 0.389018, -6.672743, 1.180026, -0.526971, -6.812483, 0.884349, -0.74334, -6.490982, 0.884349, -0.140304, -6.895591, -0.969136, -1.109005, -5.927882, -2.434657, -1.410627, -6.296992, -0.967385, -1.222251, -6.296991, -2.481038, -0.100893, -7.033882, -0.975326, -0.821385, -6.845348, -2.449613, -0.995583, -6.9789, -2.449613, -0.995583, -5.615083, -0.969136, -1.109005, -5.927882, -0.975326, -0.821385, -5.748633, -2.434657, -1.410627, -6.296992, -0.969136, -1.109005, -6.6661, -0.967385, -1.222251, -6.296991, -2.499607, 0.411763, -6.296992, -1.000472, 0.389018, -5.921238, -1.00269, 0.500643, -6.296991, -2.495381, 0.291829, -5.829975, -0.991937, 0.016406, -5.698392, -1.000472, 0.389018, -5.921238, -1.000472, 0.389018, -6.672743, -2.499607, 0.411763, -6.296992, -1.00269, 0.500643, -6.296991, -2.481038, -0.100893, -5.560102, -0.975326, -0.821385, -5.748633, -0.991937, 0.016406, -5.698392, -5.684216, -0.090228, -5.876442, -3.968352, -0.269302, -5.557127, -3.986799, 0.096896, -5.823617, -3.992531, 0.210898, -6.296993, -5.684216, -0.090228, -5.876442, -3.986799, 0.096896, -5.823617, -5.621684, -1.333069, -6.709269, -3.925845, -1.11465, -6.98855, -3.911382, -1.402036, -6.761056, -3.925845, -1.11465, -5.605436, -5.621685, -1.333069, -5.884716, -3.911382, -1.402036, -5.83293, -3.968351, -0.269302, -7.036859, -5.684216, -0.090228, -6.717543, -3.986798, 0.096896, -6.77037, -5.61693, -1.416285, -6.296993, -3.911382, -1.402036, -6.761056, -3.905648, -1.496107, -6.296993, -5.633677, -1.094783, -5.682609, -3.968352, -0.269302, -5.557127, -5.668921, -0.393862, -5.639691, -3.911382, -1.402036, -5.83293, -5.61693, -1.416285, -6.296993, -3.905648, -1.496107, -6.296993, -5.684216, -0.090228, -6.717543, -3.992531, 0.210898, -6.296993, -3.986798, 0.096896, -6.77037, -5.621684, -1.333069, -6.709269, -6.940481, -1.035277, -6.60276, -5.633677, -1.094783, -6.911376, -5.61693, -1.416285, -6.296993, -6.933422, -1.175507, -6.502175, -5.621684, -1.333069, -6.709269, -6.940482, -1.035277, -5.991226, -5.621685, -1.333069, -5.884716, -5.633677, -1.094783, -5.682609, -5.688968, 0.004296, -6.296993, -6.970223, -0.444103, -6.087693, -5.684216, -0.090228, -5.876442, -6.970222, -0.444103, -6.506293, -5.688968, 0.004296, -6.296993, -5.684216, -0.090228, -6.717543, -5.668921, -0.393862, -6.954294, -6.970222, -0.444103, -6.506293, -5.684216, -0.090228, -6.717543, -6.970223, -0.444103, -6.087693, -5.668921, -0.393862, -5.639691, -5.684216, -0.090228, -5.876442, -6.933423, -1.175507, -6.09181, -5.61693, -1.416285, -6.296993, -5.621685, -1.333069, -5.884716, -7.311784, -0.973861, -6.206897, -6.930625, -1.231287, -6.296993, -6.933423, -1.175507, -6.09181, -6.930625, -1.231287, -6.296993, -7.311784, -0.973861, -6.387088, -6.933422, -1.175507, -6.502175, -6.973019, -0.388476, -6.296993, -7.321102, -0.695942, -6.200603, -6.970223, -0.444103, -6.087693, -7.321102, -0.695942, -6.393382, -6.973019, -0.388476, -6.296993, -6.970222, -0.444103, -6.506293, -5.633677, -1.094783, -5.682609, -6.961221, -0.62279, -5.969866, -6.940482, -1.035277, -5.991226, -6.970222, -0.444103, -6.506293, -6.961221, -0.62279, -6.62412, -7.321102, -0.695942, -6.393382, -6.933422, -1.175507, -6.502175, -7.311784, -0.973861, -6.387088, -6.940481, -1.035277, -6.60276, -7.311784, -0.973861, -6.387088, -6.961221, -0.62279, -6.62412, -6.940481, -1.035277, -6.60276, -2.449613, -0.995583, -6.9789, -3.968351, -0.269302, -7.036859, -2.481038, -0.100893, -7.033882, -5.633677, -1.094783, -6.911376, -3.968351, -0.269302, -7.036859, -3.925845, -1.11465, -6.98855, -6.961221, -0.62279, -6.62412, -5.633677, -1.094783, -6.911376, -6.940481, -1.035277, -6.60276, -6.961221, -0.62279, -5.969866, -6.970223, -0.444103, -6.087693, -7.321102, -0.695942, -6.200603, -6.933423, -1.175507, -6.09181, -6.940482, -1.035277, -5.991226, -7.311784, -0.973861, -6.206897, -6.961221, -0.62279, -5.969866, -7.311784, -0.973861, -6.206897, -6.940482, -1.035277, -5.991226, -7.311784, -0.973861, -6.387088, -7.396279, -0.832033, -6.296993, -7.321102, -0.695942, -6.393382, -7.311784, -0.973861, -6.206897, -7.396279, -0.832033, -6.296993, -7.335755, -1.015646, -6.296993, -7.335755, -1.015646, -6.296993, -7.396279, -0.832033, -6.296993, -7.311784, -0.973861, -6.387088, -7.321102, -0.695942, -6.393382, -7.396279, -0.832033, -6.296993, -7.354804, -0.636946, -6.296993, -7.354804, -0.636946, -6.296993, -7.396279, -0.832033, -6.296993, -7.321102, -0.695942, -6.200603, -7.321102, -0.695942, -6.200603, -7.396279, -0.832033, -6.296993, -7.311784, -0.973861, -6.206897, 7.457666, 0.149041, -6.29699, 6.535221, 0.21147, -6.693855, 6.515975, 0.31672, -6.29699, 7.487844, -0.072829, -6.557311, 7.487844, -1.044358, -6.29699, 7.487844, -0.974605, -6.557311, 7.487844, -0.072829, -6.03667, 7.487844, -1.044358, -6.29699, 7.487844, -0.003077, -6.29699, 7.487844, -0.263397, -6.747878, 7.487844, -0.974605, -6.557311, 7.487844, -0.784038, -6.747878, 7.487844, -0.523717, -6.817631, 7.487844, -0.263397, -6.747878, 7.487844, -0.784038, -6.747878, 7.487844, -0.263397, -5.846103, 7.487844, -0.974605, -6.03667, 7.487844, -0.072829, -6.03667, 7.487844, -0.523717, -5.77635, 7.487844, -0.784038, -5.846103, 7.487844, -0.263397, -5.846103, 4.306357, -0.065003, 12.623335, 4.18845, -0.353931, 12.795655, 4.306357, -0.353931, 12.700752, 4.306357, -0.353931, 12.700752, 4.18845, -0.69031, 12.705523, 4.306357, -0.642859, 12.623335, 4.306357, 0.223925, 12.122897, 4.188449, 0.228694, 12.459276, 4.306357, 0.146507, 12.411825, 4.306357, -0.642859, 12.623335, 4.18845, -0.936557, 12.459276, 4.306357, -0.854369, 12.411825, 4.306357, 0.146507, 12.411825, 4.188449, -0.017552, 12.705523, 4.306357, -0.065003, 12.623335, 4.306357, -0.931787, 12.122897, 4.18845, -0.936557, 12.459276, 4.18845, -1.026689, 12.122897, 4.188449, 0.318827, 12.122897, 3.440112, 0.350808, 12.525637, 4.188449, 0.228694, 12.459276, 4.18845, -0.69031, 12.705523, 3.565468, -1.038681, 12.525637, 4.18845, -0.936557, 12.459276, 4.188449, 0.228694, 12.459276, 3.466603, 0.057174, 12.820463, 4.188449, -0.017552, 12.705523, 4.18845, -0.936557, 12.459276, 3.575164, -1.138928, 12.122897, 4.18845, -1.026689, 12.122897, 4.188449, -0.017552, 12.705523, 3.50279, -0.343937, 12.928376, 4.18845, -0.353931, 12.795655, 4.18845, -0.353931, 12.795655, 3.538977, -0.745047, 12.820463, 4.18845, -0.69031, 12.705523, 0.645114, -0.843216, 12.742084, 3.565468, -1.038681, 12.525637, 3.538977, -0.745047, 12.820463, 3.440112, 0.350808, 12.525637, 0.645113, 0.050006, 12.801257, 3.466603, 0.057174, 12.820463, 0.645114, -1.159171, 12.410678, 3.575164, -1.138928, 12.122897, 3.565468, -1.038681, 12.525637, 3.466603, 0.057174, 12.820463, 0.645113, -0.457455, 12.86982, 3.50279, -0.343937, 12.928376, 0.645114, 0.409266, 11.732852, 3.430416, 0.458285, 12.122897, 3.440112, 0.350808, 11.720157, 3.50279, -0.343937, 12.928376, 0.645114, -0.843216, 12.742084, 3.538977, -0.745047, 12.820463, -2.953567, -0.786161, 12.122895, -3.369815, -0.401793, 12.268698, -3.369815, -0.438625, 12.122895, -2.384867, 0.029482, 12.721495, -2.384867, 0.278758, 12.468496, -3.369815, 0.074377, 12.268698, -2.08919, -0.448801, 12.638387, -3.369815, -0.401793, 12.268698, -2.384867, -0.615198, 12.316885, -2.384867, 0.37, 12.122896, -3.369815, 0.074377, 12.268698, -2.384867, 0.278758, 12.468496, -2.384867, -0.615198, 12.316885, -2.824444, -0.716735, 12.255299, -2.105436, -0.940079, 12.29037, 0.645113, 0.050006, 12.801257, -0.962391, 0.351322, 12.517546, -0.962391, -0.008162, 12.811404, 0.645114, -1.159171, 12.410678, -0.962391, -0.84642, 12.706156, -0.962391, -1.117826, 12.335661, 0.645114, 0.409266, 12.512939, -0.962391, 0.460424, 12.122896, -0.962391, 0.351322, 12.517546, 0.645114, -0.843216, 12.742084, -0.962391, -0.526441, 12.853209, -0.962391, -0.84642, 12.706156, 0.645113, -0.457455, 12.86982, -0.962391, -0.008162, 12.811404, -0.962391, -0.526441, 12.853209, 0.645114, -1.204147, 12.122896, -0.962391, -1.117826, 12.335661, -0.962391, -1.147118, 12.122896, -0.962391, 0.351322, 12.517546, -2.384867, 0.029482, 12.721495, -0.962391, -0.008162, 12.811404, -0.962391, 0.460424, 12.122896, -2.384867, 0.278758, 12.468496, -0.962391, 0.351322, 12.517546, -0.962391, -0.008162, 12.811404, -2.08919, -0.448801, 12.638387, -0.962391, -0.526441, 12.853209, -0.962391, -1.147118, 12.122896, -2.105436, -0.940079, 12.29037, -2.384867, -0.992071, 12.122896, -0.962391, -0.725862, 12.445221, -2.384867, -0.615198, 12.316885, -0.962391, -1.117826, 12.335661, -0.962391, -0.526441, 12.853209, -2.384867, -0.615198, 12.316885, -0.962391, -0.725862, 12.445221, -0.962391, -1.117826, 12.335661, -2.384867, -0.615198, 12.316885, -2.105436, -0.940079, 12.29037, -0.962391, -0.526441, 12.853209, -2.08919, -0.448801, 12.638387, -2.384867, -0.615198, 12.316885, 4.18845, -0.353931, 11.450139, 4.306357, -0.065003, 11.622458, 4.306357, -0.353931, 11.545041, 4.306357, -0.642859, 11.622458, 4.18845, -0.353931, 11.450139, 4.306357, -0.353931, 11.545041, 4.188449, 0.228694, 11.786518, 4.306357, 0.223925, 12.122897, 4.306357, 0.146507, 11.833968, 4.306357, -0.854369, 11.833968, 4.18845, -0.69031, 11.540271, 4.306357, -0.642859, 11.622458, 4.188449, -0.017552, 11.540271, 4.306357, 0.146507, 11.833968, 4.306357, -0.065003, 11.622458, 4.306357, -0.931787, 12.122897, 4.18845, -0.936557, 11.786518, 4.306357, -0.854369, 11.833968, 3.440112, 0.350808, 11.720157, 4.188449, 0.318827, 12.122897, 4.188449, 0.228694, 11.786518, 3.565468, -1.038681, 11.720157, 4.18845, -0.69031, 11.540271, 4.18845, -0.936557, 11.786518, 3.466603, 0.057174, 11.42533, 4.188449, 0.228694, 11.786518, 4.188449, -0.017552, 11.540271, 3.575164, -1.138928, 12.122897, 4.18845, -0.936557, 11.786518, 4.18845, -1.026689, 12.122897, 3.50279, -0.343937, 11.317417, 4.188449, -0.017552, 11.540271, 4.18845, -0.353931, 11.450139, 3.538977, -0.745047, 11.42533, 4.18845, -0.353931, 11.450139, 4.18845, -0.69031, 11.540271, 3.565468, -1.038681, 11.720157, 0.645114, -0.843216, 11.503708, 3.538977, -0.745047, 11.42533, 0.645113, 0.050006, 11.444534, 3.440112, 0.350808, 11.720157, 3.466603, 0.057174, 11.42533, 3.575164, -1.138928, 12.122897, 0.645114, -1.159171, 11.835114, 3.565468, -1.038681, 11.720157, 0.645114, -0.457455, 11.375972, 3.466603, 0.057174, 11.42533, 3.50279, -0.343937, 11.317417, 0.645114, -0.843216, 11.503708, 3.50279, -0.343937, 11.317417, 3.538977, -0.745047, 11.42533, -2.953567, -0.786161, 12.122895, -3.369815, -0.401793, 11.977093, -2.824444, -0.716735, 11.990492, -2.384867, 0.029482, 11.524297, -3.369815, 0.074377, 11.977093, -2.384867, 0.278758, 11.777295, -2.089189, -0.448801, 11.607405, -2.384867, -0.615198, 11.928906, -3.369815, -0.401793, 11.977093, -3.369815, 0.074377, 11.977093, -2.384867, 0.37, 12.122896, -2.384867, 0.278758, 11.777295, -2.824444, -0.716735, 11.990492, -2.384867, -0.615198, 11.928906, -2.105436, -0.940079, 11.955421, 0.645113, 0.050006, 11.444534, -0.962391, 0.351322, 11.728246, 0.645114, 0.409266, 11.732852, 0.645114, -1.159171, 11.835114, -0.962391, -0.84642, 11.539636, 0.645114, -0.843216, 11.503708, 0.645114, 0.409266, 11.732852, -0.962391, 0.460424, 12.122896, 0.645114, 0.52697, 12.122896, 0.645114, -0.843216, 11.503708, -0.962391, -0.526441, 11.392582, 0.645114, -0.457455, 11.375972, 0.645114, -0.457455, 11.375972, -0.962391, -0.008162, 11.434387, 0.645113, 0.050006, 11.444534, 0.645114, -1.204147, 12.122896, -0.962391, -1.117826, 11.910131, 0.645114, -1.159171, 11.835114, -2.384867, 0.029482, 11.524297, -0.962391, 0.351322, 11.728246, -0.962391, -0.008162, 11.434387, -2.384867, 0.278758, 11.777295, -0.962391, 0.460424, 12.122896, -0.962391, 0.351322, 11.728246, -2.089189, -0.448801, 11.607405, -0.962391, -0.008162, 11.434387, -0.962391, -0.526441, 11.392582, -0.962391, -1.147118, 12.122896, -2.105436, -0.940079, 11.955421, -0.962391, -1.117826, 11.910131, -0.962391, -0.725862, 11.80057, -0.962391, -1.117826, 11.910131, -2.384867, -0.615198, 11.928906, -0.962391, -0.526441, 11.392582, -0.962391, -0.725862, 11.80057, -2.384867, -0.615198, 11.928906, -0.962391, -1.117826, 11.910131, -2.105436, -0.940079, 11.955421, -2.384867, -0.615198, 11.928906, -0.962391, -0.526441, 11.392582, -2.384867, -0.615198, 11.928906, -2.089189, -0.448801, 11.607405, 4.306357, -0.854369, 11.833968, 4.218628, -0.614251, 11.672009, 4.218628, -0.804819, 11.862576, 4.306357, -0.353931, 12.700752, 4.218628, -0.614251, 12.573785, 4.218628, -0.353931, 12.643538, 4.306357, 0.146507, 11.833968, 4.218628, -0.093611, 11.672009, 4.306357, -0.065003, 11.622458, 4.306357, 0.146507, 12.411825, 4.218628, 0.166709, 12.122897, 4.306357, 0.223925, 12.122897, 4.306357, -0.931787, 12.122897, 4.218628, -0.804819, 11.862576, 4.218628, -0.874572, 12.122897, 4.306357, -0.642859, 12.623335, 4.218628, -0.804819, 12.383218, 4.218628, -0.614251, 12.573785, 4.306357, -0.065003, 12.623335, 4.218628, 0.096957, 12.383218, 4.306357, 0.146507, 12.411825, 4.306357, -0.353931, 11.545041, 4.218628, -0.093611, 11.672009, 4.218628, -0.353931, 11.602257, 4.306357, -0.854369, 12.411825, 4.218628, -0.874572, 12.122897, 4.218628, -0.804819, 12.383218, 4.306357, -0.353931, 11.545041, 4.218628, -0.614251, 11.672009, 4.306357, -0.642859, 11.622458, 4.306357, -0.353931, 12.700752, 4.218628, -0.093611, 12.573785, 4.306357, -0.065003, 12.623335, 4.306357, 0.223925, 12.122897, 4.218628, 0.096957, 11.862576, 4.306357, 0.146507, 11.833968, -0.962391, -0.84642, 12.706156, -0.962391, -0.526441, 12.853209, -0.962392, -0.725862, 12.445221, -0.962392, -0.725862, 12.445221, -0.962391, -1.117826, 12.335661, -0.962391, -0.84642, 12.706156, -0.962391, -0.84642, 11.539636, -0.962392, -0.725862, 11.80057, -0.962391, -0.526441, 11.392582, -0.962392, -0.725862, 11.80057, -0.962391, -0.84642, 11.539636, -0.962391, -1.117826, 11.910131, 3.430416, 0.458285, 12.122897, 0.645114, 0.409266, 12.512939, 3.440112, 0.350808, 12.525637, 4.218628, -0.804819, 12.383218, 4.218628, 0.166709, 12.122897, 4.218628, 0.096957, 12.383218, 4.218628, -0.093611, 12.573785, 4.218628, -0.804819, 12.383218, 4.218628, 0.096957, 12.383218, 4.218628, 0.166709, 12.122897, 4.218628, -0.804819, 11.862576, 4.218628, 0.096957, 11.862576, 4.218628, -0.093611, 11.672009, 4.218628, -0.804819, 11.862576, 4.218628, -0.614251, 11.672009, 4.218628, -0.353931, 11.602257, 4.218628, -0.093611, 11.672009, 4.218628, -0.614251, 11.672009, 4.218628, -0.353931, 12.643538, 4.218628, -0.614251, 12.573785, 4.218628, -0.093611, 12.573785, -2.384867, -0.992071, 12.122896, -2.824444, -0.716735, 11.990492, -2.105436, -0.940079, 11.955421, -2.384867, -0.992071, 12.122896, -2.824444, -0.716735, 12.255299, -2.953567, -0.786161, 12.122895, 4.188455, -0.353931, -12.795653, 4.306362, -0.065003, -12.623333, 4.306362, -0.353931, -12.70075, 4.188455, -0.69031, -12.705521, 4.306362, -0.353931, -12.70075, 4.306362, -0.642859, -12.623333, 4.188454, 0.228694, -12.459274, 4.306362, 0.223925, -12.122895, 4.306362, 0.146507, -12.411823, 4.188455, -0.936557, -12.459274, 4.306362, -0.642859, -12.623333, 4.306362, -0.854369, -12.411823, 4.188454, -0.017552, -12.705521, 4.306362, 0.146507, -12.411823, 4.306362, -0.065003, -12.623333, 4.306362, -0.931787, -12.122895, 4.188455, -0.936557, -12.459274, 4.306362, -0.854369, -12.411823, 3.440117, 0.350808, -12.525635, 4.188454, 0.318827, -12.122895, 4.188454, 0.228694, -12.459274, 3.565473, -1.038681, -12.525635, 4.188455, -0.69031, -12.705521, 4.188455, -0.936557, -12.459274, 3.466608, 0.057174, -12.820461, 4.188454, 0.228694, -12.459274, 4.188454, -0.017552, -12.705521, 3.575169, -1.138928, -12.122895, 4.188455, -0.936557, -12.459274, 4.188455, -1.026689, -12.122895, 3.502795, -0.343937, -12.928374, 4.188454, -0.017552, -12.705521, 4.188455, -0.353931, -12.795653, 3.538982, -0.745047, -12.820461, 4.188455, -0.353931, -12.795653, 4.188455, -0.69031, -12.705521, 3.565473, -1.038681, -12.525635, 0.645119, -0.843216, -12.742084, 3.538982, -0.745047, -12.820461, 3.440117, 0.350808, -12.525635, 0.645118, 0.050006, -12.801257, 0.645118, 0.409266, -12.512939, 3.575169, -1.138928, -12.122895, 0.645118, -1.159171, -12.410678, 3.565473, -1.038681, -12.525635, 3.466608, 0.057174, -12.820461, 0.645118, -0.457455, -12.86982, 0.645118, 0.050006, -12.801257, 3.430421, 0.458285, -12.122895, 0.645118, 0.409266, -11.732852, 3.440117, 0.350808, -11.720155, 3.502795, -0.343937, -12.928374, 0.645119, -0.843216, -12.742084, 0.645118, -0.457455, -12.86982, -2.953562, -0.786161, -12.122897, -3.36981, -0.401793, -12.2687, -2.824439, -0.716735, -12.255301, -2.384862, 0.029482, -12.721495, -3.36981, 0.074377, -12.2687, -2.384862, 0.278758, -12.468496, -2.089185, -0.448801, -12.638387, -2.384862, -0.615198, -12.316885, -3.36981, -0.401793, -12.2687, -3.36981, 0.074377, -12.2687, -2.384862, 0.37, -12.122896, -2.384862, 0.278758, -12.468496, -2.824439, -0.716735, -12.255301, -2.384862, -0.615198, -12.316885, -2.105431, -0.940079, -12.29037, 0.645118, 0.050006, -12.801257, -0.962386, 0.351322, -12.517546, 0.645118, 0.409266, -12.512939, 0.645118, -1.159171, -12.410678, -0.962386, -0.84642, -12.706156, 0.645119, -0.843216, -12.742084, 0.645118, 0.409266, -12.512939, -0.962386, 0.460424, -12.122896, 0.645118, 0.52697, -12.122896, 0.645119, -0.843216, -12.742084, -0.962386, -0.526441, -12.853209, 0.645118, -0.457455, -12.86982, 0.645118, -0.457455, -12.86982, -0.962386, -0.008162, -12.811404, 0.645118, 0.050006, -12.801257, 0.645118, -1.204147, -12.122896, -0.962386, -1.117826, -12.335661, 0.645118, -1.159171, -12.410678, -2.384862, 0.029482, -12.721495, -0.962386, 0.351322, -12.517546, -0.962386, -0.008162, -12.811404, -2.384862, 0.278758, -12.468496, -0.962386, 0.460424, -12.122896, -0.962386, 0.351322, -12.517546, -2.089185, -0.448801, -12.638387, -0.962386, -0.008162, -12.811404, -0.962386, -0.526441, -12.853209, -0.962386, -1.147118, -12.122896, -2.105431, -0.940079, -12.29037, -0.962386, -1.117826, -12.335661, -0.962386, -0.725862, -12.445221, -0.962386, -1.117826, -12.335661, -2.384862, -0.615198, -12.316885, -0.962386, -0.526441, -12.853209, -0.962386, -0.725862, -12.445221, -2.384862, -0.615198, -12.316885, -0.962386, -1.117826, -12.335661, -2.105431, -0.940079, -12.29037, -2.384862, -0.615198, -12.316885, -0.962386, -0.526441, -12.853209, -2.384862, -0.615198, -12.316885, -2.089185, -0.448801, -12.638387, 4.306362, -0.065003, -11.622457, 4.188455, -0.353931, -11.450137, 4.306362, -0.353931, -11.545039, 4.306362, -0.642859, -11.622457, 4.188455, -0.353931, -11.450137, 4.188455, -0.69031, -11.540269, 4.306362, 0.223925, -12.122895, 4.188454, 0.228694, -11.786516, 4.306362, 0.146507, -11.833966, 4.306362, -0.854369, -11.833966, 4.188455, -0.69031, -11.540269, 4.188455, -0.936557, -11.786516, 4.306362, 0.146507, -11.833966, 4.188454, -0.017552, -11.540269, 4.306362, -0.065003, -11.622457, 4.306362, -0.931787, -12.122895, 4.188455, -0.936557, -11.786516, 4.188455, -1.026689, -12.122895, 4.188454, 0.318827, -12.122895, 3.440117, 0.350808, -11.720155, 4.188454, 0.228694, -11.786516, 4.188455, -0.69031, -11.540269, 3.565473, -1.038681, -11.720155, 4.188455, -0.936557, -11.786516, 4.188454, 0.228694, -11.786516, 3.466607, 0.057174, -11.425328, 4.188454, -0.017552, -11.540269, 4.188455, -0.936557, -11.786516, 3.575169, -1.138928, -12.122895, 4.188455, -1.026689, -12.122895, 4.188454, -0.017552, -11.540269, 3.502795, -0.343937, -11.317415, 4.188455, -0.353931, -11.450137, 4.188455, -0.353931, -11.450137, 3.538982, -0.745047, -11.425328, 4.188455, -0.69031, -11.540269, 3.565473, -1.038681, -11.720155, 0.645118, -0.843216, -11.503708, 0.645118, -1.159171, -11.835114, 3.440117, 0.350808, -11.720155, 0.645118, 0.050006, -11.444534, 3.466607, 0.057174, -11.425328, 3.575169, -1.138928, -12.122895, 0.645118, -1.159171, -11.835114, 0.645118, -1.204147, -12.122896, 3.466607, 0.057174, -11.425328, 0.645118, -0.457455, -11.375972, 3.502795, -0.343937, -11.317415, 3.502795, -0.343937, -11.317415, 0.645118, -0.843216, -11.503708, 3.538982, -0.745047, -11.425328, -2.953562, -0.786161, -12.122897, -3.36981, -0.401793, -11.977095, -3.36981, -0.438625, -12.122897, -2.384863, 0.029482, -11.524297, -2.384862, 0.278758, -11.777295, -3.36981, 0.074377, -11.977095, -2.089185, -0.448801, -11.607405, -3.36981, -0.401793, -11.977095, -2.384862, -0.615198, -11.928906, -2.384862, 0.37, -12.122896, -3.36981, 0.074377, -11.977095, -2.384862, 0.278758, -11.777295, -2.384862, -0.615198, -11.928906, -2.824439, -0.716735, -11.990494, -2.105431, -0.940079, -11.955421, 0.645118, 0.050006, -11.444534, -0.962386, 0.351322, -11.728246, -0.962387, -0.008162, -11.434387, 0.645118, -1.159171, -11.835114, -0.962386, -0.84642, -11.539636, -0.962386, -1.117826, -11.910131, 0.645118, 0.409266, -11.732852, -0.962386, 0.460424, -12.122896, -0.962386, 0.351322, -11.728246, 0.645118, -0.843216, -11.503708, -0.962386, -0.526441, -11.392582, -0.962386, -0.84642, -11.539636, 0.645118, -0.457455, -11.375972, -0.962387, -0.008162, -11.434387, -0.962386, -0.526441, -11.392582, 0.645118, -1.204147, -12.122896, -0.962386, -1.117826, -11.910131, -0.962386, -1.147118, -12.122896, -0.962386, 0.351322, -11.728246, -2.384863, 0.029482, -11.524297, -0.962387, -0.008162, -11.434387, -0.962386, 0.460424, -12.122896, -2.384862, 0.278758, -11.777295, -0.962386, 0.351322, -11.728246, -0.962387, -0.008162, -11.434387, -2.089185, -0.448801, -11.607405, -0.962386, -0.526441, -11.392582, -0.962386, -1.147118, -12.122896, -2.105431, -0.940079, -11.955421, -2.384862, -0.992071, -12.122896, -0.962387, -0.725862, -11.80057, -2.384862, -0.615198, -11.928906, -0.962386, -1.117826, -11.910131, -0.962386, -0.526441, -11.392582, -2.384862, -0.615198, -11.928906, -0.962387, -0.725862, -11.80057, -0.962386, -1.117826, -11.910131, -2.384862, -0.615198, -11.928906, -2.105431, -0.940079, -11.955421, -0.962386, -0.526441, -11.392582, -2.089185, -0.448801, -11.607405, -2.384862, -0.615198, -11.928906, 4.306362, -0.854369, -11.833966, 4.218633, -0.614251, -11.672007, 4.306362, -0.642859, -11.622457, 4.306362, -0.353931, -12.70075, 4.218633, -0.614251, -12.573783, 4.306362, -0.642859, -12.623333, 4.218633, -0.093611, -11.672007, 4.306362, 0.146507, -11.833966, 4.306362, -0.065003, -11.622457, 4.218633, 0.166709, -12.122895, 4.306362, 0.146507, -12.411823, 4.306362, 0.223925, -12.122895, 4.306362, -0.931787, -12.122895, 4.218633, -0.804819, -11.862575, 4.306362, -0.854369, -11.833966, 4.306362, -0.642859, -12.623333, 4.218633, -0.804819, -12.383216, 4.306362, -0.854369, -12.411823, 4.218633, 0.096957, -12.383216, 4.306362, -0.065003, -12.623333, 4.306362, 0.146507, -12.411823, 4.306362, -0.353931, -11.545039, 4.218633, -0.093611, -11.672007, 4.306362, -0.065003, -11.622457, 4.306362, -0.854369, -12.411823, 4.218633, -0.874572, -12.122895, 4.306362, -0.931787, -12.122895, 4.218633, -0.614251, -11.672007, 4.306362, -0.353931, -11.545039, 4.306362, -0.642859, -11.622457, 4.218633, -0.093611, -12.573783, 4.306362, -0.353931, -12.70075, 4.306362, -0.065003, -12.623333, 4.218633, 0.096957, -11.862575, 4.306362, 0.223925, -12.122895, 4.306362, 0.146507, -11.833966, -0.962386, -0.84642, -12.706156, -0.962387, -0.725862, -12.445221, -0.962386, -0.526441, -12.853209, -0.962387, -0.725862, -12.445221, -0.962386, -0.84642, -12.706156, -0.962386, -1.117826, -12.335661, -0.962387, -0.84642, -11.539636, -0.962387, -0.526441, -11.392582, -0.962387, -0.725862, -11.80057, -0.962387, -0.725862, -11.80057, -0.962387, -1.117826, -11.910131, -0.962387, -0.84642, -11.539636, 3.430421, 0.458285, -12.122895, 0.645118, 0.409266, -12.512939, 0.645118, 0.52697, -12.122896, 4.218633, 0.166709, -12.122895, 4.218633, -0.804819, -12.383216, 4.218633, 0.096957, -12.383216, 4.218633, -0.093611, -12.573783, 4.218633, -0.804819, -12.383216, 4.218633, -0.614251, -12.573783, 4.218633, -0.804819, -11.862575, 4.218633, 0.166709, -12.122895, 4.218633, 0.096957, -11.862575, 4.218633, -0.093611, -11.672007, 4.218633, -0.804819, -11.862575, 4.218633, 0.096957, -11.862575, 4.218633, -0.353931, -11.602255, 4.218633, -0.614251, -11.672007, 4.218633, -0.093611, -11.672007, 4.218633, -0.353931, -12.643536, 4.218633, -0.093611, -12.573783, 4.218633, -0.614251, -12.573783, -2.384862, -0.992071, -12.122896, -2.824439, -0.716735, -11.990494, -2.953562, -0.786161, -12.122897, -2.384862, -0.992071, -12.122896, -2.824439, -0.716735, -12.255301, -2.105431, -0.940079, -12.29037, 5.639619, 0.137238, 12.131458, 4.206053, -0.008342, 11.779998, 4.206053, 0.137238, 12.131458, 5.639619, 0.137238, 12.131458, 6.054387, -0.077953, 11.849609, 5.639619, -0.008342, 11.779998, 5.639619, -0.008342, 11.779998, 4.206053, -0.359803, 11.634418, 4.206053, -0.008342, 11.779998, 5.639619, -0.008342, 11.779998, 6.054387, -0.359803, 11.732863, 5.639619, -0.359803, 11.634418, 5.639619, -0.359803, 11.634418, 4.206053, -0.711264, 11.779998, 4.206053, -0.359803, 11.634418, 5.639619, -0.359803, 11.634418, 6.054387, -0.641652, 11.849609, 5.639619, -0.711264, 11.779998, 5.639619, -0.711264, 11.779998, 4.206053, -0.856843, 12.131458, 4.206053, -0.711264, 11.779998, 6.054387, -0.641652, 11.849609, 5.639619, -0.856843, 12.131458, 5.639619, -0.711264, 11.779998, 5.639619, -0.856843, 12.131458, 6.054387, -0.641652, 12.413308, 5.639619, -0.711264, 12.48292, 5.639619, -0.856843, 12.131458, 4.206053, -0.711264, 12.48292, 4.206053, -0.856843, 12.131458, 6.054387, -0.641652, 12.413308, 5.639619, -0.359803, 12.628499, 5.639619, -0.711264, 12.48292, 5.639619, -0.711264, 12.48292, 4.206053, -0.359803, 12.628499, 4.206053, -0.711264, 12.48292, 6.054387, -0.359803, 12.530054, 5.639619, -0.008342, 12.48292, 5.639619, -0.359803, 12.628499, 6.054387, -0.359803, 12.530054, 6.409225, -0.359803, 12.352663, 6.054387, -0.077953, 12.413308, 5.639619, -0.359803, 12.628499, 4.206053, -0.008342, 12.48292, 4.206053, -0.359803, 12.628499, 6.409225, -0.138599, 12.131458, 6.054387, -0.077953, 12.413308, 6.409225, -0.359803, 12.352663, 5.639619, -0.008342, 12.48292, 4.206053, 0.137238, 12.131458, 4.206053, -0.008342, 12.48292, 6.409225, -0.359803, 12.352663, 6.510183, -0.359803, 12.131458, 6.409225, -0.138599, 12.131458, 6.054387, -0.077953, 12.413308, 5.639619, 0.137238, 12.131458, 5.639619, -0.008342, 12.48292, 6.054387, 0.038793, 12.131458, 6.054387, -0.077953, 12.413308, 6.409225, -0.138599, 12.131458, 6.054387, -0.359803, 12.530054, 6.054387, -0.641652, 12.413308, 6.409225, -0.359803, 12.352663, 6.054387, -0.758398, 12.131458, 6.409225, -0.581007, 12.131458, 6.054387, -0.641652, 12.413308, 6.054387, -0.641652, 12.413308, 6.409225, -0.581007, 12.131458, 6.409225, -0.359803, 12.352663, 6.409225, -0.581007, 12.131458, 6.510183, -0.359803, 12.131458, 6.409225, -0.359803, 12.352663, 6.054387, 0.038793, 12.131458, 6.409225, -0.138599, 12.131458, 6.054387, -0.077953, 11.849609, 6.054387, -0.359803, 11.732863, 6.054387, -0.077953, 11.849609, 6.409225, -0.359803, 11.910255, 6.054387, -0.077953, 11.849609, 6.409225, -0.138599, 12.131458, 6.409225, -0.359803, 11.910255, 6.409225, -0.138599, 12.131458, 6.510183, -0.359803, 12.131458, 6.409225, -0.359803, 11.910255, 6.409225, -0.359803, 11.910255, 6.510183, -0.359803, 12.131458, 6.409225, -0.581007, 12.131458, 6.054387, -0.359803, 11.732863, 6.409225, -0.359803, 11.910255, 6.054387, -0.641652, 11.849609, 6.054387, -0.758398, 12.131458, 6.054387, -0.641652, 11.849609, 6.409225, -0.581007, 12.131458, 6.409225, -0.581007, 12.131458, 6.054387, -0.641652, 11.849609, 6.409225, -0.359803, 11.910255, 4.206058, -0.008342, -11.779996, 5.639624, 0.137238, -12.131456, 4.206058, 0.137238, -12.131456, 5.639624, 0.137238, -12.131456, 6.054391, -0.077953, -11.849607, 6.054391, 0.038793, -12.131456, 4.206058, -0.359803, -11.634417, 5.639624, -0.008342, -11.779996, 4.206058, -0.008342, -11.779996, 5.639624, -0.008342, -11.779996, 6.054391, -0.359803, -11.732862, 6.054391, -0.077953, -11.849607, 4.206058, -0.711264, -11.779996, 5.639624, -0.359803, -11.634417, 4.206058, -0.359803, -11.634417, 5.639624, -0.359803, -11.634417, 6.054391, -0.641652, -11.849607, 6.054391, -0.359803, -11.732862, 4.206058, -0.856843, -12.131456, 5.639624, -0.711264, -11.779996, 4.206058, -0.711264, -11.779996, 5.639624, -0.856843, -12.131456, 6.054391, -0.641652, -11.849607, 5.639624, -0.711264, -11.779996, 5.639624, -0.856843, -12.131456, 6.054391, -0.641652, -12.413306, 6.054391, -0.758398, -12.131456, 4.206058, -0.711264, -12.482918, 5.639624, -0.856843, -12.131456, 4.206058, -0.856843, -12.131456, 5.639624, -0.359803, -12.628497, 6.054391, -0.641652, -12.413306, 5.639624, -0.711264, -12.482918, 4.206058, -0.359803, -12.628497, 5.639624, -0.711264, -12.482918, 4.206058, -0.711264, -12.482918, 5.639624, -0.008342, -12.482918, 6.054391, -0.359803, -12.530052, 5.639624, -0.359803, -12.628497, 6.054391, -0.359803, -12.530052, 6.054391, -0.077953, -12.413306, 6.40923, -0.359803, -12.352661, 4.206058, -0.008342, -12.482918, 5.639624, -0.359803, -12.628497, 4.206058, -0.359803, -12.628497, 6.40923, -0.138599, -12.131456, 6.40923, -0.359803, -12.352661, 6.054391, -0.077953, -12.413306, 4.206058, 0.137238, -12.131456, 5.639624, -0.008342, -12.482918, 4.206058, -0.008342, -12.482918, 6.40923, -0.359803, -12.352661, 6.40923, -0.138599, -12.131456, 6.510188, -0.359803, -12.131456, 5.639624, 0.137238, -12.131456, 6.054391, -0.077953, -12.413306, 5.639624, -0.008342, -12.482918, 6.054391, 0.038793, -12.131456, 6.40923, -0.138599, -12.131456, 6.054391, -0.077953, -12.413306, 6.054391, -0.359803, -12.530052, 6.40923, -0.359803, -12.352661, 6.054391, -0.641652, -12.413306, 6.054391, -0.758398, -12.131456, 6.054391, -0.641652, -12.413306, 6.40923, -0.581007, -12.131456, 6.054391, -0.641652, -12.413306, 6.40923, -0.359803, -12.352661, 6.40923, -0.581007, -12.131456, 6.40923, -0.581007, -12.131456, 6.40923, -0.359803, -12.352661, 6.510188, -0.359803, -12.131456, 6.054391, 0.038793, -12.131456, 6.054391, -0.077953, -11.849607, 6.40923, -0.138599, -12.131456, 6.054391, -0.359803, -11.732862, 6.40923, -0.359803, -11.910254, 6.054391, -0.077953, -11.849607, 6.054391, -0.077953, -11.849607, 6.40923, -0.359803, -11.910254, 6.40923, -0.138599, -12.131456, 6.40923, -0.138599, -12.131456, 6.40923, -0.359803, -11.910254, 6.510188, -0.359803, -12.131456, 6.40923, -0.359803, -11.910254, 6.40923, -0.581007, -12.131456, 6.510188, -0.359803, -12.131456, 6.054391, -0.359803, -11.732862, 6.054391, -0.641652, -11.849607, 6.40923, -0.359803, -11.910254, 6.054391, -0.758398, -12.131456, 6.40923, -0.581007, -12.131456, 6.054391, -0.641652, -11.849607, 6.40923, -0.581007, -12.131456, 6.40923, -0.359803, -11.910254, 6.054391, -0.641652, -11.849607, 8.912393, -0.026348, 6.303001, 7.478827, -0.171928, 5.95154, 7.478826, -0.026348, 6.303001, 8.912393, -0.026348, 6.303001, 9.32716, -0.241539, 6.021152, 8.912393, -0.171928, 5.951541, 7.478827, -0.171928, 5.95154, 8.912393, -0.523389, 5.805962, 7.478827, -0.523389, 5.805961, 8.912393, -0.171928, 5.951541, 9.32716, -0.523389, 5.904407, 8.912393, -0.523389, 5.805962, 8.912393, -0.523389, 5.805962, 7.478827, -0.87485, 5.95154, 7.478827, -0.523389, 5.805961, 8.912393, -0.523389, 5.805962, 9.32716, -0.805238, 6.021152, 8.912393, -0.87485, 5.951541, 7.478827, -0.87485, 5.95154, 8.912393, -1.020429, 6.303001, 7.478826, -1.020429, 6.303001, 9.32716, -0.805238, 6.021152, 8.912393, -1.020429, 6.303001, 8.912393, -0.87485, 5.951541, 8.912393, -1.020429, 6.303001, 9.32716, -0.805238, 6.584851, 8.912393, -0.87485, 6.654463, 8.912393, -1.020429, 6.303001, 7.478826, -0.87485, 6.654462, 7.478826, -1.020429, 6.303001, 9.32716, -0.805238, 6.584851, 8.912393, -0.523389, 6.800042, 8.912393, -0.87485, 6.654463, 8.912393, -0.87485, 6.654463, 7.478826, -0.523389, 6.800042, 7.478826, -0.87485, 6.654462, 9.32716, -0.523389, 6.701597, 8.912393, -0.171928, 6.654463, 8.912393, -0.523389, 6.800042, 9.32716, -0.523389, 6.701597, 9.681998, -0.523389, 6.524206, 9.32716, -0.241539, 6.584851, 7.478826, -0.523389, 6.800042, 8.912393, -0.171928, 6.654463, 7.478826, -0.171928, 6.654462, 9.681998, -0.302185, 6.303001, 9.32716, -0.241539, 6.584851, 9.681998, -0.523389, 6.524206, 7.478826, -0.171928, 6.654462, 8.912393, -0.026348, 6.303001, 7.478826, -0.026348, 6.303001, 9.681998, -0.523389, 6.524206, 9.782956, -0.523389, 6.303001, 9.681998, -0.302185, 6.303001, 9.32716, -0.241539, 6.584851, 8.912393, -0.026348, 6.303001, 8.912393, -0.171928, 6.654463, 9.32716, -0.124793, 6.303001, 9.32716, -0.241539, 6.584851, 9.681998, -0.302185, 6.303001, 9.32716, -0.523389, 6.701597, 9.32716, -0.805238, 6.584851, 9.681998, -0.523389, 6.524206, 9.32716, -0.921984, 6.303001, 9.681998, -0.744593, 6.303001, 9.32716, -0.805238, 6.584851, 9.32716, -0.805238, 6.584851, 9.681998, -0.744593, 6.303001, 9.681998, -0.523389, 6.524206, 9.681998, -0.744593, 6.303001, 9.782956, -0.523389, 6.303001, 9.681998, -0.523389, 6.524206, 9.32716, -0.124793, 6.303001, 9.681998, -0.302185, 6.303001, 9.32716, -0.241539, 6.021152, 9.32716, -0.523389, 5.904407, 9.32716, -0.241539, 6.021152, 9.681998, -0.523389, 6.081799, 9.32716, -0.241539, 6.021152, 9.681998, -0.302185, 6.303001, 9.681998, -0.523389, 6.081799, 9.681998, -0.302185, 6.303001, 9.782956, -0.523389, 6.303001, 9.681998, -0.523389, 6.081799, 9.681998, -0.523389, 6.081799, 9.782956, -0.523389, 6.303001, 9.681998, -0.744593, 6.303001, 9.32716, -0.523389, 5.904407, 9.681998, -0.523389, 6.081799, 9.32716, -0.805238, 6.021152, 9.32716, -0.921984, 6.303001, 9.32716, -0.805238, 6.021152, 9.681998, -0.744593, 6.303001, 9.681998, -0.744593, 6.303001, 9.32716, -0.805238, 6.021152, 9.681998, -0.523389, 6.081799, 7.478829, -0.026348, -6.302998, 8.912395, -0.171928, -5.951537, 8.912395, -0.026348, -6.302998, 8.912395, -0.026348, -6.302998, 9.327162, -0.241539, -6.021149, 9.327162, -0.124793, -6.302998, 7.478828, -0.523389, -5.805958, 8.912395, -0.171928, -5.951537, 7.478828, -0.171928, -5.951538, 8.912395, -0.171928, -5.951537, 9.327162, -0.523389, -5.904403, 9.327162, -0.241539, -6.021149, 7.478828, -0.523389, -5.805958, 8.912395, -0.87485, -5.951537, 8.912395, -0.523389, -5.805958, 8.912395, -0.523389, -5.805958, 9.327162, -0.805238, -6.021149, 9.327162, -0.523389, -5.904403, 7.478829, -1.020429, -6.302998, 8.912395, -0.87485, -5.951537, 7.478828, -0.87485, -5.951538, 8.912395, -1.020429, -6.302998, 9.327162, -0.805238, -6.021149, 8.912395, -0.87485, -5.951537, 8.912395, -1.020429, -6.302998, 9.327162, -0.805238, -6.584847, 9.327162, -0.921984, -6.302998, 7.478829, -1.020429, -6.302998, 8.912395, -0.87485, -6.654459, 8.912395, -1.020429, -6.302998, 8.912395, -0.523389, -6.800038, 9.327162, -0.805238, -6.584847, 8.912395, -0.87485, -6.654459, 7.478829, -0.523389, -6.800039, 8.912395, -0.87485, -6.654459, 7.478829, -0.87485, -6.654459, 8.912395, -0.171928, -6.654459, 9.327162, -0.523389, -6.701593, 8.912395, -0.523389, -6.800038, 9.327162, -0.523389, -6.701593, 9.327162, -0.241539, -6.584847, 9.682, -0.523389, -6.524202, 7.478829, -0.171928, -6.654459, 8.912395, -0.523389, -6.800038, 7.478829, -0.523389, -6.800039, 9.682, -0.302185, -6.302998, 9.682, -0.523389, -6.524202, 9.327162, -0.241539, -6.584847, 7.478829, -0.026348, -6.302998, 8.912395, -0.171928, -6.654459, 7.478829, -0.171928, -6.654459, 9.682, -0.523389, -6.524202, 9.682, -0.302185, -6.302998, 9.782958, -0.523389, -6.302998, 8.912395, -0.026348, -6.302998, 9.327162, -0.241539, -6.584847, 8.912395, -0.171928, -6.654459, 9.327162, -0.124793, -6.302998, 9.682, -0.302185, -6.302998, 9.327162, -0.241539, -6.584847, 9.327162, -0.523389, -6.701593, 9.682, -0.523389, -6.524202, 9.327162, -0.805238, -6.584847, 9.327162, -0.921984, -6.302998, 9.327162, -0.805238, -6.584847, 9.682, -0.744593, -6.302998, 9.327162, -0.805238, -6.584847, 9.682, -0.523389, -6.524202, 9.682, -0.744593, -6.302998, 9.682, -0.744593, -6.302998, 9.682, -0.523389, -6.524202, 9.782958, -0.523389, -6.302998, 9.327162, -0.124793, -6.302998, 9.327162, -0.241539, -6.021149, 9.682, -0.302185, -6.302998, 9.327162, -0.523389, -5.904403, 9.682, -0.523389, -6.081795, 9.327162, -0.241539, -6.021149, 9.327162, -0.241539, -6.021149, 9.682, -0.523389, -6.081795, 9.682, -0.302185, -6.302998, 9.682, -0.302185, -6.302998, 9.682, -0.523389, -6.081795, 9.782958, -0.523389, -6.302998, 9.682, -0.523389, -6.081795, 9.682, -0.744593, -6.302998, 9.782958, -0.523389, -6.302998, 9.327162, -0.523389, -5.904403, 9.327162, -0.805238, -6.021149, 9.682, -0.523389, -6.081795, 9.327162, -0.921984, -6.302998, 9.682, -0.744593, -6.302998, 9.327162, -0.805238, -6.021149, 9.682, -0.744593, -6.302998, 9.682, -0.523389, -6.081795, 9.327162, -0.805238, -6.021149, 2.820461, -1.315521, 12.118633, 2.860546, -1.261857, 12.326931, 2.820461, -1.288378, 12.354058, 2.820461, -1.227937, 12.49764, 2.860546, -1.134356, 12.488387, 2.820461, -1.137643, 12.536544, 2.860546, -1.134356, 11.748878, 2.820461, -1.227937, 11.739627, 2.820461, -1.137643, 11.700723, 2.860546, -1.261857, 11.910336, 2.820461, -1.315521, 12.118633, 2.820461, -1.288378, 11.883207, 2.820461, -1.288378, 12.354058, 2.860546, -1.215376, 12.453966, 2.820461, -1.227937, 12.49764, 2.860546, -1.134356, 12.488387, 2.820461, -1.009815, 12.494738, 2.820461, -1.137643, 12.536544, 2.820461, -1.009815, 11.742528, 2.860546, -1.134356, 11.748878, 2.820461, -1.137643, 11.700723, 2.860546, -1.215376, 11.783299, 2.820461, -1.288378, 11.883207, 2.820461, -1.227937, 11.739627, 1.848369, -1.302975, 12.335084, 2.400729, -1.358831, 12.118632, 2.400729, -1.327104, 12.390302, 1.848369, -1.141575, 12.562923, 2.400729, -1.254144, 12.555986, 2.400729, -1.154478, 12.60088, 2.400729, -1.254144, 11.681277, 1.848369, -1.141576, 11.67434, 2.400729, -1.154478, 11.636384, 2.400729, -1.358831, 12.118632, 1.848369, -1.302975, 11.902181, 2.400729, -1.327104, 11.846963, 1.848369, -1.234731, 12.521564, 2.400729, -1.327104, 12.390302, 2.400729, -1.254144, 12.555986, 2.400729, -0.993462, 12.552638, 1.848369, -1.141575, 12.562923, 2.400729, -1.154478, 12.60088, 1.848369, -1.141576, 11.67434, 2.400729, -0.993462, 11.684625, 2.400729, -1.154478, 11.636384, 2.400729, -1.327104, 11.846963, 1.848369, -1.234731, 11.715701, 2.400729, -1.254144, 11.681277, 1.374091, -1.166201, 12.430923, 1.848369, -1.302975, 12.335084, 1.848369, -1.234731, 12.521564, 1.374091, -1.021663, 12.434947, 1.848369, -1.141575, 12.562923, 1.848369, -1.003968, 12.518479, 1.848369, -1.141576, 11.67434, 1.374092, -1.021663, 11.802317, 1.848369, -1.003968, 11.718784, 1.848369, -1.302975, 11.902181, 1.374092, -1.166202, 11.80634, 1.848369, -1.234731, 11.715701, 1.848369, -1.302975, 12.335084, 1.374091, -1.21089, 12.118632, 1.848369, -1.320486, 12.118632, 1.848369, -1.141575, 12.562923, 1.374091, -1.166201, 12.430923, 1.848369, -1.234731, 12.521564, 1.848369, -1.234731, 11.715701, 1.374092, -1.166202, 11.80634, 1.848369, -1.141576, 11.67434, 1.848369, -1.320486, 12.118632, 1.374091, -1.21089, 12.118632, 1.848369, -1.302975, 11.902181, 2.820461, -1.227937, 11.739627, 2.400729, -1.327104, 11.846963, 2.400729, -1.254144, 11.681277, 2.400729, -0.993462, 11.684625, 2.820461, -1.137643, 11.700723, 2.400729, -1.154478, 11.636384, 2.820461, -1.137643, 12.536544, 2.400729, -0.993462, 12.552638, 2.400729, -1.154478, 12.60088, 2.400729, -1.327104, 12.390302, 2.820461, -1.227937, 12.49764, 2.400729, -1.254144, 12.555986, 2.820461, -1.288378, 11.883207, 2.400729, -1.358831, 12.118632, 2.400729, -1.327104, 11.846963, 2.820461, -1.137643, 11.700723, 2.400729, -1.254144, 11.681277, 2.400729, -1.154478, 11.636384, 2.400729, -1.254144, 12.555986, 2.820461, -1.137643, 12.536544, 2.400729, -1.154478, 12.60088, 2.400729, -1.358831, 12.118632, 2.820461, -1.288378, 12.354058, 2.400729, -1.327104, 12.390302, 2.860546, -1.009286, 11.785867, 2.831491, -1.129645, 11.790582, 2.860546, -1.134356, 11.748878, 2.860546, -1.261857, 11.910336, 2.831491, -1.197349, 11.821121, 2.831491, -1.233192, 11.933828, 2.860546, -1.286451, 12.118633, 2.831491, -1.233192, 12.303437, 2.860546, -1.261857, 12.326931, 2.860546, -1.261857, 12.326931, 2.831491, -1.197349, 12.416144, 2.860546, -1.215376, 12.453966, 2.860546, -1.215376, 11.783299, 2.831491, -1.129645, 11.790582, 2.831491, -1.197349, 11.821121, 2.860546, -1.286451, 12.118633, 2.831491, -1.233192, 11.933828, 2.831491, -1.255013, 12.118633, 2.860546, -1.215376, 12.453966, 2.831491, -1.129645, 12.446684, 2.860546, -1.134356, 12.488387, 2.860546, -1.009286, 12.4514, 2.831491, -1.129645, 12.446684, 2.831491, -1.009109, 12.413867, 2.831491, -1.129645, 11.790582, 2.831491, -1.009109, 12.413867, 2.831491, -1.129645, 12.446684, 2.831491, -1.197349, 11.821121, 2.831491, -1.129645, 12.446684, 2.831491, -1.197349, 12.416144, 2.831491, -1.233192, 11.933828, 2.831491, -1.197349, 12.416144, 2.831491, -1.233192, 12.303437, 2.831491, -1.255013, 12.118633, 2.831491, -1.233192, 11.933828, 2.831491, -1.233192, 12.303437, 1.374091, -1.166201, 12.430923, 1.374092, -1.021663, 11.802317, 1.374092, -1.166202, 11.80634, 1.374091, -1.21089, 12.118632, 1.374091, -1.166201, 12.430923, 1.374092, -1.166202, 11.80634, 2.820466, -1.315521, -12.118631, 2.860551, -1.261857, -12.326929, 2.860551, -1.286451, -12.118631, 2.820466, -1.227937, -12.497638, 2.860551, -1.134356, -12.488385, 2.860551, -1.215376, -12.453964, 2.820466, -1.227937, -11.739625, 2.860551, -1.134356, -11.748877, 2.820466, -1.137643, -11.700721, 2.820466, -1.315521, -12.118631, 2.860551, -1.261857, -11.910334, 2.820466, -1.288378, -11.883205, 2.820466, -1.288378, -12.354056, 2.860551, -1.215376, -12.453964, 2.860551, -1.261857, -12.326929, 2.820466, -1.009815, -12.494736, 2.860551, -1.134356, -12.488385, 2.820466, -1.137643, -12.536542, 2.820466, -1.009815, -11.742526, 2.860551, -1.134356, -11.748877, 2.860551, -1.009286, -11.785865, 2.820466, -1.288378, -11.883205, 2.860551, -1.215376, -11.783298, 2.820466, -1.227937, -11.739625, 2.400733, -1.358831, -12.118632, 1.848373, -1.302975, -12.335084, 2.400733, -1.327104, -12.390302, 2.400733, -1.254144, -12.555986, 1.848374, -1.141575, -12.562923, 2.400733, -1.154478, -12.60088, 2.400733, -1.254144, -11.681277, 1.848373, -1.141576, -11.67434, 1.848373, -1.234731, -11.715701, 2.400733, -1.358831, -12.118632, 1.848373, -1.302975, -11.902181, 1.848373, -1.320486, -12.118632, 2.400733, -1.327104, -12.390302, 1.848373, -1.234731, -12.521564, 2.400733, -1.254144, -12.555986, 2.400733, -0.993462, -12.552638, 1.848374, -1.141575, -12.562923, 1.848373, -1.003968, -12.518479, 2.400733, -0.993462, -11.684625, 1.848373, -1.141576, -11.67434, 2.400733, -1.154478, -11.636384, 2.400733, -1.327104, -11.846963, 1.848373, -1.234731, -11.715701, 1.848373, -1.302975, -11.902181, 1.848373, -1.302975, -12.335084, 1.374096, -1.166201, -12.430923, 1.848373, -1.234731, -12.521564, 1.848374, -1.141575, -12.562923, 1.374096, -1.021663, -12.434947, 1.848373, -1.003968, -12.518479, 1.848373, -1.141576, -11.67434, 1.374096, -1.021663, -11.802317, 1.374096, -1.166202, -11.80634, 1.848373, -1.302975, -11.902181, 1.374096, -1.166202, -11.80634, 1.374096, -1.21089, -12.118632, 1.848373, -1.302975, -12.335084, 1.848373, -1.320486, -12.118632, 1.374096, -1.21089, -12.118632, 1.848374, -1.141575, -12.562923, 1.848373, -1.234731, -12.521564, 1.374096, -1.166201, -12.430923, 1.848373, -1.234731, -11.715701, 1.848373, -1.141576, -11.67434, 1.374096, -1.166202, -11.80634, 1.848373, -1.320486, -12.118632, 1.848373, -1.302975, -11.902181, 1.374096, -1.21089, -12.118632, 2.400733, -1.327104, -11.846963, 2.820466, -1.227937, -11.739625, 2.400733, -1.254144, -11.681277, 2.400733, -0.993462, -11.684625, 2.820466, -1.137643, -11.700721, 2.820466, -1.009815, -11.742526, 2.400733, -0.993462, -12.552638, 2.820466, -1.137643, -12.536542, 2.400733, -1.154478, -12.60088, 2.400733, -1.327104, -12.390302, 2.820466, -1.227937, -12.497638, 2.820466, -1.288378, -12.354056, 2.400733, -1.358831, -12.118632, 2.820466, -1.288378, -11.883205, 2.400733, -1.327104, -11.846963, 2.400733, -1.254144, -11.681277, 2.820466, -1.137643, -11.700721, 2.400733, -1.154478, -11.636384, 2.400733, -1.254144, -12.555986, 2.820466, -1.137643, -12.536542, 2.820466, -1.227937, -12.497638, 2.400733, -1.358831, -12.118632, 2.820466, -1.288378, -12.354056, 2.820466, -1.315521, -12.118631, 2.831496, -1.129645, -11.79058, 2.860551, -1.009286, -11.785865, 2.860551, -1.134356, -11.748877, 2.860551, -1.261857, -11.910334, 2.831496, -1.197349, -11.821119, 2.860551, -1.215376, -11.783298, 2.831496, -1.233192, -12.303435, 2.860551, -1.286451, -12.118631, 2.860551, -1.261857, -12.326929, 2.831496, -1.197349, -12.416142, 2.860551, -1.261857, -12.326929, 2.860551, -1.215376, -12.453964, 2.860551, -1.215376, -11.783298, 2.831496, -1.129645, -11.79058, 2.860551, -1.134356, -11.748877, 2.860551, -1.286451, -12.118631, 2.831496, -1.233192, -11.933826, 2.860551, -1.261857, -11.910334, 2.831496, -1.129645, -12.446682, 2.860551, -1.215376, -12.453964, 2.860551, -1.134356, -12.488385, 2.860551, -1.009286, -12.451398, 2.831496, -1.129645, -12.446682, 2.860551, -1.134356, -12.488385, 2.831496, -1.009109, -12.413865, 2.831496, -1.129645, -11.79058, 2.831496, -1.129645, -12.446682, 2.831496, -1.129645, -12.446682, 2.831496, -1.197349, -11.821119, 2.831496, -1.197349, -12.416142, 2.831496, -1.197349, -12.416142, 2.831496, -1.233192, -11.933826, 2.831496, -1.233192, -12.303435, 2.831496, -1.255013, -12.118631, 2.831496, -1.233192, -12.303435, 2.831496, -1.233192, -11.933826, 1.374096, -1.166201, -12.430923, 1.374096, -1.021663, -11.802317, 1.374096, -1.021663, -12.434947, 1.374096, -1.21089, -12.118632, 1.374096, -1.166202, -11.80634, 1.374096, -1.166201, -12.430923, 6.098722, -1.466214, 6.297306, 6.138808, -1.41255, 6.505604, 6.098722, -1.439071, 6.532731, 6.098722, -1.378631, 6.676312, 6.138808, -1.28505, 6.66706, 6.098722, -1.288337, 6.715217, 6.138808, -1.28505, 5.927552, 6.098723, -1.378631, 5.9183, 6.098723, -1.288337, 5.879395, 6.138808, -1.41255, 6.089009, 6.098722, -1.466214, 6.297306, 6.098723, -1.439071, 6.06188, 6.098722, -1.439071, 6.532731, 6.138808, -1.366069, 6.632639, 6.098722, -1.378631, 6.676312, 6.138808, -1.28505, 6.66706, 6.098722, -1.160508, 6.67341, 6.098722, -1.288337, 6.715217, 6.098723, -1.160508, 5.921201, 6.138808, -1.28505, 5.927552, 6.098723, -1.288337, 5.879395, 6.138808, -1.366069, 5.961973, 6.098723, -1.439071, 6.06188, 6.098723, -1.378631, 5.9183, 5.12663, -1.453669, 6.513758, 5.67899, -1.509524, 6.297306, 5.67899, -1.477798, 6.568975, 5.12663, -1.292269, 6.741597, 5.67899, -1.404837, 6.73466, 5.67899, -1.305171, 6.779553, 5.67899, -1.404837, 5.859951, 5.126631, -1.292269, 5.853014, 5.67899, -1.305171, 5.815058, 5.67899, -1.509524, 6.297306, 5.126631, -1.453669, 6.080854, 5.67899, -1.477798, 6.025637, 5.12663, -1.385425, 6.700237, 5.67899, -1.477798, 6.568975, 5.67899, -1.404837, 6.73466, 5.67899, -1.144155, 6.731312, 5.12663, -1.292269, 6.741597, 5.67899, -1.305171, 6.779553, 5.126631, -1.292269, 5.853014, 5.67899, -1.144155, 5.863298, 5.67899, -1.305171, 5.815058, 5.67899, -1.477798, 6.025637, 5.126631, -1.385425, 5.894375, 5.67899, -1.404837, 5.859951, 4.652353, -1.316895, 6.609597, 5.12663, -1.453669, 6.513758, 5.12663, -1.385425, 6.700237, 4.652353, -1.172357, 6.613621, 5.12663, -1.292269, 6.741597, 5.12663, -1.154661, 6.697153, 5.126631, -1.292269, 5.853014, 4.652353, -1.172357, 5.98099, 5.126631, -1.154661, 5.897458, 5.126631, -1.453669, 6.080854, 4.652353, -1.316895, 5.985014, 5.126631, -1.385425, 5.894375, 5.12663, -1.453669, 6.513758, 4.652353, -1.361584, 6.297306, 5.12663, -1.47118, 6.297306, 5.12663, -1.292269, 6.741597, 4.652353, -1.316895, 6.609597, 5.12663, -1.385425, 6.700237, 5.126631, -1.385425, 5.894375, 4.652353, -1.316895, 5.985014, 5.126631, -1.292269, 5.853014, 5.12663, -1.47118, 6.297306, 4.652353, -1.361584, 6.297306, 5.126631, -1.453669, 6.080854, 6.098723, -1.378631, 5.9183, 5.67899, -1.477798, 6.025637, 5.67899, -1.404837, 5.859951, 5.67899, -1.144155, 5.863298, 6.098723, -1.288337, 5.879395, 5.67899, -1.305171, 5.815058, 6.098722, -1.288337, 6.715217, 5.67899, -1.144155, 6.731312, 5.67899, -1.305171, 6.779553, 5.67899, -1.477798, 6.568975, 6.098722, -1.378631, 6.676312, 5.67899, -1.404837, 6.73466, 6.098723, -1.439071, 6.06188, 5.67899, -1.509524, 6.297306, 5.67899, -1.477798, 6.025637, 6.098723, -1.288337, 5.879395, 5.67899, -1.404837, 5.859951, 5.67899, -1.305171, 5.815058, 5.67899, -1.404837, 6.73466, 6.098722, -1.288337, 6.715217, 5.67899, -1.305171, 6.779553, 5.67899, -1.509524, 6.297306, 6.098722, -1.439071, 6.532731, 5.67899, -1.477798, 6.568975, 6.138808, -1.159979, 5.96454, 6.109754, -1.280338, 5.969254, 6.138808, -1.28505, 5.927552, 6.138808, -1.41255, 6.089009, 6.109754, -1.348042, 5.999794, 6.109754, -1.383886, 6.112501, 6.138808, -1.437144, 6.297307, 6.109753, -1.383886, 6.48211, 6.138808, -1.41255, 6.505604, 6.138808, -1.41255, 6.505604, 6.109753, -1.348042, 6.594817, 6.138808, -1.366069, 6.632639, 6.138808, -1.366069, 5.961973, 6.109754, -1.280338, 5.969254, 6.109754, -1.348042, 5.999794, 6.138808, -1.437144, 6.297307, 6.109754, -1.383886, 6.112501, 6.109753, -1.405706, 6.297306, 6.138808, -1.366069, 6.632639, 6.109753, -1.280338, 6.625357, 6.138808, -1.28505, 6.66706, 6.138808, -1.159979, 6.630073, 6.109753, -1.280338, 6.625357, 6.109753, -1.159802, 6.59254, 6.109754, -1.280338, 5.969254, 6.109753, -1.159802, 6.59254, 6.109753, -1.280338, 6.625357, 6.109754, -1.348042, 5.999794, 6.109753, -1.280338, 6.625357, 6.109753, -1.348042, 6.594817, 6.109754, -1.383886, 6.112501, 6.109753, -1.348042, 6.594817, 6.109753, -1.383886, 6.48211, 6.109753, -1.405706, 6.297306, 6.109754, -1.383886, 6.112501, 6.109753, -1.383886, 6.48211, 4.652353, -1.316895, 6.609597, 4.652353, -1.172357, 5.98099, 4.652353, -1.316895, 5.985014, 4.652353, -1.361584, 6.297306, 4.652353, -1.316895, 6.609597, 4.652353, -1.316895, 5.985014, 6.098725, -1.466214, -6.297304, 6.138811, -1.41255, -6.505601, 6.138811, -1.437144, -6.297304, 6.098725, -1.378631, -6.676311, 6.138811, -1.28505, -6.667058, 6.138811, -1.366069, -6.632637, 6.098725, -1.378631, -5.918298, 6.13881, -1.28505, -5.927549, 6.098725, -1.288337, -5.879394, 6.098725, -1.466214, -6.297304, 6.13881, -1.41255, -6.089006, 6.098725, -1.439071, -6.061878, 6.098725, -1.439071, -6.532729, 6.138811, -1.366069, -6.632637, 6.138811, -1.41255, -6.505601, 6.098725, -1.160508, -6.673409, 6.138811, -1.28505, -6.667058, 6.098725, -1.288337, -6.715215, 6.098725, -1.160508, -5.921199, 6.13881, -1.28505, -5.927549, 6.13881, -1.159979, -5.964537, 6.098725, -1.439071, -6.061878, 6.13881, -1.366069, -5.96197, 6.098725, -1.378631, -5.918298, 5.678993, -1.509524, -6.297304, 5.126633, -1.453669, -6.513756, 5.678993, -1.477798, -6.568974, 5.678993, -1.404837, -6.734658, 5.126633, -1.292269, -6.741595, 5.678993, -1.305171, -6.779552, 5.678992, -1.404837, -5.859949, 5.126633, -1.292269, -5.853012, 5.126633, -1.385425, -5.894373, 5.678993, -1.509524, -6.297304, 5.126633, -1.453669, -6.080853, 5.126633, -1.47118, -6.297304, 5.678993, -1.477798, -6.568974, 5.126633, -1.385425, -6.700235, 5.678993, -1.404837, -6.734658, 5.678993, -1.144155, -6.73131, 5.126633, -1.292269, -6.741595, 5.126633, -1.154661, -6.697151, 5.678992, -1.144155, -5.863297, 5.126633, -1.292269, -5.853012, 5.678992, -1.305171, -5.815056, 5.678992, -1.477798, -6.025635, 5.126633, -1.385425, -5.894373, 5.126633, -1.453669, -6.080853, 5.126633, -1.453669, -6.513756, 4.652356, -1.316895, -6.609595, 5.126633, -1.385425, -6.700235, 5.126633, -1.292269, -6.741595, 4.652356, -1.172357, -6.613619, 5.126633, -1.154661, -6.697151, 5.126633, -1.292269, -5.853012, 4.652355, -1.172357, -5.980989, 4.652355, -1.316895, -5.985012, 5.126633, -1.453669, -6.080853, 4.652355, -1.316895, -5.985012, 4.652356, -1.361584, -6.297304, 5.126633, -1.453669, -6.513756, 5.126633, -1.47118, -6.297304, 4.652356, -1.361584, -6.297304, 5.126633, -1.292269, -6.741595, 5.126633, -1.385425, -6.700235, 4.652356, -1.316895, -6.609595, 5.126633, -1.385425, -5.894373, 5.126633, -1.292269, -5.853012, 4.652355, -1.316895, -5.985012, 5.126633, -1.47118, -6.297304, 5.126633, -1.453669, -6.080853, 4.652356, -1.361584, -6.297304, 5.678992, -1.477798, -6.025635, 6.098725, -1.378631, -5.918298, 5.678992, -1.404837, -5.859949, 5.678992, -1.144155, -5.863297, 6.098725, -1.288337, -5.879394, 6.098725, -1.160508, -5.921199, 5.678993, -1.144155, -6.73131, 6.098725, -1.288337, -6.715215, 5.678993, -1.305171, -6.779552, 5.678993, -1.477798, -6.568974, 6.098725, -1.378631, -6.676311, 6.098725, -1.439071, -6.532729, 5.678993, -1.509524, -6.297304, 6.098725, -1.439071, -6.061878, 5.678992, -1.477798, -6.025635, 5.678992, -1.404837, -5.859949, 6.098725, -1.288337, -5.879394, 5.678992, -1.305171, -5.815056, 5.678993, -1.404837, -6.734658, 6.098725, -1.288337, -6.715215, 6.098725, -1.378631, -6.676311, 5.678993, -1.509524, -6.297304, 6.098725, -1.439071, -6.532729, 6.098725, -1.466214, -6.297304, 6.109756, -1.280338, -5.969253, 6.13881, -1.159979, -5.964537, 6.13881, -1.28505, -5.927549, 6.13881, -1.41255, -6.089006, 6.109756, -1.348042, -5.999792, 6.13881, -1.366069, -5.96197, 6.109756, -1.383886, -6.482108, 6.138811, -1.437144, -6.297304, 6.138811, -1.41255, -6.505601, 6.109756, -1.348042, -6.594815, 6.138811, -1.41255, -6.505601, 6.138811, -1.366069, -6.632637, 6.13881, -1.366069, -5.96197, 6.109756, -1.280338, -5.969253, 6.13881, -1.28505, -5.927549, 6.138811, -1.437144, -6.297304, 6.109756, -1.383886, -6.112499, 6.13881, -1.41255, -6.089006, 6.109756, -1.280338, -6.625355, 6.138811, -1.366069, -6.632637, 6.138811, -1.28505, -6.667058, 6.138811, -1.159979, -6.63007, 6.109756, -1.280338, -6.625355, 6.138811, -1.28505, -6.667058, 6.109756, -1.159802, -6.592538, 6.109756, -1.280338, -5.969253, 6.109756, -1.280338, -6.625355, 6.109756, -1.280338, -6.625355, 6.109756, -1.348042, -5.999792, 6.109756, -1.348042, -6.594815, 6.109756, -1.348042, -6.594815, 6.109756, -1.383886, -6.112499, 6.109756, -1.383886, -6.482108, 6.109756, -1.405706, -6.297304, 6.109756, -1.383886, -6.482108, 6.109756, -1.383886, -6.112499, 4.652356, -1.316895, -6.609595, 4.652355, -1.172357, -5.980989, 4.652356, -1.172357, -6.613619, 4.652356, -1.361584, -6.297304, 4.652355, -1.316895, -5.985012, 4.652356, -1.316895, -6.609595, 15.199031, -0.63017, 1.203944, 15.356038, -0.302295, 1.158816, 14.452024, -0.535245, 1.18431, 17.391449, -0.576348, 0.803017, 16.182926, -0.281176, 1.005536, 16.183041, -0.594254, 1.182708, 17.369858, -0.975261, 0.695056, 16.182903, -1.288804, 0.735329, 17.283955, -1.084477, 0.441357, 17.95586, -0.73295, 0.374465, 17.391449, -0.576348, 0.803017, 17.397213, -0.801844, 0.827832, 17.031357, -1.186964, 3e-06, 16.182903, -1.288804, 0.735329, 16.182713, -1.340616, 3e-06, 16.183006, -1.120891, 1.080459, 17.397213, -0.801844, 0.827832, 16.183052, -0.887428, 1.219893, 17.362404, -1.091034, 3e-06, 17.283955, -1.084477, 0.441357, 17.031357, -1.186964, 3e-06, 17.844173, -0.877411, 0.331339, 17.397213, -0.801844, 0.827832, 17.369858, -0.975261, 0.695056, 17.924572, -0.524761, 0.364316, 17.380814, -0.308159, 0.548304, 17.391449, -0.576348, 0.803017, 17.613194, -0.994689, 0.234708, 17.369858, -0.975261, 0.695056, 17.283955, -1.084477, 0.441357, 17.924572, -0.524761, 0.364316, 17.827, -0.304541, 3e-06, 17.691666, -0.303914, 0.303578, 17.844173, -0.877411, 0.331339, 17.803867, -0.939416, 3e-06, 18.020542, -0.808321, 4e-06, 17.924572, -0.524761, 0.364316, 18.129333, -0.695045, 4e-06, 18.115459, -0.490681, 4e-06, 17.95586, -0.73295, 0.374465, 18.020542, -0.808321, 4e-06, 18.129333, -0.695045, 4e-06, 15.126997, -0.882437, 1.1742, 16.183006, -1.120891, 1.080459, 16.183052, -0.887428, 1.219893, 15.20544, -1.292184, 0.464459, 16.182713, -1.340616, 3e-06, 16.182903, -1.288804, 0.735329, 17.397213, -0.801844, 0.827832, 16.183041, -0.594254, 1.182708, 16.183052, -0.887428, 1.219893, 15.126899, -1.146853, 0.982322, 16.182903, -1.288804, 0.735329, 16.183006, -1.120891, 1.080459, 15.356038, -0.302295, 1.158816, 16.183041, -0.594254, 1.182708, 16.182926, -0.281176, 1.005536, 15.199031, -0.63017, 1.203944, 16.183052, -0.887428, 1.219893, 16.183041, -0.594254, 1.182708, 15.126997, -0.882437, 1.1742, 14.452024, -0.535245, 1.18431, 14.135651, -0.862525, 0.921511, 14.424541, -1.187864, 0.669863, 15.126997, -0.882437, 1.1742, 14.135651, -0.862525, 0.921511, 15.20544, -1.292184, 0.464459, 14.424541, -1.187864, 0.669863, 14.862865, -1.371627, 3e-06, 15.20544, -1.292184, 0.464459, 14.862865, -1.371627, 3e-06, 15.320344, -1.374343, 3e-06, 15.199031, -0.63017, -1.203938, 14.452024, -0.535245, -1.184305, 15.356038, -0.302295, -1.15881, 16.182926, -0.281176, -1.00553, 17.391449, -0.576348, -0.803011, 16.183041, -0.594254, -1.182701, 16.182903, -1.288804, -0.735323, 17.369858, -0.975261, -0.695049, 17.283955, -1.084477, -0.44135, 17.391449, -0.576348, -0.803011, 17.95586, -0.73295, -0.374458, 17.397213, -0.801844, -0.827825, 16.182903, -1.288804, -0.735323, 17.031357, -1.186964, 3e-06, 16.182713, -1.340616, 3e-06, 16.183006, -1.120891, -1.080453, 17.397213, -0.801844, -0.827825, 17.369858, -0.975261, -0.695049, 17.283955, -1.084477, -0.44135, 17.362404, -1.091034, 3e-06, 17.031357, -1.186964, 3e-06, 17.844173, -0.877411, -0.331332, 17.397213, -0.801844, -0.827825, 17.95586, -0.73295, -0.374458, 17.380814, -0.308159, -0.548298, 17.924572, -0.524761, -0.364309, 17.391449, -0.576348, -0.803011, 17.369858, -0.975261, -0.695049, 17.613194, -0.994689, -0.234701, 17.283955, -1.084477, -0.44135, 17.827, -0.304541, 3e-06, 17.924572, -0.524761, -0.364309, 17.691666, -0.303914, -0.303571, 17.844173, -0.877411, -0.331332, 17.803867, -0.939416, 3e-06, 17.613194, -0.994689, -0.234701, 17.924572, -0.524761, -0.364309, 18.129333, -0.695045, 4e-06, 17.95586, -0.73295, -0.374458, 17.95586, -0.73295, -0.374458, 18.020542, -0.808321, 4e-06, 17.844173, -0.877411, -0.331332, 15.126997, -0.882437, -1.174194, 16.183006, -1.120891, -1.080453, 15.126899, -1.146853, -0.982316, 15.20544, -1.292184, -0.464453, 16.182713, -1.340616, 3e-06, 15.320344, -1.374343, 3e-06, 17.397213, -0.801844, -0.827825, 16.183041, -0.594254, -1.182701, 17.391449, -0.576348, -0.803011, 16.182903, -1.288804, -0.735323, 15.126899, -1.146853, -0.982316, 16.183006, -1.120891, -1.080453, 16.183041, -0.594254, -1.182701, 15.356038, -0.302295, -1.15881, 16.182926, -0.281176, -1.00553, 15.199031, -0.63017, -1.203938, 16.183052, -0.887428, -1.219887, 15.126997, -0.882437, -1.174194, 14.452024, -0.535245, -1.184305, 15.126997, -0.882437, -1.174194, 14.135651, -0.862525, -0.921506, 15.126997, -0.882437, -1.174194, 14.424541, -1.187864, -0.669858, 14.135651, -0.862525, -0.921506, 14.424541, -1.187864, -0.669858, 15.20544, -1.292184, -0.464453, 14.862865, -1.371627, 3e-06, 15.20544, -1.292184, -0.464453, 15.320344, -1.374343, 3e-06, 14.862865, -1.371627, 3e-06, 17.613194, -0.994689, 0.234708, 17.362404, -1.091034, 3e-06, 17.803867, -0.939416, 3e-06, 17.613194, -0.994689, -0.234701, 17.803867, -0.939416, 3e-06, 17.362404, -1.091034, 3e-06, 13.072194, 0.685815, 1.187867, -12.917107, -1e-06, 1.371626, 13.07222, 1e-06, 1.371631, 13.07222, 1e-06, 1.371631, -12.1388, -0.685815, 1.187862, 13.072247, -0.685813, 1.187867, 13.072012, 1.371629, 3e-06, -14.265179, 1.187864, 0.685811, 13.072116, 1.187865, 0.685817, 13.072247, -0.685813, 1.187867, -11.569036, -1.187865, 0.685812, 13.072266, -1.187864, 0.685817, 13.072116, 1.187865, 0.685817, -13.695412, 0.685813, 1.187862, 13.072194, 0.685815, 1.187867, 13.072266, -1.187864, 0.685817, -11.360485, -1.371629, -2e-06, 13.072272, -1.371627, 3e-06, -12.1388, -0.685815, 1.187862, -23.601831, -0.280701, 0.341989, -11.569036, -1.187865, 0.685812, -14.265179, 1.187864, 0.685811, -23.601831, 0.72694, 0.592346, -13.695412, 0.685813, 1.187862, -11.569036, -1.187865, 0.685812, -23.601831, -0.379527, -5e-06, -11.360485, -1.371629, -2e-06, -13.695412, 0.685813, 1.187862, -23.601831, 0.358118, 0.683983, -12.917107, -1e-06, 1.371626, -12.917107, -1e-06, 1.371626, -23.601831, -0.010705, 0.592346, -12.1388, -0.685815, 1.187862, -14.473724, 1.371627, -3e-06, -23.601831, 1.032917, 0.341989, -14.265179, 1.187864, 0.685811, 14.539479, 0.878098, 0.335402, 14.013685, 0.685815, 1.053593, 14.539859, 0.655352, 0.933372, 14.452023, -0.535245, 1.18431, 14.013685, -0.685813, 1.187867, 14.135652, -0.862525, 0.921511, 14.013685, -1.371627, 3e-06, 14.424541, -1.187864, 0.669863, 14.013685, -1.187864, 0.685817, 14.013685, 0.685815, 1.053593, 14.539859, 1e-06, 1.344209, 14.539859, 0.655352, 0.933372, 14.013685, 1e-06, 1.371631, 14.452023, -0.535245, 1.18431, 14.539859, 1e-06, 1.344209, 14.013685, -1.187864, 0.685817, 13.072272, -1.371627, 3e-06, 14.013685, -1.371627, 3e-06, 14.013685, 0.685815, 1.053593, 13.072116, 1.187865, 0.685817, 13.072194, 0.685815, 1.187867, 14.013685, -0.685813, 1.187867, 13.072266, -1.187864, 0.685817, 14.013685, -1.187864, 0.685817, 13.832346, 1.371629, 3e-06, 13.072116, 1.187865, 0.685817, 13.944604, 1.187865, 0.608293, 14.013685, 1e-06, 1.371631, 13.072247, -0.685813, 1.187867, 14.013685, -0.685813, 1.187867, 14.013685, 1e-06, 1.371631, 13.072194, 0.685815, 1.187867, 13.07222, 1e-06, 1.371631, 13.944604, 1.187865, 0.608293, 14.539479, 0.878098, 0.335402, 14.259429, 1.187865, 0.368192, 13.832346, 1.371629, 3e-06, 13.944604, 1.187865, 0.608293, 14.259429, 1.187865, 0.368192, 15.356037, 0.627265, 0.857261, 16.182926, -0.002102, 0.982088, 16.182926, 0.545771, 0.718109, 15.356037, -0.302295, 1.158816, 16.182926, -0.002102, 0.982088, 15.356037, -0.001365, 1.234585, 15.35567, 0.840928, 0.308069, 16.182926, 0.545771, 0.718109, 16.182924, 0.731986, 0.258123, 16.182924, 0.731986, 0.258123, 17.380814, 0.346717, 0.402926, 17.380575, 0.464168, 0.144952, 16.182926, 0.545771, 0.718109, 17.380814, 0.001158, 0.580166, 17.380814, 0.346717, 0.402926, 16.182926, -0.281176, 1.005536, 17.380814, 0.001158, 0.580166, 16.182926, -0.002102, 0.982088, 17.380814, 0.346717, 0.402926, 17.691668, 0.000317, 0.347482, 17.691668, 0.209304, 0.241361, 17.380814, -0.308159, 0.548304, 17.691668, 0.000317, 0.347482, 17.380814, 0.001158, 0.580166, 17.380575, 0.464168, 0.144952, 17.691668, 0.209304, 0.241361, 17.691504, 0.280336, 0.086903, 17.691504, 0.280336, 0.086903, 17.691668, 0.209304, 0.241361, 17.847071, -0.094012, 3e-06, 17.691668, 0.209304, 0.241361, 17.691668, 0.000317, 0.347482, 17.847071, -0.094012, 3e-06, 17.691668, 0.000317, 0.347482, 17.691668, -0.303914, 0.303578, 17.847071, -0.094012, 3e-06, 17.691668, -0.303914, 0.303578, 17.827, -0.304541, 3e-06, 17.847071, -0.094012, 3e-06, 14.539479, 0.878098, 0.335402, 15.356037, 0.627265, 0.857261, 15.35567, 0.840928, 0.308069, 14.539859, 1e-06, 1.344209, 15.356037, -0.302295, 1.158816, 15.356037, -0.001365, 1.234585, 14.539859, 0.655352, 0.933372, 15.356037, -0.001365, 1.234585, 15.356037, 0.627265, 0.857261, 14.424541, -1.187864, 0.669863, 14.135652, -0.862525, 0.921511, 14.013685, -1.187864, 0.685817, 14.013685, -0.685813, 1.187867, 14.013685, -1.187864, 0.685817, 14.135652, -0.862525, 0.921511, -12.917107, -1e-06, -1.371631, 13.072194, 0.685815, -1.187862, 13.07222, 1e-06, -1.371626, -12.1388, -0.685815, -1.187867, 13.07222, 1e-06, -1.371626, 13.072247, -0.685813, -1.187862, -14.265179, 1.187864, -0.685817, 13.072012, 1.371629, 3e-06, 13.072116, 1.187865, -0.685811, -11.569036, -1.187865, -0.685816, 13.072247, -0.685813, -1.187862, 13.072266, -1.187864, -0.685812, -13.695412, 0.685813, -1.187867, 13.072116, 1.187865, -0.685811, 13.072194, 0.685815, -1.187862, -11.360485, -1.371629, -2e-06, 13.072266, -1.187864, -0.685812, 13.072272, -1.371627, 3e-06, -23.601831, -0.280701, -0.341999, -12.1388, -0.685815, -1.187867, -11.569036, -1.187865, -0.685816, -23.601831, 0.72694, -0.592356, -14.265179, 1.187864, -0.685817, -13.695412, 0.685813, -1.187867, -23.601831, -0.379527, -5e-06, -11.569036, -1.187865, -0.685816, -11.360485, -1.371629, -2e-06, -23.601831, 0.358118, -0.683993, -13.695412, 0.685813, -1.187867, -12.917107, -1e-06, -1.371631, -23.601831, -0.010705, -0.592356, -12.917107, -1e-06, -1.371631, -12.1388, -0.685815, -1.187867, -23.601831, 1.032917, -0.341999, -14.473724, 1.371627, -3e-06, -14.265179, 1.187864, -0.685817, 14.539479, 0.878098, -0.335396, 14.539859, 0.655352, -0.933366, 14.013685, 0.685815, -1.053587, 14.452023, -0.535245, -1.184305, 14.135652, -0.862525, -0.921506, 14.013685, -0.685813, -1.187862, 14.424541, -1.187864, -0.669858, 14.013685, -1.371627, 3e-06, 14.013685, -1.187864, -0.685811, 14.013685, 0.685815, -1.053587, 14.539859, 1e-06, -1.344203, 14.013685, 1e-06, -1.371625, 14.013685, 1e-06, -1.371625, 14.452023, -0.535245, -1.184305, 14.013685, -0.685813, -1.187862, 13.072272, -1.371627, 3e-06, 14.013685, -1.187864, -0.685811, 14.013685, -1.371627, 3e-06, 14.013685, 0.685815, -1.053587, 13.072116, 1.187865, -0.685811, 13.944604, 1.187865, -0.608288, 13.072266, -1.187864, -0.685812, 14.013685, -0.685813, -1.187862, 14.013685, -1.187864, -0.685811, 13.072116, 1.187865, -0.685811, 13.832346, 1.371629, 3e-06, 13.944604, 1.187865, -0.608288, 13.072247, -0.685813, -1.187862, 14.013685, 1e-06, -1.371625, 14.013685, -0.685813, -1.187862, 14.013685, 1e-06, -1.371625, 13.072194, 0.685815, -1.187862, 14.013685, 0.685815, -1.053587, 13.944604, 1.187865, -0.608288, 14.539479, 0.878098, -0.335396, 14.013685, 0.685815, -1.053587, 13.832346, 1.371629, 3e-06, 14.259429, 1.187865, -0.368186, 13.944604, 1.187865, -0.608288, 15.356037, 0.627265, -0.857255, 16.182926, -0.002102, -0.982082, 15.356037, -0.001365, -1.234579, 16.182926, -0.002102, -0.982082, 15.356037, -0.302295, -1.15881, 15.356037, -0.001365, -1.234579, 15.35567, 0.840928, -0.308063, 16.182926, 0.545771, -0.718103, 15.356037, 0.627265, -0.857255, 16.182924, 0.731986, -0.258117, 17.380814, 0.346717, -0.402919, 16.182926, 0.545771, -0.718103, 16.182926, 0.545771, -0.718103, 17.380814, 0.001158, -0.58016, 16.182926, -0.002102, -0.982082, 17.380814, 0.001158, -0.58016, 16.182926, -0.281176, -1.00553, 16.182926, -0.002102, -0.982082, 17.380814, 0.346717, -0.402919, 17.691668, 0.000317, -0.347475, 17.380814, 0.001158, -0.58016, 17.691668, 0.000317, -0.347475, 17.380814, -0.308159, -0.548298, 17.380814, 0.001158, -0.58016, 17.380575, 0.464168, -0.144946, 17.691668, 0.209304, -0.241354, 17.380814, 0.346717, -0.402919, 17.691504, 0.280336, -0.086896, 17.847071, -0.094012, 3e-06, 17.691668, 0.209304, -0.241354, 17.691668, 0.209304, -0.241354, 17.847071, -0.094012, 3e-06, 17.691668, 0.000317, -0.347475, 17.691668, 0.000317, -0.347475, 17.847071, -0.094012, 3e-06, 17.691668, -0.303914, -0.303571, 17.691668, -0.303914, -0.303571, 17.847071, -0.094012, 3e-06, 17.827, -0.304541, 3e-06, 14.539479, 0.878098, -0.335396, 15.356037, 0.627265, -0.857255, 14.539859, 0.655352, -0.933366, 14.539859, 1e-06, -1.344203, 15.356037, -0.302295, -1.15881, 14.452023, -0.535245, -1.184305, 14.539859, 0.655352, -0.933366, 15.356037, -0.001365, -1.234579, 14.539859, 1e-06, -1.344203, 14.424541, -1.187864, -0.669858, 14.013685, -1.187864, -0.685811, 14.135652, -0.862525, -0.921506, 14.013685, -0.685813, -1.187862, 14.135652, -0.862525, -0.921506, 14.013685, -1.187864, -0.685811, 17.691504, 0.280336, 0.086903, 17.847071, -0.094012, 3e-06, 17.691504, 0.280336, -0.086896, 17.691504, 0.280336, -0.086896, 17.380575, 0.464168, 0.144952, 17.691504, 0.280336, 0.086903, 16.182924, 0.731986, 0.258123, 17.380575, 0.464168, -0.144946, 16.182924, 0.731986, -0.258117, 16.182924, 0.731986, -0.258117, 15.35567, 0.840928, 0.308069, 16.182924, 0.731986, 0.258123, 15.35567, 0.840928, -0.308063, 14.539479, 0.878098, 0.335402, 15.35567, 0.840928, 0.308069, 14.259429, 1.187865, 0.368192, 14.539479, 0.878098, -0.335396, 14.259429, 1.187865, -0.368186, 14.259429, 1.187865, 0.368192, 14.259429, 1.187865, -0.368186, 13.832346, 1.371629, 3e-06, -23.601831, -0.010705, 0.592346, -26.711912, -0.016103, 0.255791, -23.601831, -0.280701, 0.341989, -23.601831, 1.095762, -5e-06, -26.711912, 1.030598, -0.237235, -26.711912, 1.087257, -5e-06, -23.601831, 1.032917, 0.341989, -26.711912, 0.859109, 0.410888, -23.601831, 0.72694, 0.592346, -23.601831, -0.010705, -0.592356, -26.711912, -0.016103, -0.255801, -26.711912, 0.107838, -0.410898, -23.601831, -0.280701, 0.341989, -26.711912, -0.079823, -5e-06, -23.601831, -0.379527, -5e-06, -23.601831, 1.032917, -0.341999, -26.711912, 0.859109, -0.410898, -26.711912, 1.030598, -0.237235, -23.601831, 0.72694, 0.592346, -26.711912, 0.503717, 0.474453, -23.601831, 0.358118, 0.683983, -23.601831, -0.280701, -0.341999, -26.711912, -0.079823, -5e-06, -26.711912, -0.016103, -0.255801, -23.601831, 0.72694, -0.592356, -26.711912, 0.503717, -0.474464, -26.711912, 0.859109, -0.410898, -23.601831, 0.358118, 0.683983, -26.711912, 0.107838, 0.410888, -23.601831, -0.010705, 0.592346, -23.601831, 1.095762, -5e-06, -26.711912, 1.030598, 0.237224, -23.601831, 1.032917, 0.341989, -23.601831, 0.358118, -0.683993, -26.711912, 0.107838, -0.410898, -26.711912, 0.503717, -0.474464, -26.711912, -0.079823, -5e-06, -26.978872, 0.001249, 0.120363, -26.952845, -0.056688, -5e-06, -26.711912, 1.030598, -0.237235, -26.876501, 1.031732, -5e-06, -26.711912, 1.087257, -5e-06, -26.711912, -0.016103, -0.255801, -26.984659, 0.107838, -0.16325, -26.711912, 0.107838, -0.410898, -26.711912, 1.030598, 0.237224, -26.876501, 1.031732, -5e-06, -26.978872, 0.933309, 0.113697, -26.711912, 1.030598, -0.237235, -26.984659, 0.859109, -0.16325, -26.978872, 0.933309, -0.113708, -26.711912, -0.016103, 0.255791, -26.984659, 0.107838, 0.16324, -26.978872, 0.001249, 0.120363, -26.711912, -0.079823, -5e-06, -26.978872, 0.001249, -0.120374, -26.711912, -0.016103, -0.255801, -26.711912, 1.030598, 0.237224, -26.984659, 0.859109, 0.16324, -26.711912, 0.859109, 0.410888, -26.876501, 1.031732, -5e-06, -26.978872, 0.933309, -0.113708, -26.978872, 0.933309, 0.113697, -26.978872, 0.933309, -0.113708, -26.984659, 0.859109, 0.16324, -26.978872, 0.933309, 0.113697, -26.978872, 0.001249, 0.120363, -26.978872, 0.001249, -0.120374, -26.952845, -0.056688, -5e-06, -26.984659, 0.107838, -0.16325, -26.978872, 0.001249, 0.120363, -26.984659, 0.107838, 0.16324, -26.711912, 0.859109, -0.410898, -26.711912, 0.503717, 0.474453, -26.711912, 0.859109, 0.410888, -26.711912, 0.503717, -0.474464, -26.711912, 0.107838, 0.410888, -26.711912, 0.503717, 0.474453, -26.711912, 0.107838, -0.410898, -26.984659, 0.107838, 0.16324, -26.711912, 0.107838, 0.410888, -26.711912, 0.859109, -0.410898, -26.984659, 0.859109, 0.16324, -26.984659, 0.859109, -0.16325, 17.634117, 0.792729, 3e-06, 14.391526, 0.796557, -0.102921, 14.392685, 0.855969, 3e-06, 17.632959, 0.733317, -0.10292, 17.1696, 0.623489, -0.10292, 14.391526, 0.796557, -0.102921, 17.63064, 0.614494, -0.10292, 17.249464, 0.562496, 3e-06, 17.1696, 0.623489, -0.10292, 17.249464, 0.562496, 3e-06, 17.63064, 0.614494, 0.102927, 17.1696, 0.623489, 0.102927, 17.632959, 0.733317, 0.102927, 17.747261, 0.750909, 3e-06, 17.634117, 0.792729, 3e-06, 17.1696, 0.623489, 0.102927, 17.632959, 0.733317, 0.102927, 14.391526, 0.796557, 0.102927, 14.391526, 0.796557, 0.102927, 17.634117, 0.792729, 3e-06, 14.392685, 0.855969, 3e-06, 17.746489, 0.711296, 0.068628, 19.753462, 0.592885, 0.068629, 19.755007, 0.672111, 0.068629, 17.629482, 0.555082, 3e-06, 17.744942, 0.63207, 0.068628, 17.63064, 0.614494, 0.102927, 17.632959, 0.733317, -0.10292, 17.744942, 0.63207, -0.068621, 17.63064, 0.614494, -0.10292, 17.632959, 0.733317, 0.102927, 17.744942, 0.63207, 0.068628, 17.746489, 0.711296, 0.068628, 17.632959, 0.733317, -0.10292, 17.747261, 0.750909, 3e-06, 17.746489, 0.711296, -0.068621, 17.629482, 0.555082, 3e-06, 17.744942, 0.63207, -0.068621, 17.744169, 0.592458, 3e-06, 19.755007, 0.672111, 0.068629, 19.814957, 0.670645, 4e-06, 19.755779, 0.711724, 4e-06, 17.744169, 0.592458, 3e-06, 19.753462, 0.592885, -0.06862, 19.752689, 0.553272, 4e-06, 17.746489, 0.711296, -0.068621, 19.755779, 0.711724, 4e-06, 19.755007, 0.672111, -0.06862, 17.746489, 0.711296, 0.068628, 19.755779, 0.711724, 4e-06, 17.747261, 0.750909, 3e-06, 17.744169, 0.592458, 3e-06, 19.753462, 0.592885, 0.068629, 17.744942, 0.63207, 0.068628, 17.746489, 0.711296, -0.068621, 19.753462, 0.592885, -0.06862, 17.744942, 0.63207, -0.068621, 19.813807, 0.61167, 0.03406, 20.156322, 0.644319, 0.03406, 19.814573, 0.650986, 0.03406, 19.752689, 0.553272, 4e-06, 19.813807, 0.61167, 0.03406, 19.753462, 0.592885, 0.068629, 19.753462, 0.592885, -0.06862, 19.814573, 0.650986, -0.034051, 19.813807, 0.61167, -0.034051, 19.753462, 0.592885, 0.068629, 19.814573, 0.650986, 0.03406, 19.755007, 0.672111, 0.068629, 19.752689, 0.553272, 4e-06, 19.813807, 0.61167, -0.034051, 19.813423, 0.592011, 4e-06, 19.755007, 0.672111, -0.06862, 19.814957, 0.670645, 4e-06, 19.814573, 0.650986, -0.034051, 20.156706, 0.663977, 4e-06, 20.155556, 0.605002, 0.03406, 20.155556, 0.605002, -0.034051, 19.813423, 0.592011, 4e-06, 20.155556, 0.605002, -0.034051, 20.155172, 0.585344, 4e-06, 19.814573, 0.650986, -0.034051, 20.156706, 0.663977, 4e-06, 20.156322, 0.644319, -0.034051, 19.814573, 0.650986, 0.03406, 20.156706, 0.663977, 4e-06, 19.814957, 0.670645, 4e-06, 19.813423, 0.592011, 4e-06, 20.155556, 0.605002, 0.03406, 19.813807, 0.61167, 0.03406, 19.813807, 0.61167, -0.034051, 20.156322, 0.644319, -0.034051, 20.155556, 0.605002, -0.034051, 17.249464, 0.562496, 3e-06, 17.1696, 0.442743, 0.102927, 17.249464, 0.427539, 3e-06, 14.391526, 0.796557, -0.102921, 17.1696, 0.623489, -0.10292, 17.1696, 0.442743, -0.10292, 17.1696, 0.623489, 0.102927, 14.391526, 0.796557, 0.102927, 17.1696, 0.442743, 0.102927, 17.249464, 0.562496, 3e-06, 17.1696, 0.442743, -0.10292, 17.1696, 0.623489, -0.10292, -26.901327, 0.063533, -6e-06, -26.956169, 0.191458, -0.254879, -26.842739, 0.063533, -0.14145, -27.150764, 0.581492, -6e-06, -27.019117, 0.376315, -0.317827, -27.150764, 0.376315, -6e-06, -26.901327, 0.894275, -6e-06, -26.956169, 0.766349, -0.254879, -27.061741, 0.766349, -6e-06, -27.061741, 0.191458, -6e-06, -27.019117, 0.376315, -0.317827, -26.956169, 0.191458, -0.254879, -27.061741, 0.766349, -6e-06, -27.019117, 0.581492, -0.317827, -27.150764, 0.581492, -6e-06, -26.842739, 0.063533, -0.14145, -26.701296, 0.191458, -0.360451, -26.701296, 0.063533, -0.200038, -27.019117, 0.581492, -0.317827, -26.701296, 0.376316, -0.449474, -27.019117, 0.376315, -0.317827, -26.842739, 0.894275, -0.14145, -26.701296, 0.766349, -0.360451, -26.956169, 0.766349, -0.254879, -27.019117, 0.376315, -0.317827, -26.701296, 0.191458, -0.360451, -26.956169, 0.191458, -0.254879, -27.019117, 0.581492, -0.317827, -26.701296, 0.766349, -0.360451, -26.701296, 0.581492, -0.449474, -26.701296, 0.766349, 0.360439, -27.019117, 0.581492, 0.317816, -26.701296, 0.581492, 0.449462, -26.701296, 0.191458, 0.360439, -26.842739, 0.063533, 0.141438, -26.701296, 0.063533, 0.200027, -26.701296, 0.376316, 0.449462, -27.019117, 0.581492, 0.317816, -27.019117, 0.376315, 0.317816, -26.701296, 0.766349, 0.360439, -26.842739, 0.894275, 0.141438, -26.956169, 0.766349, 0.254868, -26.701296, 0.191458, 0.360439, -27.019117, 0.376315, 0.317816, -26.956169, 0.191458, 0.254868, -26.956169, 0.191458, 0.254868, -26.901327, 0.063533, -6e-06, -26.842739, 0.063533, 0.141438, -27.019117, 0.581492, 0.317816, -27.150764, 0.376315, -6e-06, -27.019117, 0.376315, 0.317816, -26.956169, 0.766349, 0.254868, -26.901327, 0.894275, -6e-06, -27.061741, 0.766349, -6e-06, -27.019117, 0.376315, 0.317816, -27.061741, 0.191458, -6e-06, -26.956169, 0.191458, 0.254868, -27.019117, 0.581492, 0.317816, -27.061741, 0.766349, -6e-06, -27.150764, 0.581492, -6e-06, -26.854437, 0.520209, -0.121756, -27.84234, 0.468493, -0.070039, -26.854437, 0.468493, -0.070039, -27.84234, 0.468493, -0.173472, -26.854437, 0.416776, -0.121756, -27.84234, 0.416776, -0.121756, -27.84234, 0.416776, -0.121756, -26.854437, 0.468493, -0.070039, -27.84234, 0.468493, -0.070039, -27.84234, 0.520209, -0.121756, -26.854437, 0.468493, -0.173472, -27.84234, 0.468493, -0.173472, -27.84234, 0.468493, -0.070039, -27.84234, 0.468493, -0.173472, -27.84234, 0.416776, -0.121756, -26.854437, 0.468493, 0.070029, -27.84234, 0.520209, 0.121745, -26.854437, 0.520209, 0.121745, -26.854437, 0.416776, 0.121745, -27.84234, 0.468493, 0.173462, -27.84234, 0.416776, 0.121745, -26.854437, 0.468493, 0.070029, -27.84234, 0.416776, 0.121745, -27.84234, 0.468493, 0.070029, -27.84234, 0.468493, 0.173462, -26.854437, 0.520209, 0.121745, -27.84234, 0.520209, 0.121745, -27.84234, 0.468493, 0.070029, -27.84234, 0.468493, 0.173462, -27.84234, 0.520209, 0.121745, 7.57557, -0.523717, 6.874849, 7.57557, -0.234789, 6.797431, 7.457663, -0.187338, 6.879619, 7.57557, -0.523717, 6.874849, 7.457663, -0.523717, 6.969751, 7.457663, -0.860096, 6.879619, 7.57557, -0.023279, 6.585921, 7.57557, 0.054139, 6.296993, 7.457663, 0.149041, 6.296993, 7.57557, -1.024155, 6.585921, 7.57557, -0.812645, 6.797431, 7.457663, -0.860096, 6.879619, 7.57557, -0.023279, 6.585921, 7.457663, 0.058908, 6.633372, 7.457663, -0.187338, 6.879619, 7.57557, -1.101573, 6.296993, 7.57557, -1.024155, 6.585921, 7.457663, -1.106343, 6.633372, 7.457663, 0.058908, 6.633372, 6.535218, 0.21147, 6.693858, 6.587801, -0.07608, 6.984383, 7.457663, -1.106343, 6.633372, 6.793842, -1.202811, 6.693858, 6.813089, -1.296494, 6.296993, 7.457663, -0.187338, 6.879619, 6.587801, -0.07608, 6.984383, 6.669429, -0.522461, 7.090722, 6.535219, 0.21147, 5.900129, 6.515972, 0.31672, 6.296993, 7.457663, 0.149041, 6.296993, 7.457663, -0.523717, 6.969751, 6.669429, -0.522461, 7.090722, 6.741259, -0.915261, 6.984383, 7.457663, -0.860096, 6.879619, 6.741259, -0.915261, 6.984383, 6.793842, -1.202811, 6.693858, -2.495383, 0.291829, 6.764008, -2.49961, 0.411763, 6.296991, -3.992533, 0.210898, 6.296991, -2.481041, -0.100893, 5.560101, -3.968354, -0.269302, 5.557125, -3.986801, 0.096896, 5.823615, 1.056457, 0.674755, 6.296992, 0.219224, 0.444268, 6.296992, 0.219224, 0.407437, 6.442794, -2.495383, 0.291829, 5.829974, -3.986801, 0.096896, 5.823615, -3.992533, 0.210898, 6.296991, 4.690493, 0.283496, 6.687037, 2.306823, 0.649738, 6.691643, 2.306822, 0.150331, 6.985501, 4.690493, -1.286003, 6.584775, 4.690493, -0.996553, 6.91618, 2.306822, -1.016206, 6.880252, 4.690493, 0.396952, 6.296993, 2.306823, 0.758841, 6.296992, 2.306823, 0.649738, 6.691643, 4.690493, -0.996553, 6.91618, 4.690493, -0.624713, 7.043916, 2.306822, -0.629597, 7.027306, 4.690493, -0.062799, 6.975354, 2.306822, 0.150331, 6.985501, 2.306822, -0.629597, 7.027306, 4.690493, -1.337667, 6.296993, 4.690493, -1.286003, 6.584775, 2.306823, -1.265685, 6.509758, 2.306822, 0.150331, 6.985501, 2.306823, 0.649738, 6.691643, 1.03816, 0.585367, 6.642593, 2.306823, 0.649738, 6.691643, 2.306823, 0.758841, 6.296992, 1.056457, 0.674755, 6.296992, 2.306822, 0.150331, 6.985501, 0.884346, -0.140304, 6.895591, 1.180024, -0.526971, 6.812483, 2.306823, -1.308999, 6.296992, 2.306823, -1.265685, 6.509758, 1.163778, -1.040459, 6.464466, 7.575571, -0.523717, 5.719137, 7.457664, -0.523717, 5.624235, 7.457664, -0.187338, 5.714368, 7.457664, -0.860096, 5.714368, 7.457664, -0.523717, 5.624235, 7.575571, -0.523717, 5.719137, 7.457664, 0.058908, 5.960614, 7.457663, 0.149041, 6.296993, 7.57557, 0.054139, 6.296993, 7.575571, -1.024155, 6.008065, 7.457664, -1.106343, 5.960614, 7.457664, -0.860096, 5.714368, 7.457664, -0.187338, 5.714368, 7.457664, 0.058908, 5.960614, 7.575571, -0.023279, 6.008065, 7.57557, -1.101573, 6.296993, 7.457663, -1.196475, 6.296993, 7.457664, -1.106343, 5.960614, 6.587802, -0.07608, 5.609604, 6.535219, 0.21147, 5.900129, 7.457664, 0.058908, 5.960614, 6.813089, -1.296494, 6.296993, 6.793843, -1.202811, 5.900129, 7.457664, -1.106343, 5.960614, 6.66943, -0.522461, 5.503265, 6.587802, -0.07608, 5.609604, 7.457664, -0.187338, 5.714368, 6.74126, -0.915261, 5.609604, 6.66943, -0.522461, 5.503265, 7.457664, -0.523717, 5.624235, 6.793843, -1.202811, 5.900129, 6.74126, -0.915261, 5.609604, 7.457664, -0.860096, 5.714368, -2.43466, -1.410627, 6.296991, -2.438639, -1.301233, 6.75528, -3.911385, -1.402036, 6.761054, -2.438638, -1.301233, 5.838701, -3.911384, -1.402036, 5.832928, -3.925848, -1.11465, 5.605434, 0.219224, 0.407437, 6.15119, 0.219224, 0.444268, 6.296992, 1.056457, 0.674755, 6.296992, -3.968354, -0.269302, 5.557125, -2.481041, -0.100893, 5.560101, -2.449615, -0.995583, 5.615082, 2.306822, 0.150331, 5.608484, 2.306823, 0.649738, 5.902342, 4.690493, 0.283496, 5.906949, 4.690493, -1.286003, 6.00921, 2.306823, -1.265685, 6.084227, 2.306823, -1.016206, 5.713732, 2.306823, 0.649738, 5.902342, 2.306823, 0.758841, 6.296992, 4.690493, 0.396952, 6.296993, 4.690493, -0.996553, 5.677805, 2.306823, -1.016206, 5.713732, 2.306823, -0.629597, 5.566679, 2.306823, -0.629597, 5.566679, 2.306822, 0.150331, 5.608484, 4.690493, -0.062799, 5.618632, 4.690493, -1.337667, 6.296993, 2.306823, -1.308999, 6.296992, 2.306823, -1.265685, 6.084227, 2.306822, 0.150331, 5.608484, 0.884346, -0.140304, 5.698393, 1.03816, 0.585367, 5.951391, 2.306823, 0.649738, 5.902342, 1.03816, 0.585367, 5.951391, 1.056457, 0.674755, 6.296992, 1.180024, -0.526971, 5.781501, 0.884346, -0.140304, 5.698393, 2.306822, 0.150331, 5.608484, 2.306823, -1.308999, 6.296992, 0.884346, -1.120213, 6.296992, 1.163778, -1.040459, 6.129518, 7.575571, -1.024155, 6.008065, 7.575571, -0.812645, 5.796556, 7.487842, -0.784038, 5.846106, 7.57557, -0.812645, 6.797431, 7.487842, -0.784038, 6.747881, 7.487842, -0.523717, 6.817634, 7.575571, -0.234789, 5.796556, 7.575571, -0.023279, 6.008065, 7.487842, -0.072829, 6.036673, 7.57557, 0.054139, 6.296993, 7.57557, -0.023279, 6.585921, 7.487842, -0.072829, 6.557313, 7.57557, -1.101573, 6.296993, 7.575571, -1.024155, 6.008065, 7.487842, -0.974605, 6.036673, 7.57557, -1.024155, 6.585921, 7.487842, -0.974605, 6.557313, 7.487842, -0.784038, 6.747881, 7.57557, -0.234789, 6.797431, 7.487842, -0.263397, 6.747881, 7.487842, -0.072829, 6.557313, 7.575571, -0.234789, 5.796556, 7.487842, -0.263397, 5.846106, 7.487842, -0.523717, 5.776353, 7.57557, -1.101573, 6.296993, 7.487842, -1.044358, 6.296993, 7.487842, -0.974605, 6.557313, 7.575571, -0.812645, 5.796556, 7.575571, -0.523717, 5.719137, 7.487842, -0.523717, 5.776353, 7.57557, -0.234789, 6.797431, 7.57557, -0.523717, 6.874849, 7.487842, -0.523717, 6.817634, 7.57557, 0.054139, 6.296993, 7.487842, -0.003077, 6.296993, 7.487842, -0.072829, 6.036673, 6.813089, -1.296494, 6.296993, 4.690493, -1.337667, 6.296993, 4.690493, -1.286003, 6.00921, 4.690493, -0.624713, 5.550069, 4.690493, -0.062799, 5.618632, 6.587802, -0.07608, 5.609604, 4.690493, -0.996553, 5.677805, 4.690493, -0.624713, 5.550069, 6.66943, -0.522461, 5.503265, 4.690493, 0.283496, 5.906949, 4.690493, 0.396952, 6.296993, 6.515972, 0.31672, 6.296993, 4.690493, -1.286003, 6.00921, 4.690493, -0.996553, 5.677805, 6.74126, -0.915261, 5.609604, 4.690493, -0.062799, 5.618632, 4.690493, 0.283496, 5.906949, 6.535219, 0.21147, 5.900129, 6.813089, -1.296494, 6.296993, 6.793842, -1.202811, 6.693858, 4.690493, -1.286003, 6.584775, 6.587801, -0.07608, 6.984383, 4.690493, -0.062799, 6.975354, 4.690493, -0.624713, 7.043916, 6.669429, -0.522461, 7.090722, 4.690493, -0.624713, 7.043916, 4.690493, -0.996553, 6.91618, 6.515972, 0.31672, 6.296993, 4.690493, 0.396952, 6.296993, 4.690493, 0.283496, 6.687037, 6.741259, -0.915261, 6.984383, 4.690493, -0.996553, 6.91618, 4.690493, -1.286003, 6.584775, 6.535218, 0.21147, 6.693858, 4.690493, 0.283496, 6.687037, 4.690493, -0.062799, 6.975354, -2.43466, -1.410627, 6.296991, -3.90565, -1.496107, 6.296991, -3.911384, -1.402036, 5.832928, 0.884346, -0.140304, 5.698393, 0.884346, -0.74334, 6.103002, -0.975328, -0.821385, 5.748633, -2.481041, -0.100893, 7.033881, -2.495383, 0.291829, 6.764008, -3.986801, 0.096896, 6.770368, -2.438639, -1.301233, 6.75528, -2.449615, -0.995583, 6.978899, -3.925848, -1.11465, 6.988548, 0.884346, -0.74334, 6.490982, -0.975328, -0.821385, 6.845348, -0.969139, -1.109005, 6.6661, 0.219224, 0.407437, 6.442794, -1.000475, 0.389018, 6.672743, -0.991939, 0.016406, 6.89559, -0.975328, -0.821385, 6.845348, 0.884346, -0.74334, 6.490982, 0.884346, -0.140304, 6.895591, 0.884346, -1.120213, 6.296992, -0.967388, -1.222251, 6.296991, -0.969139, -1.109005, 5.927882, 0.884346, -0.74334, 6.103002, 1.163778, -1.040459, 6.129518, -0.969139, -1.109005, 5.927882, 0.884346, -1.120213, 6.296992, 1.163778, -1.040459, 6.464466, -0.969139, -1.109005, 6.6661, 0.219224, 0.407437, 6.15119, -1.000475, 0.389018, 5.921238, -1.002692, 0.500643, 6.296991, 0.219224, 0.407437, 6.15119, 0.884346, -0.140304, 5.698393, -0.991939, 0.016406, 5.698392, 0.219224, 0.407437, 6.442794, 0.219224, 0.444268, 6.296992, -1.002692, 0.500643, 6.296991, -0.969139, -1.109005, 6.6661, -0.975328, -0.821385, 6.845348, -2.449615, -0.995583, 6.978899, -0.991939, 0.016406, 6.89559, -1.000475, 0.389018, 6.672743, -2.495383, 0.291829, 6.764008, -0.969139, -1.109005, 5.927882, -0.967388, -1.222251, 6.296991, -2.43466, -1.410627, 6.296991, -0.975328, -0.821385, 6.845348, -0.991939, 0.016406, 6.89559, -2.481041, -0.100893, 7.033881, -0.969139, -1.109005, 5.927882, -2.438638, -1.301233, 5.838701, -2.449615, -0.995583, 5.615082, -0.969139, -1.109005, 6.6661, -2.438639, -1.301233, 6.75528, -2.43466, -1.410627, 6.296991, -1.000475, 0.389018, 5.921238, -2.495383, 0.291829, 5.829974, -2.49961, 0.411763, 6.296991, -0.991939, 0.016406, 5.698392, -2.481041, -0.100893, 5.560101, -2.495383, 0.291829, 5.829974, -1.000475, 0.389018, 6.672743, -1.002692, 0.500643, 6.296991, -2.49961, 0.411763, 6.296991, -0.975328, -0.821385, 5.748633, -2.449615, -0.995583, 5.615082, -2.481041, -0.100893, 5.560101, -3.968354, -0.269302, 5.557125, -5.668923, -0.393862, 5.639689, -5.684218, -0.090228, 5.87644, -3.992533, 0.210898, 6.296991, -3.986801, 0.096896, 5.823615, -5.684218, -0.090228, 5.87644, -3.925848, -1.11465, 6.988548, -5.633679, -1.094783, 6.911374, -5.621687, -1.333069, 6.709267, -3.925848, -1.11465, 5.605434, -3.911384, -1.402036, 5.832928, -5.621686, -1.333069, 5.884714, -3.968354, -0.269302, 7.036857, -3.986801, 0.096896, 6.770368, -5.684218, -0.090228, 6.717541, -3.911385, -1.402036, 6.761054, -5.621687, -1.333069, 6.709267, -5.616933, -1.416285, 6.296991, -5.633679, -1.094783, 5.682607, -5.668923, -0.393862, 5.639689, -3.968354, -0.269302, 5.557125, -3.911384, -1.402036, 5.832928, -3.90565, -1.496107, 6.296991, -5.616933, -1.416285, 6.296991, -3.992533, 0.210898, 6.296991, -5.688971, 0.004296, 6.296991, -5.684218, -0.090228, 6.717541, -5.621687, -1.333069, 6.709267, -5.633679, -1.094783, 6.911374, -6.940484, -1.035277, 6.602757, -5.616933, -1.416285, 6.296991, -5.621687, -1.333069, 6.709267, -6.933425, -1.175507, 6.502172, -5.621686, -1.333069, 5.884714, -6.933424, -1.175507, 6.091807, -6.940484, -1.035277, 5.991223, -5.688971, 0.004296, 6.296991, -5.684218, -0.090228, 5.87644, -6.970225, -0.444103, 6.08769, -5.688971, 0.004296, 6.296991, -6.973022, -0.388476, 6.29699, -6.970225, -0.444103, 6.50629, -5.668923, -0.393862, 6.954292, -5.684218, -0.090228, 6.717541, -6.970225, -0.444103, 6.50629, -5.668923, -0.393862, 5.639689, -6.961223, -0.62279, 5.969863, -6.970225, -0.444103, 6.08769, -5.616933, -1.416285, 6.296991, -6.930628, -1.231287, 6.29699, -6.933424, -1.175507, 6.091807, -6.930628, -1.231287, 6.29699, -7.335758, -1.015646, 6.29699, -7.311787, -0.973861, 6.206894, -6.930628, -1.231287, 6.29699, -6.933425, -1.175507, 6.502172, -7.311787, -0.973861, 6.387085, -6.973022, -0.388476, 6.29699, -6.970225, -0.444103, 6.08769, -7.321105, -0.695942, 6.200601, -6.973022, -0.388476, 6.29699, -7.354806, -0.636946, 6.29699, -7.321105, -0.695942, 6.393379, -5.633679, -1.094783, 5.682607, -6.940484, -1.035277, 5.991223, -6.961223, -0.62279, 5.969863, -6.961224, -0.62279, 6.624117, -7.321105, -0.695942, 6.393379, -7.311787, -0.973861, 6.387085, -3.968354, -0.269302, 7.036857, -3.925848, -1.11465, 6.988548, -2.449615, -0.995583, 6.978899, -3.968354, -0.269302, 7.036857, -5.668923, -0.393862, 6.954292, -5.633679, -1.094783, 6.911374, -5.633679, -1.094783, 6.911374, -5.668923, -0.393862, 6.954292, -6.961224, -0.62279, 6.624117, -7.311787, -0.973861, 6.206894, -7.321105, -0.695942, 6.200601, -6.961223, -0.62279, 5.969863, 7.457663, 0.149041, 6.296993, 6.515972, 0.31672, 6.296993, 6.535218, 0.21147, 6.693858, 7.487842, -0.072829, 6.557313, 7.487842, -0.974605, 6.557313, 7.487842, -1.044358, 6.296993, 7.487842, -0.072829, 6.036673, 7.487842, -0.003077, 6.296993, 7.487842, -1.044358, 6.296993, 7.487842, -0.263397, 6.747881, 7.487842, -0.784038, 6.747881, 7.487842, -0.974605, 6.557313, 7.487842, -0.263397, 5.846106, 7.487842, -0.072829, 6.036673, 7.487842, -0.974605, 6.036673, 7.575573, -0.523717, -6.874846, 7.457666, -0.523717, -6.969748, 7.457666, -0.187338, -6.879616, 7.457666, -0.860096, -6.879616, 7.457666, -0.523717, -6.969748, 7.575573, -0.523717, -6.874846, 7.575573, -0.023279, -6.585918, 7.457666, 0.058908, -6.633369, 7.457666, 0.149041, -6.29699, 7.575573, -1.024155, -6.585918, 7.457666, -1.106343, -6.633369, 7.457666, -0.860096, -6.879616, 7.457666, -0.187338, -6.879616, 7.457666, 0.058908, -6.633369, 7.575573, -0.023279, -6.585918, 7.575573, -1.101573, -6.29699, 7.457666, -1.196475, -6.29699, 7.457666, -1.106343, -6.633369, 7.457666, 0.058908, -6.633369, 7.457666, -0.187338, -6.879616, 6.587804, -0.07608, -6.98438, 7.457666, -1.106343, -6.633369, 7.457666, -1.196475, -6.29699, 6.813092, -1.296494, -6.29699, 7.457666, -0.187338, -6.879616, 7.457666, -0.523717, -6.969748, 6.669432, -0.522461, -7.090719, 7.457666, 0.149041, -6.29699, 6.515975, 0.31672, -6.29699, 6.535221, 0.21147, -5.900126, 7.457666, -0.523717, -6.969748, 7.457666, -0.860096, -6.879616, 6.741262, -0.915261, -6.98438, 7.457666, -0.860096, -6.879616, 7.457666, -1.106343, -6.633369, 6.793845, -1.202811, -6.693855, -2.49538, 0.291829, -6.764009, -3.986798, 0.096896, -6.77037, -3.992531, 0.210898, -6.296993, -3.986799, 0.096896, -5.823617, -3.968352, -0.269302, -5.557127, -2.481038, -0.100893, -5.560102, 0.219227, 0.407437, -6.442794, 0.219227, 0.444268, -6.296992, 1.056459, 0.674755, -6.296992, -3.992531, 0.210898, -6.296993, -3.986799, 0.096896, -5.823617, -2.495381, 0.291829, -5.829975, 2.306825, 0.150331, -6.9855, 2.306825, 0.649738, -6.691642, 4.690495, 0.283496, -6.687035, 4.690495, -1.286003, -6.584774, 2.306825, -1.265685, -6.509757, 2.306825, -1.016206, -6.880251, 2.306825, 0.649738, -6.691642, 2.306825, 0.758841, -6.296991, 4.690495, 0.396952, -6.296991, 4.690495, -0.996553, -6.916178, 2.306825, -1.016206, -6.880251, 2.306825, -0.629597, -7.027305, 2.306825, -0.629597, -7.027305, 2.306825, 0.150331, -6.9855, 4.690495, -0.062799, -6.975352, 4.690495, -1.337667, -6.296991, 2.306825, -1.308999, -6.296991, 2.306825, -1.265685, -6.509757, 2.306825, 0.150331, -6.9855, 0.884349, -0.140304, -6.895591, 1.038163, 0.585367, -6.642593, 2.306825, 0.649738, -6.691642, 1.038163, 0.585367, -6.642593, 1.056459, 0.674755, -6.296992, 1.180026, -0.526971, -6.812483, 0.884349, -0.140304, -6.895591, 2.306825, 0.150331, -6.9855, 2.306825, -1.308999, -6.296991, 0.884349, -1.120213, -6.296992, 1.163781, -1.040459, -6.464466, 7.575572, -0.523717, -5.719134, 7.575572, -0.234789, -5.796553, 7.457665, -0.187338, -5.714365, 7.575572, -0.523717, -5.719134, 7.457665, -0.523717, -5.624232, 7.457665, -0.860096, -5.714365, 7.575572, -0.023279, -6.008062, 7.575573, 0.054139, -6.29699, 7.457666, 0.149041, -6.29699, 7.575572, -1.024155, -6.008062, 7.575572, -0.812645, -5.796553, 7.457665, -0.860096, -5.714365, 7.575572, -0.023279, -6.008062, 7.457665, 0.058908, -5.960611, 7.457665, -0.187338, -5.714365, 7.575572, -1.024155, -6.008062, 7.457665, -1.106343, -5.960611, 7.457666, -1.196475, -6.29699, 7.457665, 0.058908, -5.960611, 6.535221, 0.21147, -5.900126, 6.587804, -0.07608, -5.609601, 7.457665, -1.106343, -5.960611, 6.793845, -1.202811, -5.900126, 6.813092, -1.296494, -6.29699, 7.457665, -0.187338, -5.714365, 6.587804, -0.07608, -5.609601, 6.669432, -0.522461, -5.503262, 7.457665, -0.523717, -5.624232, 6.669432, -0.522461, -5.503262, 6.741261, -0.915261, -5.609601, 7.457665, -0.860096, -5.714365, 6.741261, -0.915261, -5.609601, 6.793845, -1.202811, -5.900126, -2.434657, -1.410627, -6.296992, -3.905648, -1.496107, -6.296993, -3.911382, -1.402036, -6.761056, -3.925845, -1.11465, -5.605436, -3.911382, -1.402036, -5.83293, -2.438636, -1.301233, -5.838702, 1.056459, 0.674755, -6.296992, 0.219227, 0.444268, -6.296992, 0.219227, 0.407437, -6.15119, -2.449613, -0.995583, -5.615083, -2.481038, -0.100893, -5.560102, -3.968352, -0.269302, -5.557127, 4.690495, 0.283496, -5.906947, 2.306825, 0.649738, -5.902341, 2.306824, 0.150331, -5.608483, 4.690495, -1.286003, -6.009208, 4.690495, -0.996553, -5.677804, 2.306825, -1.016206, -5.713731, 4.690495, 0.396952, -6.296991, 2.306825, 0.758841, -6.296991, 2.306825, 0.649738, -5.902341, 4.690495, -0.996553, -5.677804, 4.690495, -0.624713, -5.550067, 2.306825, -0.629597, -5.566678, 4.690495, -0.062799, -5.61863, 2.306824, 0.150331, -5.608483, 2.306825, -0.629597, -5.566678, 4.690495, -1.337667, -6.296991, 4.690495, -1.286003, -6.009208, 2.306825, -1.265685, -6.084226, 2.306824, 0.150331, -5.608483, 2.306825, 0.649738, -5.902341, 1.038162, 0.585367, -5.951391, 2.306825, 0.649738, -5.902341, 2.306825, 0.758841, -6.296991, 1.056459, 0.674755, -6.296992, 2.306824, 0.150331, -5.608483, 0.884349, -0.140304, -5.698393, 1.180026, -0.526971, -5.781501, 2.306825, -1.308999, -6.296991, 2.306825, -1.265685, -6.084226, 1.16378, -1.040459, -6.129518, 7.575572, -1.024155, -6.008062, 7.487844, -0.974605, -6.03667, 7.487844, -0.784038, -5.846103, 7.487844, -0.523717, -6.817631, 7.487844, -0.784038, -6.747878, 7.575573, -0.812645, -6.797428, 7.575572, -0.234789, -5.796553, 7.487844, -0.263397, -5.846103, 7.487844, -0.072829, -6.03667, 7.575573, 0.054139, -6.29699, 7.487844, -0.003077, -6.29699, 7.487844, -0.072829, -6.557311, 7.487844, -1.044358, -6.29699, 7.487844, -0.974605, -6.03667, 7.575572, -1.024155, -6.008062, 7.487844, -0.784038, -6.747878, 7.487844, -0.974605, -6.557311, 7.575573, -1.024155, -6.585918, 7.487844, -0.072829, -6.557311, 7.487844, -0.263397, -6.747878, 7.575573, -0.234789, -6.797428, 7.487844, -0.523717, -5.77635, 7.487844, -0.263397, -5.846103, 7.575572, -0.234789, -5.796553, 7.487844, -0.974605, -6.557311, 7.487844, -1.044358, -6.29699, 7.575573, -1.101573, -6.29699, 7.575572, -0.812645, -5.796553, 7.487844, -0.784038, -5.846103, 7.487844, -0.523717, -5.77635, 7.575573, -0.234789, -6.797428, 7.487844, -0.263397, -6.747878, 7.487844, -0.523717, -6.817631, 7.575572, -0.023279, -6.008062, 7.487844, -0.072829, -6.03667, 7.487844, -0.003077, -6.29699, 6.813092, -1.296494, -6.29699, 6.793845, -1.202811, -5.900126, 4.690495, -1.286003, -6.009208, 6.587804, -0.07608, -5.609601, 4.690495, -0.062799, -5.61863, 4.690495, -0.624713, -5.550067, 6.669432, -0.522461, -5.503262, 4.690495, -0.624713, -5.550067, 4.690495, -0.996553, -5.677804, 6.515975, 0.31672, -6.29699, 4.690495, 0.396952, -6.296991, 4.690495, 0.283496, -5.906947, 6.741261, -0.915261, -5.609601, 4.690495, -0.996553, -5.677804, 4.690495, -1.286003, -6.009208, 6.535221, 0.21147, -5.900126, 4.690495, 0.283496, -5.906947, 4.690495, -0.062799, -5.61863, 6.813092, -1.296494, -6.29699, 4.690495, -1.337667, -6.296991, 4.690495, -1.286003, -6.584774, 4.690495, -0.624713, -7.043914, 4.690495, -0.062799, -6.975352, 6.587804, -0.07608, -6.98438, 4.690495, -0.996553, -6.916178, 4.690495, -0.624713, -7.043914, 6.669432, -0.522461, -7.090719, 4.690495, 0.283496, -6.687035, 4.690495, 0.396952, -6.296991, 6.515975, 0.31672, -6.29699, 4.690495, -1.286003, -6.584774, 4.690495, -0.996553, -6.916178, 6.741262, -0.915261, -6.98438, 4.690495, -0.062799, -6.975352, 4.690495, 0.283496, -6.687035, 6.535221, 0.21147, -6.693855, -3.911382, -1.402036, -5.83293, -3.905648, -1.496107, -6.296993, -2.434657, -1.410627, -6.296992, 0.884349, -0.140304, -5.698393, -0.991937, 0.016406, -5.698392, -0.975326, -0.821385, -5.748633, -2.481038, -0.100893, -7.033882, -3.968351, -0.269302, -7.036859, -3.986798, 0.096896, -6.77037, -2.438636, -1.301233, -6.755281, -3.911382, -1.402036, -6.761056, -3.925845, -1.11465, -6.98855, -0.969136, -1.109005, -6.6661, -0.975326, -0.821385, -6.845348, 0.884349, -0.74334, -6.490982, -0.991937, 0.016406, -6.89559, -1.000472, 0.389018, -6.672743, 0.219227, 0.407437, -6.442794, -0.975326, -0.821385, -6.845348, -0.991937, 0.016406, -6.89559, 0.884349, -0.140304, -6.895591, -0.969136, -1.109005, -5.927882, -0.967385, -1.222251, -6.296991, 0.884349, -1.120213, -6.296992, 0.884349, -0.74334, -6.103002, -0.975326, -0.821385, -5.748633, -0.969136, -1.109005, -5.927882, 0.884349, -1.120213, -6.296992, -0.967385, -1.222251, -6.296991, -0.969136, -1.109005, -6.6661, -1.00269, 0.500643, -6.296991, -1.000472, 0.389018, -5.921238, 0.219227, 0.407437, -6.15119, 0.219227, 0.407437, -6.15119, -1.000472, 0.389018, -5.921238, -0.991937, 0.016406, -5.698392, 0.219227, 0.407437, -6.442794, -1.000472, 0.389018, -6.672743, -1.00269, 0.500643, -6.296991, -0.969136, -1.109005, -6.6661, -2.438636, -1.301233, -6.755281, -2.449613, -0.995583, -6.9789, -0.991937, 0.016406, -6.89559, -2.481038, -0.100893, -7.033882, -2.49538, 0.291829, -6.764009, -0.969136, -1.109005, -5.927882, -2.438636, -1.301233, -5.838702, -2.434657, -1.410627, -6.296992, -2.481038, -0.100893, -7.033882, -0.991937, 0.016406, -6.89559, -0.975326, -0.821385, -6.845348, -2.449613, -0.995583, -5.615083, -2.438636, -1.301233, -5.838702, -0.969136, -1.109005, -5.927882, -2.434657, -1.410627, -6.296992, -2.438636, -1.301233, -6.755281, -0.969136, -1.109005, -6.6661, -2.499607, 0.411763, -6.296992, -2.495381, 0.291829, -5.829975, -1.000472, 0.389018, -5.921238, -2.495381, 0.291829, -5.829975, -2.481038, -0.100893, -5.560102, -0.991937, 0.016406, -5.698392, -1.000472, 0.389018, -6.672743, -2.49538, 0.291829, -6.764009, -2.499607, 0.411763, -6.296992, -2.481038, -0.100893, -5.560102, -2.449613, -0.995583, -5.615083, -0.975326, -0.821385, -5.748633, -5.684216, -0.090228, -5.876442, -5.668921, -0.393862, -5.639691, -3.968352, -0.269302, -5.557127, -3.992531, 0.210898, -6.296993, -5.688968, 0.004296, -6.296993, -5.684216, -0.090228, -5.876442, -5.621684, -1.333069, -6.709269, -5.633677, -1.094783, -6.911376, -3.925845, -1.11465, -6.98855, -3.925845, -1.11465, -5.605436, -5.633677, -1.094783, -5.682609, -5.621685, -1.333069, -5.884716, -3.968351, -0.269302, -7.036859, -5.668921, -0.393862, -6.954294, -5.684216, -0.090228, -6.717543, -5.61693, -1.416285, -6.296993, -5.621684, -1.333069, -6.709269, -3.911382, -1.402036, -6.761056, -5.633677, -1.094783, -5.682609, -3.925845, -1.11465, -5.605436, -3.968352, -0.269302, -5.557127, -3.911382, -1.402036, -5.83293, -5.621685, -1.333069, -5.884716, -5.61693, -1.416285, -6.296993, -5.684216, -0.090228, -6.717543, -5.688968, 0.004296, -6.296993, -3.992531, 0.210898, -6.296993, -5.621684, -1.333069, -6.709269, -6.933422, -1.175507, -6.502175, -6.940481, -1.035277, -6.60276, -5.61693, -1.416285, -6.296993, -6.930625, -1.231287, -6.296993, -6.933422, -1.175507, -6.502175, -6.940482, -1.035277, -5.991226, -6.933423, -1.175507, -6.09181, -5.621685, -1.333069, -5.884716, -5.688968, 0.004296, -6.296993, -6.973019, -0.388476, -6.296993, -6.970223, -0.444103, -6.087693, -6.970222, -0.444103, -6.506293, -6.973019, -0.388476, -6.296993, -5.688968, 0.004296, -6.296993, -5.668921, -0.393862, -6.954294, -6.961221, -0.62279, -6.62412, -6.970222, -0.444103, -6.506293, -6.970223, -0.444103, -6.087693, -6.961221, -0.62279, -5.969866, -5.668921, -0.393862, -5.639691, -6.933423, -1.175507, -6.09181, -6.930625, -1.231287, -6.296993, -5.61693, -1.416285, -6.296993, -7.311784, -0.973861, -6.206897, -7.335755, -1.015646, -6.296993, -6.930625, -1.231287, -6.296993, -6.930625, -1.231287, -6.296993, -7.335755, -1.015646, -6.296993, -7.311784, -0.973861, -6.387088, -6.973019, -0.388476, -6.296993, -7.354804, -0.636946, -6.296993, -7.321102, -0.695942, -6.200603, -7.321102, -0.695942, -6.393382, -7.354804, -0.636946, -6.296993, -6.973019, -0.388476, -6.296993, -5.633677, -1.094783, -5.682609, -5.668921, -0.393862, -5.639691, -6.961221, -0.62279, -5.969866, -7.311784, -0.973861, -6.387088, -7.321102, -0.695942, -6.393382, -6.961221, -0.62279, -6.62412, -2.449613, -0.995583, -6.9789, -3.925845, -1.11465, -6.98855, -3.968351, -0.269302, -7.036859, -5.633677, -1.094783, -6.911376, -5.668921, -0.393862, -6.954294, -3.968351, -0.269302, -7.036859, -6.961221, -0.62279, -6.62412, -5.668921, -0.393862, -6.954294, -5.633677, -1.094783, -6.911376, -6.961221, -0.62279, -5.969866, -7.321102, -0.695942, -6.200603, -7.311784, -0.973861, -6.206897, 7.457666, 0.149041, -6.29699, 7.457666, 0.058908, -6.633369, 6.535221, 0.21147, -6.693855, 7.487844, -0.072829, -6.557311, 7.487844, -0.003077, -6.29699, 7.487844, -1.044358, -6.29699, 7.487844, -0.072829, -6.03667, 7.487844, -0.974605, -6.03667, 7.487844, -1.044358, -6.29699, 7.487844, -0.263397, -6.747878, 7.487844, -0.072829, -6.557311, 7.487844, -0.974605, -6.557311, 7.487844, -0.263397, -5.846103, 7.487844, -0.784038, -5.846103, 7.487844, -0.974605, -6.03667, 4.306357, -0.065003, 12.623335, 4.188449, -0.017552, 12.705523, 4.18845, -0.353931, 12.795655, 4.306357, -0.353931, 12.700752, 4.18845, -0.353931, 12.795655, 4.18845, -0.69031, 12.705523, 4.306357, 0.223925, 12.122897, 4.188449, 0.318827, 12.122897, 4.188449, 0.228694, 12.459276, 4.306357, -0.642859, 12.623335, 4.18845, -0.69031, 12.705523, 4.18845, -0.936557, 12.459276, 4.306357, 0.146507, 12.411825, 4.188449, 0.228694, 12.459276, 4.188449, -0.017552, 12.705523, 4.306357, -0.931787, 12.122897, 4.306357, -0.854369, 12.411825, 4.18845, -0.936557, 12.459276, 4.188449, 0.318827, 12.122897, 3.430416, 0.458285, 12.122897, 3.440112, 0.350808, 12.525637, 4.18845, -0.69031, 12.705523, 3.538977, -0.745047, 12.820463, 3.565468, -1.038681, 12.525637, 4.188449, 0.228694, 12.459276, 3.440112, 0.350808, 12.525637, 3.466603, 0.057174, 12.820463, 4.18845, -0.936557, 12.459276, 3.565468, -1.038681, 12.525637, 3.575164, -1.138928, 12.122897, 4.188449, -0.017552, 12.705523, 3.466603, 0.057174, 12.820463, 3.50279, -0.343937, 12.928376, 4.18845, -0.353931, 12.795655, 3.50279, -0.343937, 12.928376, 3.538977, -0.745047, 12.820463, 0.645114, -0.843216, 12.742084, 0.645114, -1.159171, 12.410678, 3.565468, -1.038681, 12.525637, 3.440112, 0.350808, 12.525637, 0.645114, 0.409266, 12.512939, 0.645113, 0.050006, 12.801257, 0.645114, -1.159171, 12.410678, 0.645114, -1.204147, 12.122896, 3.575164, -1.138928, 12.122897, 3.466603, 0.057174, 12.820463, 0.645113, 0.050006, 12.801257, 0.645113, -0.457455, 12.86982, 0.645114, 0.409266, 11.732852, 0.645114, 0.52697, 12.122896, 3.430416, 0.458285, 12.122897, 3.50279, -0.343937, 12.928376, 0.645113, -0.457455, 12.86982, 0.645114, -0.843216, 12.742084, -2.953567, -0.786161, 12.122895, -2.824444, -0.716735, 12.255299, -3.369815, -0.401793, 12.268698, -2.384867, 0.37, 12.122896, -3.369815, 0.111208, 12.122895, -3.369815, 0.074377, 12.268698, -2.384867, -0.615198, 12.316885, -3.369815, -0.401793, 12.268698, -2.824444, -0.716735, 12.255299, 0.645113, 0.050006, 12.801257, 0.645114, 0.409266, 12.512939, -0.962391, 0.351322, 12.517546, 0.645114, -1.159171, 12.410678, 0.645114, -0.843216, 12.742084, -0.962391, -0.84642, 12.706156, 0.645114, 0.409266, 12.512939, 0.645114, 0.52697, 12.122896, -0.962391, 0.460424, 12.122896, 0.645114, -0.843216, 12.742084, 0.645113, -0.457455, 12.86982, -0.962391, -0.526441, 12.853209, 0.645113, -0.457455, 12.86982, 0.645113, 0.050006, 12.801257, -0.962391, -0.008162, 12.811404, 0.645114, -1.204147, 12.122896, 0.645114, -1.159171, 12.410678, -0.962391, -1.117826, 12.335661, -0.962391, 0.351322, 12.517546, -2.384867, 0.278758, 12.468496, -2.384867, 0.029482, 12.721495, -0.962391, 0.460424, 12.122896, -2.384867, 0.37, 12.122896, -2.384867, 0.278758, 12.468496, -0.962391, -0.008162, 12.811404, -2.384867, 0.029482, 12.721495, -2.08919, -0.448801, 12.638387, -0.962391, -1.147118, 12.122896, -0.962391, -1.117826, 12.335661, -2.105436, -0.940079, 12.29037, 4.18845, -0.353931, 11.450139, 4.188449, -0.017552, 11.540271, 4.306357, -0.065003, 11.622458, 4.306357, -0.642859, 11.622458, 4.18845, -0.69031, 11.540271, 4.18845, -0.353931, 11.450139, 4.188449, 0.228694, 11.786518, 4.188449, 0.318827, 12.122897, 4.306357, 0.223925, 12.122897, 4.306357, -0.854369, 11.833968, 4.18845, -0.936557, 11.786518, 4.18845, -0.69031, 11.540271, 4.188449, -0.017552, 11.540271, 4.188449, 0.228694, 11.786518, 4.306357, 0.146507, 11.833968, 4.306357, -0.931787, 12.122897, 4.18845, -1.026689, 12.122897, 4.18845, -0.936557, 11.786518, 3.440112, 0.350808, 11.720157, 3.430416, 0.458285, 12.122897, 4.188449, 0.318827, 12.122897, 3.565468, -1.038681, 11.720157, 3.538977, -0.745047, 11.42533, 4.18845, -0.69031, 11.540271, 3.466603, 0.057174, 11.42533, 3.440112, 0.350808, 11.720157, 4.188449, 0.228694, 11.786518, 3.575164, -1.138928, 12.122897, 3.565468, -1.038681, 11.720157, 4.18845, -0.936557, 11.786518, 3.50279, -0.343937, 11.317417, 3.466603, 0.057174, 11.42533, 4.188449, -0.017552, 11.540271, 3.538977, -0.745047, 11.42533, 3.50279, -0.343937, 11.317417, 4.18845, -0.353931, 11.450139, 3.565468, -1.038681, 11.720157, 0.645114, -1.159171, 11.835114, 0.645114, -0.843216, 11.503708, 0.645113, 0.050006, 11.444534, 0.645114, 0.409266, 11.732852, 3.440112, 0.350808, 11.720157, 3.575164, -1.138928, 12.122897, 0.645114, -1.204147, 12.122896, 0.645114, -1.159171, 11.835114, 0.645114, -0.457455, 11.375972, 0.645113, 0.050006, 11.444534, 3.466603, 0.057174, 11.42533, 0.645114, -0.843216, 11.503708, 0.645114, -0.457455, 11.375972, 3.50279, -0.343937, 11.317417, -2.953567, -0.786161, 12.122895, -3.369815, -0.438625, 12.122895, -3.369815, -0.401793, 11.977093, -3.369815, 0.074377, 11.977093, -3.369815, 0.111208, 12.122895, -2.384867, 0.37, 12.122896, -2.824444, -0.716735, 11.990492, -3.369815, -0.401793, 11.977093, -2.384867, -0.615198, 11.928906, 0.645113, 0.050006, 11.444534, -0.962391, -0.008162, 11.434387, -0.962391, 0.351322, 11.728246, 0.645114, -1.159171, 11.835114, -0.962391, -1.117826, 11.910131, -0.962391, -0.84642, 11.539636, 0.645114, 0.409266, 11.732852, -0.962391, 0.351322, 11.728246, -0.962391, 0.460424, 12.122896, 0.645114, -0.843216, 11.503708, -0.962391, -0.84642, 11.539636, -0.962391, -0.526441, 11.392582, 0.645114, -0.457455, 11.375972, -0.962391, -0.526441, 11.392582, -0.962391, -0.008162, 11.434387, 0.645114, -1.204147, 12.122896, -0.962391, -1.147118, 12.122896, -0.962391, -1.117826, 11.910131, -2.384867, 0.029482, 11.524297, -2.384867, 0.278758, 11.777295, -0.962391, 0.351322, 11.728246, -2.384867, 0.278758, 11.777295, -2.384867, 0.37, 12.122896, -0.962391, 0.460424, 12.122896, -2.089189, -0.448801, 11.607405, -2.384867, 0.029482, 11.524297, -0.962391, -0.008162, 11.434387, -0.962391, -1.147118, 12.122896, -2.384867, -0.992071, 12.122896, -2.105436, -0.940079, 11.955421, 4.306357, -0.854369, 11.833968, 4.306357, -0.642859, 11.622458, 4.218628, -0.614251, 11.672009, 4.306357, -0.353931, 12.700752, 4.306357, -0.642859, 12.623335, 4.218628, -0.614251, 12.573785, 4.306357, 0.146507, 11.833968, 4.218628, 0.096957, 11.862576, 4.218628, -0.093611, 11.672009, 4.306357, 0.146507, 12.411825, 4.218628, 0.096957, 12.383218, 4.218628, 0.166709, 12.122897, 4.306357, -0.931787, 12.122897, 4.306357, -0.854369, 11.833968, 4.218628, -0.804819, 11.862576, 4.306357, -0.642859, 12.623335, 4.306357, -0.854369, 12.411825, 4.218628, -0.804819, 12.383218, 4.306357, -0.065003, 12.623335, 4.218628, -0.093611, 12.573785, 4.218628, 0.096957, 12.383218, 4.306357, -0.353931, 11.545041, 4.306357, -0.065003, 11.622458, 4.218628, -0.093611, 11.672009, 4.306357, -0.854369, 12.411825, 4.306357, -0.931787, 12.122897, 4.218628, -0.874572, 12.122897, 4.306357, -0.353931, 11.545041, 4.218628, -0.353931, 11.602257, 4.218628, -0.614251, 11.672009, 4.306357, -0.353931, 12.700752, 4.218628, -0.353931, 12.643538, 4.218628, -0.093611, 12.573785, 4.306357, 0.223925, 12.122897, 4.218628, 0.166709, 12.122897, 4.218628, 0.096957, 11.862576, 3.430416, 0.458285, 12.122897, 0.645114, 0.52697, 12.122896, 0.645114, 0.409266, 12.512939, 4.218628, -0.804819, 12.383218, 4.218628, -0.874572, 12.122897, 4.218628, 0.166709, 12.122897, 4.218628, -0.093611, 12.573785, 4.218628, -0.614251, 12.573785, 4.218628, -0.804819, 12.383218, 4.218628, 0.166709, 12.122897, 4.218628, -0.874572, 12.122897, 4.218628, -0.804819, 11.862576, 4.218628, -0.093611, 11.672009, 4.218628, 0.096957, 11.862576, 4.218628, -0.804819, 11.862576, -2.384867, -0.992071, 12.122896, -2.953567, -0.786161, 12.122895, -2.824444, -0.716735, 11.990492, -2.384867, -0.992071, 12.122896, -2.105436, -0.940079, 12.29037, -2.824444, -0.716735, 12.255299, 4.188455, -0.353931, -12.795653, 4.188454, -0.017552, -12.705521, 4.306362, -0.065003, -12.623333, 4.188455, -0.69031, -12.705521, 4.188455, -0.353931, -12.795653, 4.306362, -0.353931, -12.70075, 4.188454, 0.228694, -12.459274, 4.188454, 0.318827, -12.122895, 4.306362, 0.223925, -12.122895, 4.188455, -0.936557, -12.459274, 4.188455, -0.69031, -12.705521, 4.306362, -0.642859, -12.623333, 4.188454, -0.017552, -12.705521, 4.188454, 0.228694, -12.459274, 4.306362, 0.146507, -12.411823, 4.306362, -0.931787, -12.122895, 4.188455, -1.026689, -12.122895, 4.188455, -0.936557, -12.459274, 3.440117, 0.350808, -12.525635, 3.430421, 0.458285, -12.122895, 4.188454, 0.318827, -12.122895, 3.565473, -1.038681, -12.525635, 3.538982, -0.745047, -12.820461, 4.188455, -0.69031, -12.705521, 3.466608, 0.057174, -12.820461, 3.440117, 0.350808, -12.525635, 4.188454, 0.228694, -12.459274, 3.575169, -1.138928, -12.122895, 3.565473, -1.038681, -12.525635, 4.188455, -0.936557, -12.459274, 3.502795, -0.343937, -12.928374, 3.466608, 0.057174, -12.820461, 4.188454, -0.017552, -12.705521, 3.538982, -0.745047, -12.820461, 3.502795, -0.343937, -12.928374, 4.188455, -0.353931, -12.795653, 3.565473, -1.038681, -12.525635, 0.645118, -1.159171, -12.410678, 0.645119, -0.843216, -12.742084, 3.440117, 0.350808, -12.525635, 3.466608, 0.057174, -12.820461, 0.645118, 0.050006, -12.801257, 3.575169, -1.138928, -12.122895, 0.645118, -1.204147, -12.122896, 0.645118, -1.159171, -12.410678, 3.466608, 0.057174, -12.820461, 3.502795, -0.343937, -12.928374, 0.645118, -0.457455, -12.86982, 3.430421, 0.458285, -12.122895, 0.645118, 0.52697, -12.122896, 0.645118, 0.409266, -11.732852, 3.502795, -0.343937, -12.928374, 3.538982, -0.745047, -12.820461, 0.645119, -0.843216, -12.742084, -2.953562, -0.786161, -12.122897, -3.36981, -0.438625, -12.122897, -3.36981, -0.401793, -12.2687, -3.36981, 0.074377, -12.2687, -3.36981, 0.111208, -12.122897, -2.384862, 0.37, -12.122896, -2.824439, -0.716735, -12.255301, -3.36981, -0.401793, -12.2687, -2.384862, -0.615198, -12.316885, 0.645118, 0.050006, -12.801257, -0.962386, -0.008162, -12.811404, -0.962386, 0.351322, -12.517546, 0.645118, -1.159171, -12.410678, -0.962386, -1.117826, -12.335661, -0.962386, -0.84642, -12.706156, 0.645118, 0.409266, -12.512939, -0.962386, 0.351322, -12.517546, -0.962386, 0.460424, -12.122896, 0.645119, -0.843216, -12.742084, -0.962386, -0.84642, -12.706156, -0.962386, -0.526441, -12.853209, 0.645118, -0.457455, -12.86982, -0.962386, -0.526441, -12.853209, -0.962386, -0.008162, -12.811404, 0.645118, -1.204147, -12.122896, -0.962386, -1.147118, -12.122896, -0.962386, -1.117826, -12.335661, -2.384862, 0.029482, -12.721495, -2.384862, 0.278758, -12.468496, -0.962386, 0.351322, -12.517546, -2.384862, 0.278758, -12.468496, -2.384862, 0.37, -12.122896, -0.962386, 0.460424, -12.122896, -2.089185, -0.448801, -12.638387, -2.384862, 0.029482, -12.721495, -0.962386, -0.008162, -12.811404, -0.962386, -1.147118, -12.122896, -2.384862, -0.992071, -12.122896, -2.105431, -0.940079, -12.29037, 4.306362, -0.065003, -11.622457, 4.188454, -0.017552, -11.540269, 4.188455, -0.353931, -11.450137, 4.306362, -0.642859, -11.622457, 4.306362, -0.353931, -11.545039, 4.188455, -0.353931, -11.450137, 4.306362, 0.223925, -12.122895, 4.188454, 0.318827, -12.122895, 4.188454, 0.228694, -11.786516, 4.306362, -0.854369, -11.833966, 4.306362, -0.642859, -11.622457, 4.188455, -0.69031, -11.540269, 4.306362, 0.146507, -11.833966, 4.188454, 0.228694, -11.786516, 4.188454, -0.017552, -11.540269, 4.306362, -0.931787, -12.122895, 4.306362, -0.854369, -11.833966, 4.188455, -0.936557, -11.786516, 4.188454, 0.318827, -12.122895, 3.430421, 0.458285, -12.122895, 3.440117, 0.350808, -11.720155, 4.188455, -0.69031, -11.540269, 3.538982, -0.745047, -11.425328, 3.565473, -1.038681, -11.720155, 4.188454, 0.228694, -11.786516, 3.440117, 0.350808, -11.720155, 3.466607, 0.057174, -11.425328, 4.188455, -0.936557, -11.786516, 3.565473, -1.038681, -11.720155, 3.575169, -1.138928, -12.122895, 4.188454, -0.017552, -11.540269, 3.466607, 0.057174, -11.425328, 3.502795, -0.343937, -11.317415, 4.188455, -0.353931, -11.450137, 3.502795, -0.343937, -11.317415, 3.538982, -0.745047, -11.425328, 3.565473, -1.038681, -11.720155, 3.538982, -0.745047, -11.425328, 0.645118, -0.843216, -11.503708, 3.440117, 0.350808, -11.720155, 0.645118, 0.409266, -11.732852, 0.645118, 0.050006, -11.444534, 3.575169, -1.138928, -12.122895, 3.565473, -1.038681, -11.720155, 0.645118, -1.159171, -11.835114, 3.466607, 0.057174, -11.425328, 0.645118, 0.050006, -11.444534, 0.645118, -0.457455, -11.375972, 3.502795, -0.343937, -11.317415, 0.645118, -0.457455, -11.375972, 0.645118, -0.843216, -11.503708, -2.953562, -0.786161, -12.122897, -2.824439, -0.716735, -11.990494, -3.36981, -0.401793, -11.977095, -2.384862, 0.37, -12.122896, -3.36981, 0.111208, -12.122897, -3.36981, 0.074377, -11.977095, -2.384862, -0.615198, -11.928906, -3.36981, -0.401793, -11.977095, -2.824439, -0.716735, -11.990494, 0.645118, 0.050006, -11.444534, 0.645118, 0.409266, -11.732852, -0.962386, 0.351322, -11.728246, 0.645118, -1.159171, -11.835114, 0.645118, -0.843216, -11.503708, -0.962386, -0.84642, -11.539636, 0.645118, 0.409266, -11.732852, 0.645118, 0.52697, -12.122896, -0.962386, 0.460424, -12.122896, 0.645118, -0.843216, -11.503708, 0.645118, -0.457455, -11.375972, -0.962386, -0.526441, -11.392582, 0.645118, -0.457455, -11.375972, 0.645118, 0.050006, -11.444534, -0.962387, -0.008162, -11.434387, 0.645118, -1.204147, -12.122896, 0.645118, -1.159171, -11.835114, -0.962386, -1.117826, -11.910131, -0.962386, 0.351322, -11.728246, -2.384862, 0.278758, -11.777295, -2.384863, 0.029482, -11.524297, -0.962386, 0.460424, -12.122896, -2.384862, 0.37, -12.122896, -2.384862, 0.278758, -11.777295, -0.962387, -0.008162, -11.434387, -2.384863, 0.029482, -11.524297, -2.089185, -0.448801, -11.607405, -0.962386, -1.147118, -12.122896, -0.962386, -1.117826, -11.910131, -2.105431, -0.940079, -11.955421, 4.306362, -0.854369, -11.833966, 4.218633, -0.804819, -11.862575, 4.218633, -0.614251, -11.672007, 4.306362, -0.353931, -12.70075, 4.218633, -0.353931, -12.643536, 4.218633, -0.614251, -12.573783, 4.218633, -0.093611, -11.672007, 4.218633, 0.096957, -11.862575, 4.306362, 0.146507, -11.833966, 4.218633, 0.166709, -12.122895, 4.218633, 0.096957, -12.383216, 4.306362, 0.146507, -12.411823, 4.306362, -0.931787, -12.122895, 4.218633, -0.874572, -12.122895, 4.218633, -0.804819, -11.862575, 4.306362, -0.642859, -12.623333, 4.218633, -0.614251, -12.573783, 4.218633, -0.804819, -12.383216, 4.218633, 0.096957, -12.383216, 4.218633, -0.093611, -12.573783, 4.306362, -0.065003, -12.623333, 4.306362, -0.353931, -11.545039, 4.218633, -0.353931, -11.602255, 4.218633, -0.093611, -11.672007, 4.306362, -0.854369, -12.411823, 4.218633, -0.804819, -12.383216, 4.218633, -0.874572, -12.122895, 4.218633, -0.614251, -11.672007, 4.218633, -0.353931, -11.602255, 4.306362, -0.353931, -11.545039, 4.218633, -0.093611, -12.573783, 4.218633, -0.353931, -12.643536, 4.306362, -0.353931, -12.70075, 4.218633, 0.096957, -11.862575, 4.218633, 0.166709, -12.122895, 4.306362, 0.223925, -12.122895, 3.430421, 0.458285, -12.122895, 3.440117, 0.350808, -12.525635, 0.645118, 0.409266, -12.512939, 4.218633, 0.166709, -12.122895, 4.218633, -0.874572, -12.122895, 4.218633, -0.804819, -12.383216, 4.218633, -0.093611, -12.573783, 4.218633, 0.096957, -12.383216, 4.218633, -0.804819, -12.383216, 4.218633, -0.804819, -11.862575, 4.218633, -0.874572, -12.122895, 4.218633, 0.166709, -12.122895, 4.218633, -0.093611, -11.672007, 4.218633, -0.614251, -11.672007, 4.218633, -0.804819, -11.862575, -2.384862, -0.992071, -12.122896, -2.105431, -0.940079, -11.955421, -2.824439, -0.716735, -11.990494, -2.384862, -0.992071, -12.122896, -2.953562, -0.786161, -12.122897, -2.824439, -0.716735, -12.255301, 5.639619, 0.137238, 12.131458, 5.639619, -0.008342, 11.779998, 4.206053, -0.008342, 11.779998, 5.639619, 0.137238, 12.131458, 6.054387, 0.038793, 12.131458, 6.054387, -0.077953, 11.849609, 5.639619, -0.008342, 11.779998, 5.639619, -0.359803, 11.634418, 4.206053, -0.359803, 11.634418, 5.639619, -0.008342, 11.779998, 6.054387, -0.077953, 11.849609, 6.054387, -0.359803, 11.732863, 5.639619, -0.359803, 11.634418, 5.639619, -0.711264, 11.779998, 4.206053, -0.711264, 11.779998, 5.639619, -0.359803, 11.634418, 6.054387, -0.359803, 11.732863, 6.054387, -0.641652, 11.849609, 5.639619, -0.711264, 11.779998, 5.639619, -0.856843, 12.131458, 4.206053, -0.856843, 12.131458, 6.054387, -0.641652, 11.849609, 6.054387, -0.758398, 12.131458, 5.639619, -0.856843, 12.131458, 5.639619, -0.856843, 12.131458, 6.054387, -0.758398, 12.131458, 6.054387, -0.641652, 12.413308, 5.639619, -0.856843, 12.131458, 5.639619, -0.711264, 12.48292, 4.206053, -0.711264, 12.48292, 6.054387, -0.641652, 12.413308, 6.054387, -0.359803, 12.530054, 5.639619, -0.359803, 12.628499, 5.639619, -0.711264, 12.48292, 5.639619, -0.359803, 12.628499, 4.206053, -0.359803, 12.628499, 6.054387, -0.359803, 12.530054, 6.054387, -0.077953, 12.413308, 5.639619, -0.008342, 12.48292, 5.639619, -0.359803, 12.628499, 5.639619, -0.008342, 12.48292, 4.206053, -0.008342, 12.48292, 5.639619, -0.008342, 12.48292, 5.639619, 0.137238, 12.131458, 4.206053, 0.137238, 12.131458, 6.054387, -0.077953, 12.413308, 6.054387, 0.038793, 12.131458, 5.639619, 0.137238, 12.131458, 4.206058, -0.008342, -11.779996, 5.639624, -0.008342, -11.779996, 5.639624, 0.137238, -12.131456, 5.639624, 0.137238, -12.131456, 5.639624, -0.008342, -11.779996, 6.054391, -0.077953, -11.849607, 4.206058, -0.359803, -11.634417, 5.639624, -0.359803, -11.634417, 5.639624, -0.008342, -11.779996, 5.639624, -0.008342, -11.779996, 5.639624, -0.359803, -11.634417, 6.054391, -0.359803, -11.732862, 4.206058, -0.711264, -11.779996, 5.639624, -0.711264, -11.779996, 5.639624, -0.359803, -11.634417, 5.639624, -0.359803, -11.634417, 5.639624, -0.711264, -11.779996, 6.054391, -0.641652, -11.849607, 4.206058, -0.856843, -12.131456, 5.639624, -0.856843, -12.131456, 5.639624, -0.711264, -11.779996, 5.639624, -0.856843, -12.131456, 6.054391, -0.758398, -12.131456, 6.054391, -0.641652, -11.849607, 5.639624, -0.856843, -12.131456, 5.639624, -0.711264, -12.482918, 6.054391, -0.641652, -12.413306, 4.206058, -0.711264, -12.482918, 5.639624, -0.711264, -12.482918, 5.639624, -0.856843, -12.131456, 5.639624, -0.359803, -12.628497, 6.054391, -0.359803, -12.530052, 6.054391, -0.641652, -12.413306, 4.206058, -0.359803, -12.628497, 5.639624, -0.359803, -12.628497, 5.639624, -0.711264, -12.482918, 5.639624, -0.008342, -12.482918, 6.054391, -0.077953, -12.413306, 6.054391, -0.359803, -12.530052, 4.206058, -0.008342, -12.482918, 5.639624, -0.008342, -12.482918, 5.639624, -0.359803, -12.628497, 4.206058, 0.137238, -12.131456, 5.639624, 0.137238, -12.131456, 5.639624, -0.008342, -12.482918, 5.639624, 0.137238, -12.131456, 6.054391, 0.038793, -12.131456, 6.054391, -0.077953, -12.413306, 8.912393, -0.026348, 6.303001, 8.912393, -0.171928, 5.951541, 7.478827, -0.171928, 5.95154, 8.912393, -0.026348, 6.303001, 9.32716, -0.124793, 6.303001, 9.32716, -0.241539, 6.021152, 7.478827, -0.171928, 5.95154, 8.912393, -0.171928, 5.951541, 8.912393, -0.523389, 5.805962, 8.912393, -0.171928, 5.951541, 9.32716, -0.241539, 6.021152, 9.32716, -0.523389, 5.904407, 8.912393, -0.523389, 5.805962, 8.912393, -0.87485, 5.951541, 7.478827, -0.87485, 5.95154, 8.912393, -0.523389, 5.805962, 9.32716, -0.523389, 5.904407, 9.32716, -0.805238, 6.021152, 7.478827, -0.87485, 5.95154, 8.912393, -0.87485, 5.951541, 8.912393, -1.020429, 6.303001, 9.32716, -0.805238, 6.021152, 9.32716, -0.921984, 6.303001, 8.912393, -1.020429, 6.303001, 8.912393, -1.020429, 6.303001, 9.32716, -0.921984, 6.303001, 9.32716, -0.805238, 6.584851, 8.912393, -1.020429, 6.303001, 8.912393, -0.87485, 6.654463, 7.478826, -0.87485, 6.654462, 9.32716, -0.805238, 6.584851, 9.32716, -0.523389, 6.701597, 8.912393, -0.523389, 6.800042, 8.912393, -0.87485, 6.654463, 8.912393, -0.523389, 6.800042, 7.478826, -0.523389, 6.800042, 9.32716, -0.523389, 6.701597, 9.32716, -0.241539, 6.584851, 8.912393, -0.171928, 6.654463, 7.478826, -0.523389, 6.800042, 8.912393, -0.523389, 6.800042, 8.912393, -0.171928, 6.654463, 7.478826, -0.171928, 6.654462, 8.912393, -0.171928, 6.654463, 8.912393, -0.026348, 6.303001, 9.32716, -0.241539, 6.584851, 9.32716, -0.124793, 6.303001, 8.912393, -0.026348, 6.303001, 7.478829, -0.026348, -6.302998, 7.478828, -0.171928, -5.951538, 8.912395, -0.171928, -5.951537, 8.912395, -0.026348, -6.302998, 8.912395, -0.171928, -5.951537, 9.327162, -0.241539, -6.021149, 7.478828, -0.523389, -5.805958, 8.912395, -0.523389, -5.805958, 8.912395, -0.171928, -5.951537, 8.912395, -0.171928, -5.951537, 8.912395, -0.523389, -5.805958, 9.327162, -0.523389, -5.904403, 7.478828, -0.523389, -5.805958, 7.478828, -0.87485, -5.951538, 8.912395, -0.87485, -5.951537, 8.912395, -0.523389, -5.805958, 8.912395, -0.87485, -5.951537, 9.327162, -0.805238, -6.021149, 7.478829, -1.020429, -6.302998, 8.912395, -1.020429, -6.302998, 8.912395, -0.87485, -5.951537, 8.912395, -1.020429, -6.302998, 9.327162, -0.921984, -6.302998, 9.327162, -0.805238, -6.021149, 8.912395, -1.020429, -6.302998, 8.912395, -0.87485, -6.654459, 9.327162, -0.805238, -6.584847, 7.478829, -1.020429, -6.302998, 7.478829, -0.87485, -6.654459, 8.912395, -0.87485, -6.654459, 8.912395, -0.523389, -6.800038, 9.327162, -0.523389, -6.701593, 9.327162, -0.805238, -6.584847, 7.478829, -0.523389, -6.800039, 8.912395, -0.523389, -6.800038, 8.912395, -0.87485, -6.654459, 8.912395, -0.171928, -6.654459, 9.327162, -0.241539, -6.584847, 9.327162, -0.523389, -6.701593, 7.478829, -0.171928, -6.654459, 8.912395, -0.171928, -6.654459, 8.912395, -0.523389, -6.800038, 7.478829, -0.026348, -6.302998, 8.912395, -0.026348, -6.302998, 8.912395, -0.171928, -6.654459, 8.912395, -0.026348, -6.302998, 9.327162, -0.124793, -6.302998, 9.327162, -0.241539, -6.584847, 2.820461, -1.315521, 12.118633, 2.860546, -1.286451, 12.118633, 2.860546, -1.261857, 12.326931, 2.820461, -1.227937, 12.49764, 2.860546, -1.215376, 12.453966, 2.860546, -1.134356, 12.488387, 2.860546, -1.134356, 11.748878, 2.860546, -1.215376, 11.783299, 2.820461, -1.227937, 11.739627, 2.860546, -1.261857, 11.910336, 2.860546, -1.286451, 12.118633, 2.820461, -1.315521, 12.118633, 2.820461, -1.288378, 12.354058, 2.860546, -1.261857, 12.326931, 2.860546, -1.215376, 12.453966, 2.860546, -1.134356, 12.488387, 2.860546, -1.009286, 12.4514, 2.820461, -1.009815, 12.494738, 2.820461, -1.009815, 11.742528, 2.860546, -1.009286, 11.785867, 2.860546, -1.134356, 11.748878, 2.860546, -1.215376, 11.783299, 2.860546, -1.261857, 11.910336, 2.820461, -1.288378, 11.883207, 1.848369, -1.302975, 12.335084, 1.848369, -1.320486, 12.118632, 2.400729, -1.358831, 12.118632, 1.848369, -1.141575, 12.562923, 1.848369, -1.234731, 12.521564, 2.400729, -1.254144, 12.555986, 2.400729, -1.254144, 11.681277, 1.848369, -1.234731, 11.715701, 1.848369, -1.141576, 11.67434, 2.400729, -1.358831, 12.118632, 1.848369, -1.320486, 12.118632, 1.848369, -1.302975, 11.902181, 1.848369, -1.234731, 12.521564, 1.848369, -1.302975, 12.335084, 2.400729, -1.327104, 12.390302, 2.400729, -0.993462, 12.552638, 1.848369, -1.003968, 12.518479, 1.848369, -1.141575, 12.562923, 1.848369, -1.141576, 11.67434, 1.848369, -1.003968, 11.718784, 2.400729, -0.993462, 11.684625, 2.400729, -1.327104, 11.846963, 1.848369, -1.302975, 11.902181, 1.848369, -1.234731, 11.715701, 1.374091, -1.166201, 12.430923, 1.374091, -1.21089, 12.118632, 1.848369, -1.302975, 12.335084, 1.374091, -1.021663, 12.434947, 1.374091, -1.166201, 12.430923, 1.848369, -1.141575, 12.562923, 1.848369, -1.141576, 11.67434, 1.374092, -1.166202, 11.80634, 1.374092, -1.021663, 11.802317, 1.848369, -1.302975, 11.902181, 1.374091, -1.21089, 12.118632, 1.374092, -1.166202, 11.80634, 2.820461, -1.227937, 11.739627, 2.820461, -1.288378, 11.883207, 2.400729, -1.327104, 11.846963, 2.400729, -0.993462, 11.684625, 2.820461, -1.009815, 11.742528, 2.820461, -1.137643, 11.700723, 2.820461, -1.137643, 12.536544, 2.820461, -1.009815, 12.494738, 2.400729, -0.993462, 12.552638, 2.400729, -1.327104, 12.390302, 2.820461, -1.288378, 12.354058, 2.820461, -1.227937, 12.49764, 2.820461, -1.288378, 11.883207, 2.820461, -1.315521, 12.118633, 2.400729, -1.358831, 12.118632, 2.820461, -1.137643, 11.700723, 2.820461, -1.227937, 11.739627, 2.400729, -1.254144, 11.681277, 2.400729, -1.254144, 12.555986, 2.820461, -1.227937, 12.49764, 2.820461, -1.137643, 12.536544, 2.400729, -1.358831, 12.118632, 2.820461, -1.315521, 12.118633, 2.820461, -1.288378, 12.354058, 2.860546, -1.009286, 11.785867, 2.831491, -1.009109, 11.823399, 2.831491, -1.129645, 11.790582, 2.860546, -1.261857, 11.910336, 2.860546, -1.215376, 11.783299, 2.831491, -1.197349, 11.821121, 2.860546, -1.286451, 12.118633, 2.831491, -1.255013, 12.118633, 2.831491, -1.233192, 12.303437, 2.860546, -1.261857, 12.326931, 2.831491, -1.233192, 12.303437, 2.831491, -1.197349, 12.416144, 2.860546, -1.215376, 11.783299, 2.860546, -1.134356, 11.748878, 2.831491, -1.129645, 11.790582, 2.860546, -1.286451, 12.118633, 2.860546, -1.261857, 11.910336, 2.831491, -1.233192, 11.933828, 2.860546, -1.215376, 12.453966, 2.831491, -1.197349, 12.416144, 2.831491, -1.129645, 12.446684, 2.860546, -1.009286, 12.4514, 2.860546, -1.134356, 12.488387, 2.831491, -1.129645, 12.446684, 2.831491, -1.129645, 11.790582, 2.831491, -1.009109, 11.823399, 2.831491, -1.009109, 12.413867, 2.831491, -1.197349, 11.821121, 2.831491, -1.129645, 11.790582, 2.831491, -1.129645, 12.446684, 2.831491, -1.233192, 11.933828, 2.831491, -1.197349, 11.821121, 2.831491, -1.197349, 12.416144, 1.374091, -1.166201, 12.430923, 1.374091, -1.021663, 12.434947, 1.374092, -1.021663, 11.802317, 2.820466, -1.315521, -12.118631, 2.820466, -1.288378, -12.354056, 2.860551, -1.261857, -12.326929, 2.820466, -1.227937, -12.497638, 2.820466, -1.137643, -12.536542, 2.860551, -1.134356, -12.488385, 2.820466, -1.227937, -11.739625, 2.860551, -1.215376, -11.783298, 2.860551, -1.134356, -11.748877, 2.820466, -1.315521, -12.118631, 2.860551, -1.286451, -12.118631, 2.860551, -1.261857, -11.910334, 2.820466, -1.288378, -12.354056, 2.820466, -1.227937, -12.497638, 2.860551, -1.215376, -12.453964, 2.820466, -1.009815, -12.494736, 2.860551, -1.009286, -12.451398, 2.860551, -1.134356, -12.488385, 2.820466, -1.009815, -11.742526, 2.820466, -1.137643, -11.700721, 2.860551, -1.134356, -11.748877, 2.820466, -1.288378, -11.883205, 2.860551, -1.261857, -11.910334, 2.860551, -1.215376, -11.783298, 2.400733, -1.358831, -12.118632, 1.848373, -1.320486, -12.118632, 1.848373, -1.302975, -12.335084, 2.400733, -1.254144, -12.555986, 1.848373, -1.234731, -12.521564, 1.848374, -1.141575, -12.562923, 2.400733, -1.254144, -11.681277, 2.400733, -1.154478, -11.636384, 1.848373, -1.141576, -11.67434, 2.400733, -1.358831, -12.118632, 2.400733, -1.327104, -11.846963, 1.848373, -1.302975, -11.902181, 2.400733, -1.327104, -12.390302, 1.848373, -1.302975, -12.335084, 1.848373, -1.234731, -12.521564, 2.400733, -0.993462, -12.552638, 2.400733, -1.154478, -12.60088, 1.848374, -1.141575, -12.562923, 2.400733, -0.993462, -11.684625, 1.848373, -1.003968, -11.718784, 1.848373, -1.141576, -11.67434, 2.400733, -1.327104, -11.846963, 2.400733, -1.254144, -11.681277, 1.848373, -1.234731, -11.715701, 1.848373, -1.302975, -12.335084, 1.374096, -1.21089, -12.118632, 1.374096, -1.166201, -12.430923, 1.848374, -1.141575, -12.562923, 1.374096, -1.166201, -12.430923, 1.374096, -1.021663, -12.434947, 1.848373, -1.141576, -11.67434, 1.848373, -1.003968, -11.718784, 1.374096, -1.021663, -11.802317, 1.848373, -1.302975, -11.902181, 1.848373, -1.234731, -11.715701, 1.374096, -1.166202, -11.80634, 2.400733, -1.327104, -11.846963, 2.820466, -1.288378, -11.883205, 2.820466, -1.227937, -11.739625, 2.400733, -0.993462, -11.684625, 2.400733, -1.154478, -11.636384, 2.820466, -1.137643, -11.700721, 2.400733, -0.993462, -12.552638, 2.820466, -1.009815, -12.494736, 2.820466, -1.137643, -12.536542, 2.400733, -1.327104, -12.390302, 2.400733, -1.254144, -12.555986, 2.820466, -1.227937, -12.497638, 2.400733, -1.358831, -12.118632, 2.820466, -1.315521, -12.118631, 2.820466, -1.288378, -11.883205, 2.400733, -1.254144, -11.681277, 2.820466, -1.227937, -11.739625, 2.820466, -1.137643, -11.700721, 2.400733, -1.254144, -12.555986, 2.400733, -1.154478, -12.60088, 2.820466, -1.137643, -12.536542, 2.400733, -1.358831, -12.118632, 2.400733, -1.327104, -12.390302, 2.820466, -1.288378, -12.354056, 2.831496, -1.129645, -11.79058, 2.831496, -1.009109, -11.823397, 2.860551, -1.009286, -11.785865, 2.860551, -1.261857, -11.910334, 2.831496, -1.233192, -11.933826, 2.831496, -1.197349, -11.821119, 2.831496, -1.233192, -12.303435, 2.831496, -1.255013, -12.118631, 2.860551, -1.286451, -12.118631, 2.831496, -1.197349, -12.416142, 2.831496, -1.233192, -12.303435, 2.860551, -1.261857, -12.326929, 2.860551, -1.215376, -11.783298, 2.831496, -1.197349, -11.821119, 2.831496, -1.129645, -11.79058, 2.860551, -1.286451, -12.118631, 2.831496, -1.255013, -12.118631, 2.831496, -1.233192, -11.933826, 2.831496, -1.129645, -12.446682, 2.831496, -1.197349, -12.416142, 2.860551, -1.215376, -12.453964, 2.860551, -1.009286, -12.451398, 2.831496, -1.009109, -12.413865, 2.831496, -1.129645, -12.446682, 2.831496, -1.009109, -12.413865, 2.831496, -1.009109, -11.823397, 2.831496, -1.129645, -11.79058, 2.831496, -1.129645, -12.446682, 2.831496, -1.129645, -11.79058, 2.831496, -1.197349, -11.821119, 2.831496, -1.197349, -12.416142, 2.831496, -1.197349, -11.821119, 2.831496, -1.233192, -11.933826, 1.374096, -1.166201, -12.430923, 1.374096, -1.166202, -11.80634, 1.374096, -1.021663, -11.802317, 6.098722, -1.466214, 6.297306, 6.138808, -1.437144, 6.297307, 6.138808, -1.41255, 6.505604, 6.098722, -1.378631, 6.676312, 6.138808, -1.366069, 6.632639, 6.138808, -1.28505, 6.66706, 6.138808, -1.28505, 5.927552, 6.138808, -1.366069, 5.961973, 6.098723, -1.378631, 5.9183, 6.138808, -1.41255, 6.089009, 6.138808, -1.437144, 6.297307, 6.098722, -1.466214, 6.297306, 6.098722, -1.439071, 6.532731, 6.138808, -1.41255, 6.505604, 6.138808, -1.366069, 6.632639, 6.138808, -1.28505, 6.66706, 6.138808, -1.159979, 6.630073, 6.098722, -1.160508, 6.67341, 6.098723, -1.160508, 5.921201, 6.138808, -1.159979, 5.96454, 6.138808, -1.28505, 5.927552, 6.138808, -1.366069, 5.961973, 6.138808, -1.41255, 6.089009, 6.098723, -1.439071, 6.06188, 5.12663, -1.453669, 6.513758, 5.12663, -1.47118, 6.297306, 5.67899, -1.509524, 6.297306, 5.12663, -1.292269, 6.741597, 5.12663, -1.385425, 6.700237, 5.67899, -1.404837, 6.73466, 5.67899, -1.404837, 5.859951, 5.126631, -1.385425, 5.894375, 5.126631, -1.292269, 5.853014, 5.67899, -1.509524, 6.297306, 5.12663, -1.47118, 6.297306, 5.126631, -1.453669, 6.080854, 5.12663, -1.385425, 6.700237, 5.12663, -1.453669, 6.513758, 5.67899, -1.477798, 6.568975, 5.67899, -1.144155, 6.731312, 5.12663, -1.154661, 6.697153, 5.12663, -1.292269, 6.741597, 5.126631, -1.292269, 5.853014, 5.126631, -1.154661, 5.897458, 5.67899, -1.144155, 5.863298, 5.67899, -1.477798, 6.025637, 5.126631, -1.453669, 6.080854, 5.126631, -1.385425, 5.894375, 4.652353, -1.316895, 6.609597, 4.652353, -1.361584, 6.297306, 5.12663, -1.453669, 6.513758, 4.652353, -1.172357, 6.613621, 4.652353, -1.316895, 6.609597, 5.12663, -1.292269, 6.741597, 5.126631, -1.292269, 5.853014, 4.652353, -1.316895, 5.985014, 4.652353, -1.172357, 5.98099, 5.126631, -1.453669, 6.080854, 4.652353, -1.361584, 6.297306, 4.652353, -1.316895, 5.985014, 6.098723, -1.378631, 5.9183, 6.098723, -1.439071, 6.06188, 5.67899, -1.477798, 6.025637, 5.67899, -1.144155, 5.863298, 6.098723, -1.160508, 5.921201, 6.098723, -1.288337, 5.879395, 6.098722, -1.288337, 6.715217, 6.098722, -1.160508, 6.67341, 5.67899, -1.144155, 6.731312, 5.67899, -1.477798, 6.568975, 6.098722, -1.439071, 6.532731, 6.098722, -1.378631, 6.676312, 6.098723, -1.439071, 6.06188, 6.098722, -1.466214, 6.297306, 5.67899, -1.509524, 6.297306, 6.098723, -1.288337, 5.879395, 6.098723, -1.378631, 5.9183, 5.67899, -1.404837, 5.859951, 5.67899, -1.404837, 6.73466, 6.098722, -1.378631, 6.676312, 6.098722, -1.288337, 6.715217, 5.67899, -1.509524, 6.297306, 6.098722, -1.466214, 6.297306, 6.098722, -1.439071, 6.532731, 6.138808, -1.159979, 5.96454, 6.109754, -1.159802, 6.002071, 6.109754, -1.280338, 5.969254, 6.138808, -1.41255, 6.089009, 6.138808, -1.366069, 5.961973, 6.109754, -1.348042, 5.999794, 6.138808, -1.437144, 6.297307, 6.109753, -1.405706, 6.297306, 6.109753, -1.383886, 6.48211, 6.138808, -1.41255, 6.505604, 6.109753, -1.383886, 6.48211, 6.109753, -1.348042, 6.594817, 6.138808, -1.366069, 5.961973, 6.138808, -1.28505, 5.927552, 6.109754, -1.280338, 5.969254, 6.138808, -1.437144, 6.297307, 6.138808, -1.41255, 6.089009, 6.109754, -1.383886, 6.112501, 6.138808, -1.366069, 6.632639, 6.109753, -1.348042, 6.594817, 6.109753, -1.280338, 6.625357, 6.138808, -1.159979, 6.630073, 6.138808, -1.28505, 6.66706, 6.109753, -1.280338, 6.625357, 6.109754, -1.280338, 5.969254, 6.109754, -1.159802, 6.002071, 6.109753, -1.159802, 6.59254, 6.109754, -1.348042, 5.999794, 6.109754, -1.280338, 5.969254, 6.109753, -1.280338, 6.625357, 6.109754, -1.383886, 6.112501, 6.109754, -1.348042, 5.999794, 6.109753, -1.348042, 6.594817, 4.652353, -1.316895, 6.609597, 4.652353, -1.172357, 6.613621, 4.652353, -1.172357, 5.98099, 6.098725, -1.466214, -6.297304, 6.098725, -1.439071, -6.532729, 6.138811, -1.41255, -6.505601, 6.098725, -1.378631, -6.676311, 6.098725, -1.288337, -6.715215, 6.138811, -1.28505, -6.667058, 6.098725, -1.378631, -5.918298, 6.13881, -1.366069, -5.96197, 6.13881, -1.28505, -5.927549, 6.098725, -1.466214, -6.297304, 6.138811, -1.437144, -6.297304, 6.13881, -1.41255, -6.089006, 6.098725, -1.439071, -6.532729, 6.098725, -1.378631, -6.676311, 6.138811, -1.366069, -6.632637, 6.098725, -1.160508, -6.673409, 6.138811, -1.159979, -6.63007, 6.138811, -1.28505, -6.667058, 6.098725, -1.160508, -5.921199, 6.098725, -1.288337, -5.879394, 6.13881, -1.28505, -5.927549, 6.098725, -1.439071, -6.061878, 6.13881, -1.41255, -6.089006, 6.13881, -1.366069, -5.96197, 5.678993, -1.509524, -6.297304, 5.126633, -1.47118, -6.297304, 5.126633, -1.453669, -6.513756, 5.678993, -1.404837, -6.734658, 5.126633, -1.385425, -6.700235, 5.126633, -1.292269, -6.741595, 5.678992, -1.404837, -5.859949, 5.678992, -1.305171, -5.815056, 5.126633, -1.292269, -5.853012, 5.678993, -1.509524, -6.297304, 5.678992, -1.477798, -6.025635, 5.126633, -1.453669, -6.080853, 5.678993, -1.477798, -6.568974, 5.126633, -1.453669, -6.513756, 5.126633, -1.385425, -6.700235, 5.678993, -1.144155, -6.73131, 5.678993, -1.305171, -6.779552, 5.126633, -1.292269, -6.741595, 5.678992, -1.144155, -5.863297, 5.126633, -1.154661, -5.897456, 5.126633, -1.292269, -5.853012, 5.678992, -1.477798, -6.025635, 5.678992, -1.404837, -5.859949, 5.126633, -1.385425, -5.894373, 5.126633, -1.453669, -6.513756, 4.652356, -1.361584, -6.297304, 4.652356, -1.316895, -6.609595, 5.126633, -1.292269, -6.741595, 4.652356, -1.316895, -6.609595, 4.652356, -1.172357, -6.613619, 5.126633, -1.292269, -5.853012, 5.126633, -1.154661, -5.897456, 4.652355, -1.172357, -5.980989, 5.126633, -1.453669, -6.080853, 5.126633, -1.385425, -5.894373, 4.652355, -1.316895, -5.985012, 5.678992, -1.477798, -6.025635, 6.098725, -1.439071, -6.061878, 6.098725, -1.378631, -5.918298, 5.678992, -1.144155, -5.863297, 5.678992, -1.305171, -5.815056, 6.098725, -1.288337, -5.879394, 5.678993, -1.144155, -6.73131, 6.098725, -1.160508, -6.673409, 6.098725, -1.288337, -6.715215, 5.678993, -1.477798, -6.568974, 5.678993, -1.404837, -6.734658, 6.098725, -1.378631, -6.676311, 5.678993, -1.509524, -6.297304, 6.098725, -1.466214, -6.297304, 6.098725, -1.439071, -6.061878, 5.678992, -1.404837, -5.859949, 6.098725, -1.378631, -5.918298, 6.098725, -1.288337, -5.879394, 5.678993, -1.404837, -6.734658, 5.678993, -1.305171, -6.779552, 6.098725, -1.288337, -6.715215, 5.678993, -1.509524, -6.297304, 5.678993, -1.477798, -6.568974, 6.098725, -1.439071, -6.532729, 6.109756, -1.280338, -5.969253, 6.109756, -1.159802, -6.002069, 6.13881, -1.159979, -5.964537, 6.13881, -1.41255, -6.089006, 6.109756, -1.383886, -6.112499, 6.109756, -1.348042, -5.999792, 6.109756, -1.383886, -6.482108, 6.109756, -1.405706, -6.297304, 6.138811, -1.437144, -6.297304, 6.109756, -1.348042, -6.594815, 6.109756, -1.383886, -6.482108, 6.138811, -1.41255, -6.505601, 6.13881, -1.366069, -5.96197, 6.109756, -1.348042, -5.999792, 6.109756, -1.280338, -5.969253, 6.138811, -1.437144, -6.297304, 6.109756, -1.405706, -6.297304, 6.109756, -1.383886, -6.112499, 6.109756, -1.280338, -6.625355, 6.109756, -1.348042, -6.594815, 6.138811, -1.366069, -6.632637, 6.138811, -1.159979, -6.63007, 6.109756, -1.159802, -6.592538, 6.109756, -1.280338, -6.625355, 6.109756, -1.159802, -6.592538, 6.109756, -1.159802, -6.002069, 6.109756, -1.280338, -5.969253, 6.109756, -1.280338, -6.625355, 6.109756, -1.280338, -5.969253, 6.109756, -1.348042, -5.999792, 6.109756, -1.348042, -6.594815, 6.109756, -1.348042, -5.999792, 6.109756, -1.383886, -6.112499, 4.652356, -1.316895, -6.609595, 4.652355, -1.316895, -5.985012, 4.652355, -1.172357, -5.980989, 17.391449, -0.576348, 0.803017, 17.380814, -0.308159, 0.548304, 16.182926, -0.281176, 1.005536, 17.369858, -0.975261, 0.695056, 16.183006, -1.120891, 1.080459, 16.182903, -1.288804, 0.735329, 17.95586, -0.73295, 0.374465, 17.924572, -0.524761, 0.364316, 17.391449, -0.576348, 0.803017, 17.031357, -1.186964, 3e-06, 17.283955, -1.084477, 0.441357, 16.182903, -1.288804, 0.735329, 16.183006, -1.120891, 1.080459, 17.369858, -0.975261, 0.695056, 17.397213, -0.801844, 0.827832, 17.362404, -1.091034, 3e-06, 17.613194, -0.994689, 0.234708, 17.283955, -1.084477, 0.441357, 17.844173, -0.877411, 0.331339, 17.95586, -0.73295, 0.374465, 17.397213, -0.801844, 0.827832, 17.924572, -0.524761, 0.364316, 17.691666, -0.303914, 0.303578, 17.380814, -0.308159, 0.548304, 17.613194, -0.994689, 0.234708, 17.844173, -0.877411, 0.331339, 17.369858, -0.975261, 0.695056, 17.924572, -0.524761, 0.364316, 18.115459, -0.490681, 4e-06, 17.827, -0.304541, 3e-06, 17.844173, -0.877411, 0.331339, 17.613194, -0.994689, 0.234708, 17.803867, -0.939416, 3e-06, 17.924572, -0.524761, 0.364316, 17.95586, -0.73295, 0.374465, 18.129333, -0.695045, 4e-06, 17.95586, -0.73295, 0.374465, 17.844173, -0.877411, 0.331339, 18.020542, -0.808321, 4e-06, 15.126997, -0.882437, 1.1742, 15.126899, -1.146853, 0.982322, 16.183006, -1.120891, 1.080459, 15.20544, -1.292184, 0.464459, 15.320344, -1.374343, 3e-06, 16.182713, -1.340616, 3e-06, 17.397213, -0.801844, 0.827832, 17.391449, -0.576348, 0.803017, 16.183041, -0.594254, 1.182708, 15.126899, -1.146853, 0.982322, 15.20544, -1.292184, 0.464459, 16.182903, -1.288804, 0.735329, 15.356038, -0.302295, 1.158816, 15.199031, -0.63017, 1.203944, 16.183041, -0.594254, 1.182708, 15.199031, -0.63017, 1.203944, 15.126997, -0.882437, 1.1742, 16.183052, -0.887428, 1.219893, 15.126997, -0.882437, 1.1742, 15.199031, -0.63017, 1.203944, 14.452024, -0.535245, 1.18431, 14.424541, -1.187864, 0.669863, 15.126899, -1.146853, 0.982322, 15.126997, -0.882437, 1.1742, 15.20544, -1.292184, 0.464459, 15.126899, -1.146853, 0.982322, 14.424541, -1.187864, 0.669863, 16.182926, -0.281176, -1.00553, 17.380814, -0.308159, -0.548298, 17.391449, -0.576348, -0.803011, 16.182903, -1.288804, -0.735323, 16.183006, -1.120891, -1.080453, 17.369858, -0.975261, -0.695049, 17.391449, -0.576348, -0.803011, 17.924572, -0.524761, -0.364309, 17.95586, -0.73295, -0.374458, 16.182903, -1.288804, -0.735323, 17.283955, -1.084477, -0.44135, 17.031357, -1.186964, 3e-06, 16.183006, -1.120891, -1.080453, 16.183052, -0.887428, -1.219887, 17.397213, -0.801844, -0.827825, 17.283955, -1.084477, -0.44135, 17.613194, -0.994689, -0.234701, 17.362404, -1.091034, 3e-06, 17.844173, -0.877411, -0.331332, 17.369858, -0.975261, -0.695049, 17.397213, -0.801844, -0.827825, 17.380814, -0.308159, -0.548298, 17.691666, -0.303914, -0.303571, 17.924572, -0.524761, -0.364309, 17.369858, -0.975261, -0.695049, 17.844173, -0.877411, -0.331332, 17.613194, -0.994689, -0.234701, 17.827, -0.304541, 3e-06, 18.115459, -0.490681, 4e-06, 17.924572, -0.524761, -0.364309, 17.844173, -0.877411, -0.331332, 18.020542, -0.808321, 4e-06, 17.803867, -0.939416, 3e-06, 17.924572, -0.524761, -0.364309, 18.115459, -0.490681, 4e-06, 18.129333, -0.695045, 4e-06, 17.95586, -0.73295, -0.374458, 18.129333, -0.695045, 4e-06, 18.020542, -0.808321, 4e-06, 15.126997, -0.882437, -1.174194, 16.183052, -0.887428, -1.219887, 16.183006, -1.120891, -1.080453, 15.20544, -1.292184, -0.464453, 16.182903, -1.288804, -0.735323, 16.182713, -1.340616, 3e-06, 17.397213, -0.801844, -0.827825, 16.183052, -0.887428, -1.219887, 16.183041, -0.594254, -1.182701, 16.182903, -1.288804, -0.735323, 15.20544, -1.292184, -0.464453, 15.126899, -1.146853, -0.982316, 16.183041, -0.594254, -1.182701, 15.199031, -0.63017, -1.203938, 15.356038, -0.302295, -1.15881, 15.199031, -0.63017, -1.203938, 16.183041, -0.594254, -1.182701, 16.183052, -0.887428, -1.219887, 14.452024, -0.535245, -1.184305, 15.199031, -0.63017, -1.203938, 15.126997, -0.882437, -1.174194, 15.126997, -0.882437, -1.174194, 15.126899, -1.146853, -0.982316, 14.424541, -1.187864, -0.669858, 14.424541, -1.187864, -0.669858, 15.126899, -1.146853, -0.982316, 15.20544, -1.292184, -0.464453, 13.072194, 0.685815, 1.187867, -13.695412, 0.685813, 1.187862, -12.917107, -1e-06, 1.371626, 13.07222, 1e-06, 1.371631, -12.917107, -1e-06, 1.371626, -12.1388, -0.685815, 1.187862, 13.072012, 1.371629, 3e-06, -14.473724, 1.371627, -3e-06, -14.265179, 1.187864, 0.685811, 13.072247, -0.685813, 1.187867, -12.1388, -0.685815, 1.187862, -11.569036, -1.187865, 0.685812, 13.072116, 1.187865, 0.685817, -14.265179, 1.187864, 0.685811, -13.695412, 0.685813, 1.187862, 13.072266, -1.187864, 0.685817, -11.569036, -1.187865, 0.685812, -11.360485, -1.371629, -2e-06, -12.1388, -0.685815, 1.187862, -23.601831, -0.010705, 0.592346, -23.601831, -0.280701, 0.341989, -14.265179, 1.187864, 0.685811, -23.601831, 1.032917, 0.341989, -23.601831, 0.72694, 0.592346, -11.569036, -1.187865, 0.685812, -23.601831, -0.280701, 0.341989, -23.601831, -0.379527, -5e-06, -13.695412, 0.685813, 1.187862, -23.601831, 0.72694, 0.592346, -23.601831, 0.358118, 0.683983, -12.917107, -1e-06, 1.371626, -23.601831, 0.358118, 0.683983, -23.601831, -0.010705, 0.592346, -14.473724, 1.371627, -3e-06, -23.601831, 1.095762, -5e-06, -23.601831, 1.032917, 0.341989, 14.013685, -1.371627, 3e-06, 14.862866, -1.371627, 3e-06, 14.424541, -1.187864, 0.669863, 14.013685, 0.685815, 1.053593, 14.013685, 1e-06, 1.371631, 14.539859, 1e-06, 1.344209, 14.013685, 1e-06, 1.371631, 14.013685, -0.685813, 1.187867, 14.452023, -0.535245, 1.18431, 14.013685, -1.187864, 0.685817, 13.072266, -1.187864, 0.685817, 13.072272, -1.371627, 3e-06, 14.013685, 0.685815, 1.053593, 13.944604, 1.187865, 0.608293, 13.072116, 1.187865, 0.685817, 14.013685, -0.685813, 1.187867, 13.072247, -0.685813, 1.187867, 13.072266, -1.187864, 0.685817, 13.832346, 1.371629, 3e-06, 13.072012, 1.371629, 3e-06, 13.072116, 1.187865, 0.685817, 14.013685, 1e-06, 1.371631, 13.07222, 1e-06, 1.371631, 13.072247, -0.685813, 1.187867, 14.013685, 1e-06, 1.371631, 14.013685, 0.685815, 1.053593, 13.072194, 0.685815, 1.187867, 13.944604, 1.187865, 0.608293, 14.013685, 0.685815, 1.053593, 14.539479, 0.878098, 0.335402, 15.356037, 0.627265, 0.857261, 15.356037, -0.001365, 1.234585, 16.182926, -0.002102, 0.982088, 15.356037, -0.302295, 1.158816, 16.182926, -0.281176, 1.005536, 16.182926, -0.002102, 0.982088, 15.35567, 0.840928, 0.308069, 15.356037, 0.627265, 0.857261, 16.182926, 0.545771, 0.718109, 16.182924, 0.731986, 0.258123, 16.182926, 0.545771, 0.718109, 17.380814, 0.346717, 0.402926, 16.182926, 0.545771, 0.718109, 16.182926, -0.002102, 0.982088, 17.380814, 0.001158, 0.580166, 16.182926, -0.281176, 1.005536, 17.380814, -0.308159, 0.548304, 17.380814, 0.001158, 0.580166, 17.380814, 0.346717, 0.402926, 17.380814, 0.001158, 0.580166, 17.691668, 0.000317, 0.347482, 17.380814, -0.308159, 0.548304, 17.691668, -0.303914, 0.303578, 17.691668, 0.000317, 0.347482, 17.380575, 0.464168, 0.144952, 17.380814, 0.346717, 0.402926, 17.691668, 0.209304, 0.241361, 14.539479, 0.878098, 0.335402, 14.539859, 0.655352, 0.933372, 15.356037, 0.627265, 0.857261, 14.539859, 1e-06, 1.344209, 14.452023, -0.535245, 1.18431, 15.356037, -0.302295, 1.158816, 14.539859, 0.655352, 0.933372, 14.539859, 1e-06, 1.344209, 15.356037, -0.001365, 1.234585, -12.917107, -1e-06, -1.371631, -13.695412, 0.685813, -1.187867, 13.072194, 0.685815, -1.187862, -12.1388, -0.685815, -1.187867, -12.917107, -1e-06, -1.371631, 13.07222, 1e-06, -1.371626, -14.265179, 1.187864, -0.685817, -14.473724, 1.371627, -3e-06, 13.072012, 1.371629, 3e-06, -11.569036, -1.187865, -0.685816, -12.1388, -0.685815, -1.187867, 13.072247, -0.685813, -1.187862, -13.695412, 0.685813, -1.187867, -14.265179, 1.187864, -0.685817, 13.072116, 1.187865, -0.685811, -11.360485, -1.371629, -2e-06, -11.569036, -1.187865, -0.685816, 13.072266, -1.187864, -0.685812, -23.601831, -0.280701, -0.341999, -23.601831, -0.010705, -0.592356, -12.1388, -0.685815, -1.187867, -23.601831, 0.72694, -0.592356, -23.601831, 1.032917, -0.341999, -14.265179, 1.187864, -0.685817, -23.601831, -0.379527, -5e-06, -23.601831, -0.280701, -0.341999, -11.569036, -1.187865, -0.685816, -23.601831, 0.358118, -0.683993, -23.601831, 0.72694, -0.592356, -13.695412, 0.685813, -1.187867, -23.601831, -0.010705, -0.592356, -23.601831, 0.358118, -0.683993, -12.917107, -1e-06, -1.371631, -23.601831, 1.032917, -0.341999, -23.601831, 1.095762, -5e-06, -14.473724, 1.371627, -3e-06, 14.424541, -1.187864, -0.669858, 14.862866, -1.371627, 3e-06, 14.013685, -1.371627, 3e-06, 14.013685, 0.685815, -1.053587, 14.539859, 0.655352, -0.933366, 14.539859, 1e-06, -1.344203, 14.013685, 1e-06, -1.371625, 14.539859, 1e-06, -1.344203, 14.452023, -0.535245, -1.184305, 13.072272, -1.371627, 3e-06, 13.072266, -1.187864, -0.685812, 14.013685, -1.187864, -0.685811, 14.013685, 0.685815, -1.053587, 13.072194, 0.685815, -1.187862, 13.072116, 1.187865, -0.685811, 13.072266, -1.187864, -0.685812, 13.072247, -0.685813, -1.187862, 14.013685, -0.685813, -1.187862, 13.072116, 1.187865, -0.685811, 13.072012, 1.371629, 3e-06, 13.832346, 1.371629, 3e-06, 13.072247, -0.685813, -1.187862, 13.07222, 1e-06, -1.371626, 14.013685, 1e-06, -1.371625, 14.013685, 1e-06, -1.371625, 13.07222, 1e-06, -1.371626, 13.072194, 0.685815, -1.187862, 13.944604, 1.187865, -0.608288, 14.259429, 1.187865, -0.368186, 14.539479, 0.878098, -0.335396, 15.356037, 0.627265, -0.857255, 16.182926, 0.545771, -0.718103, 16.182926, -0.002102, -0.982082, 16.182926, -0.002102, -0.982082, 16.182926, -0.281176, -1.00553, 15.356037, -0.302295, -1.15881, 15.35567, 0.840928, -0.308063, 16.182924, 0.731986, -0.258117, 16.182926, 0.545771, -0.718103, 16.182924, 0.731986, -0.258117, 17.380575, 0.464168, -0.144946, 17.380814, 0.346717, -0.402919, 16.182926, 0.545771, -0.718103, 17.380814, 0.346717, -0.402919, 17.380814, 0.001158, -0.58016, 17.380814, 0.001158, -0.58016, 17.380814, -0.308159, -0.548298, 16.182926, -0.281176, -1.00553, 17.380814, 0.346717, -0.402919, 17.691668, 0.209304, -0.241354, 17.691668, 0.000317, -0.347475, 17.691668, 0.000317, -0.347475, 17.691668, -0.303914, -0.303571, 17.380814, -0.308159, -0.548298, 17.380575, 0.464168, -0.144946, 17.691504, 0.280336, -0.086896, 17.691668, 0.209304, -0.241354, 14.539479, 0.878098, -0.335396, 15.35567, 0.840928, -0.308063, 15.356037, 0.627265, -0.857255, 14.539859, 1e-06, -1.344203, 15.356037, -0.001365, -1.234579, 15.356037, -0.302295, -1.15881, 14.539859, 0.655352, -0.933366, 15.356037, 0.627265, -0.857255, 15.356037, -0.001365, -1.234579, 17.691504, 0.280336, -0.086896, 17.380575, 0.464168, -0.144946, 17.380575, 0.464168, 0.144952, 16.182924, 0.731986, 0.258123, 17.380575, 0.464168, 0.144952, 17.380575, 0.464168, -0.144946, 16.182924, 0.731986, -0.258117, 15.35567, 0.840928, -0.308063, 15.35567, 0.840928, 0.308069, 15.35567, 0.840928, -0.308063, 14.539479, 0.878098, -0.335396, 14.539479, 0.878098, 0.335402, 14.259429, 1.187865, 0.368192, 14.539479, 0.878098, 0.335402, 14.539479, 0.878098, -0.335396, -23.601831, -0.010705, 0.592346, -26.711912, 0.107838, 0.410888, -26.711912, -0.016103, 0.255791, -23.601831, 1.095762, -5e-06, -23.601831, 1.032917, -0.341999, -26.711912, 1.030598, -0.237235, -23.601831, 1.032917, 0.341989, -26.711912, 1.030598, 0.237224, -26.711912, 0.859109, 0.410888, -23.601831, -0.010705, -0.592356, -23.601831, -0.280701, -0.341999, -26.711912, -0.016103, -0.255801, -23.601831, -0.280701, 0.341989, -26.711912, -0.016103, 0.255791, -26.711912, -0.079823, -5e-06, -23.601831, 1.032917, -0.341999, -23.601831, 0.72694, -0.592356, -26.711912, 0.859109, -0.410898, -23.601831, 0.72694, 0.592346, -26.711912, 0.859109, 0.410888, -26.711912, 0.503717, 0.474453, -23.601831, -0.280701, -0.341999, -23.601831, -0.379527, -5e-06, -26.711912, -0.079823, -5e-06, -23.601831, 0.72694, -0.592356, -23.601831, 0.358118, -0.683993, -26.711912, 0.503717, -0.474464, -23.601831, 0.358118, 0.683983, -26.711912, 0.503717, 0.474453, -26.711912, 0.107838, 0.410888, -23.601831, 1.095762, -5e-06, -26.711912, 1.087257, -5e-06, -26.711912, 1.030598, 0.237224, -23.601831, 0.358118, -0.683993, -23.601831, -0.010705, -0.592356, -26.711912, 0.107838, -0.410898, -26.711912, -0.079823, -5e-06, -26.711912, -0.016103, 0.255791, -26.978872, 0.001249, 0.120363, -26.711912, 1.030598, -0.237235, -26.978872, 0.933309, -0.113708, -26.876501, 1.031732, -5e-06, -26.711912, -0.016103, -0.255801, -26.978872, 0.001249, -0.120374, -26.984659, 0.107838, -0.16325, -26.711912, 1.030598, 0.237224, -26.711912, 1.087257, -5e-06, -26.876501, 1.031732, -5e-06, -26.711912, 1.030598, -0.237235, -26.711912, 0.859109, -0.410898, -26.984659, 0.859109, -0.16325, -26.711912, -0.016103, 0.255791, -26.711912, 0.107838, 0.410888, -26.984659, 0.107838, 0.16324, -26.711912, -0.079823, -5e-06, -26.952845, -0.056688, -5e-06, -26.978872, 0.001249, -0.120374, -26.711912, 1.030598, 0.237224, -26.978872, 0.933309, 0.113697, -26.984659, 0.859109, 0.16324, -26.978872, 0.933309, -0.113708, -26.984659, 0.859109, -0.16325, -26.984659, 0.859109, 0.16324, -26.984659, 0.107838, -0.16325, -26.978872, 0.001249, -0.120374, -26.978872, 0.001249, 0.120363, -26.711912, 0.859109, -0.410898, -26.711912, 0.503717, -0.474464, -26.711912, 0.503717, 0.474453, -26.711912, 0.503717, -0.474464, -26.711912, 0.107838, -0.410898, -26.711912, 0.107838, 0.410888, -26.711912, 0.107838, -0.410898, -26.984659, 0.107838, -0.16325, -26.984659, 0.107838, 0.16324, -26.711912, 0.859109, -0.410898, -26.711912, 0.859109, 0.410888, -26.984659, 0.859109, 0.16324, 17.634117, 0.792729, 3e-06, 17.632959, 0.733317, -0.10292, 14.391526, 0.796557, -0.102921, 17.632959, 0.733317, -0.10292, 17.63064, 0.614494, -0.10292, 17.1696, 0.623489, -0.10292, 17.63064, 0.614494, -0.10292, 17.629482, 0.555082, 3e-06, 17.249464, 0.562496, 3e-06, 17.249464, 0.562496, 3e-06, 17.629482, 0.555082, 3e-06, 17.63064, 0.614494, 0.102927, 17.632959, 0.733317, 0.102927, 17.746489, 0.711296, 0.068628, 17.747261, 0.750909, 3e-06, 17.1696, 0.623489, 0.102927, 17.63064, 0.614494, 0.102927, 17.632959, 0.733317, 0.102927, 14.391526, 0.796557, 0.102927, 17.632959, 0.733317, 0.102927, 17.634117, 0.792729, 3e-06, 17.746489, 0.711296, 0.068628, 17.744942, 0.63207, 0.068628, 19.753462, 0.592885, 0.068629, 17.629482, 0.555082, 3e-06, 17.744169, 0.592458, 3e-06, 17.744942, 0.63207, 0.068628, 17.632959, 0.733317, -0.10292, 17.746489, 0.711296, -0.068621, 17.744942, 0.63207, -0.068621, 17.632959, 0.733317, 0.102927, 17.63064, 0.614494, 0.102927, 17.744942, 0.63207, 0.068628, 17.632959, 0.733317, -0.10292, 17.634117, 0.792729, 3e-06, 17.747261, 0.750909, 3e-06, 17.629482, 0.555082, 3e-06, 17.63064, 0.614494, -0.10292, 17.744942, 0.63207, -0.068621, 19.755007, 0.672111, 0.068629, 19.814573, 0.650986, 0.03406, 19.814957, 0.670645, 4e-06, 17.744169, 0.592458, 3e-06, 17.744942, 0.63207, -0.068621, 19.753462, 0.592885, -0.06862, 17.746489, 0.711296, -0.068621, 17.747261, 0.750909, 3e-06, 19.755779, 0.711724, 4e-06, 17.746489, 0.711296, 0.068628, 19.755007, 0.672111, 0.068629, 19.755779, 0.711724, 4e-06, 17.744169, 0.592458, 3e-06, 19.752689, 0.553272, 4e-06, 19.753462, 0.592885, 0.068629, 17.746489, 0.711296, -0.068621, 19.755007, 0.672111, -0.06862, 19.753462, 0.592885, -0.06862, 19.813807, 0.61167, 0.03406, 20.155556, 0.605002, 0.03406, 20.156322, 0.644319, 0.03406, 19.752689, 0.553272, 4e-06, 19.813423, 0.592011, 4e-06, 19.813807, 0.61167, 0.03406, 19.753462, 0.592885, -0.06862, 19.755007, 0.672111, -0.06862, 19.814573, 0.650986, -0.034051, 19.753462, 0.592885, 0.068629, 19.813807, 0.61167, 0.03406, 19.814573, 0.650986, 0.03406, 19.752689, 0.553272, 4e-06, 19.753462, 0.592885, -0.06862, 19.813807, 0.61167, -0.034051, 19.755007, 0.672111, -0.06862, 19.755779, 0.711724, 4e-06, 19.814957, 0.670645, 4e-06, 20.155556, 0.605002, -0.034051, 20.156322, 0.644319, -0.034051, 20.156706, 0.663977, 4e-06, 20.156706, 0.663977, 4e-06, 20.156322, 0.644319, 0.03406, 20.155556, 0.605002, 0.03406, 20.155556, 0.605002, 0.03406, 20.155172, 0.585344, 4e-06, 20.155556, 0.605002, -0.034051, 19.813423, 0.592011, 4e-06, 19.813807, 0.61167, -0.034051, 20.155556, 0.605002, -0.034051, 19.814573, 0.650986, -0.034051, 19.814957, 0.670645, 4e-06, 20.156706, 0.663977, 4e-06, 19.814573, 0.650986, 0.03406, 20.156322, 0.644319, 0.03406, 20.156706, 0.663977, 4e-06, 19.813423, 0.592011, 4e-06, 20.155172, 0.585344, 4e-06, 20.155556, 0.605002, 0.03406, 19.813807, 0.61167, -0.034051, 19.814573, 0.650986, -0.034051, 20.156322, 0.644319, -0.034051, 17.249464, 0.562496, 3e-06, 17.1696, 0.623489, 0.102927, 17.1696, 0.442743, 0.102927, 17.249464, 0.562496, 3e-06, 17.249464, 0.427539, 3e-06, 17.1696, 0.442743, -0.10292, -26.901327, 0.063533, -6e-06, -27.061741, 0.191458, -6e-06, -26.956169, 0.191458, -0.254879, -27.150764, 0.581492, -6e-06, -27.019117, 0.581492, -0.317827, -27.019117, 0.376315, -0.317827, -26.901327, 0.894275, -6e-06, -26.842739, 0.894275, -0.14145, -26.956169, 0.766349, -0.254879, -27.061741, 0.191458, -6e-06, -27.150764, 0.376315, -6e-06, -27.019117, 0.376315, -0.317827, -27.061741, 0.766349, -6e-06, -26.956169, 0.766349, -0.254879, -27.019117, 0.581492, -0.317827, -26.842739, 0.063533, -0.14145, -26.956169, 0.191458, -0.254879, -26.701296, 0.191458, -0.360451, -27.019117, 0.581492, -0.317827, -26.701296, 0.581492, -0.449474, -26.701296, 0.376316, -0.449474, -26.842739, 0.894275, -0.14145, -26.701296, 0.894275, -0.200038, -26.701296, 0.766349, -0.360451, -27.019117, 0.376315, -0.317827, -26.701296, 0.376316, -0.449474, -26.701296, 0.191458, -0.360451, -27.019117, 0.581492, -0.317827, -26.956169, 0.766349, -0.254879, -26.701296, 0.766349, -0.360451, -26.701296, 0.766349, 0.360439, -26.956169, 0.766349, 0.254868, -27.019117, 0.581492, 0.317816, -26.701296, 0.191458, 0.360439, -26.956169, 0.191458, 0.254868, -26.842739, 0.063533, 0.141438, -26.701296, 0.376316, 0.449462, -26.701296, 0.581492, 0.449462, -27.019117, 0.581492, 0.317816, -26.701296, 0.766349, 0.360439, -26.701296, 0.894275, 0.200027, -26.842739, 0.894275, 0.141438, -26.701296, 0.191458, 0.360439, -26.701296, 0.376316, 0.449462, -27.019117, 0.376315, 0.317816, -26.956169, 0.191458, 0.254868, -27.061741, 0.191458, -6e-06, -26.901327, 0.063533, -6e-06, -27.019117, 0.581492, 0.317816, -27.150764, 0.581492, -6e-06, -27.150764, 0.376315, -6e-06, -26.956169, 0.766349, 0.254868, -26.842739, 0.894275, 0.141438, -26.901327, 0.894275, -6e-06, -27.019117, 0.376315, 0.317816, -27.150764, 0.376315, -6e-06, -27.061741, 0.191458, -6e-06, -27.019117, 0.581492, 0.317816, -26.956169, 0.766349, 0.254868, -27.061741, 0.766349, -6e-06, -26.854437, 0.520209, -0.121756, -27.84234, 0.520209, -0.121756, -27.84234, 0.468493, -0.070039, -27.84234, 0.468493, -0.173472, -26.854437, 0.468493, -0.173472, -26.854437, 0.416776, -0.121756, -27.84234, 0.416776, -0.121756, -26.854437, 0.416776, -0.121756, -26.854437, 0.468493, -0.070039, -27.84234, 0.520209, -0.121756, -26.854437, 0.520209, -0.121756, -26.854437, 0.468493, -0.173472, -27.84234, 0.468493, -0.070039, -27.84234, 0.520209, -0.121756, -27.84234, 0.468493, -0.173472, -26.854437, 0.468493, 0.070029, -27.84234, 0.468493, 0.070029, -27.84234, 0.520209, 0.121745, -26.854437, 0.416776, 0.121745, -26.854437, 0.468493, 0.173462, -27.84234, 0.468493, 0.173462, -26.854437, 0.468493, 0.070029, -26.854437, 0.416776, 0.121745, -27.84234, 0.416776, 0.121745, -27.84234, 0.468493, 0.173462, -26.854437, 0.468493, 0.173462, -26.854437, 0.520209, 0.121745, -27.84234, 0.468493, 0.070029, -27.84234, 0.416776, 0.121745, -27.84234, 0.468493, 0.173462};
+
+       // set normals for TU-95 fusulage
+       static GLfloat tu_95_fusulage_normals[] = {0.996429, 0.0, 0.084201, 0.394604, 0.455275, 0.79809, 0.390301, 0.002014, 0.920682, 0.996429, 0.0, 0.084201, 0.39494, -0.458541, 0.796045, 0.996429, -0.042085, 0.072909, 0.996429, 0.072909, 0.042085, 0.401044, 0.916044, 0.0, 0.400586, 0.793329, 0.458388, 0.996429, -0.072909, 0.042085, 0.39494, -0.458541, 0.796045, 0.394238, -0.797266, 0.457045, 0.996429, 0.072909, 0.042085, 0.394604, 0.455275, 0.79809, 0.996429, 0.042085, 0.072909, 0.996429, -0.084201, 0.0, 0.394238, -0.797266, 0.457045, 0.388958, -0.921232, 0.0, 0.400586, 0.793329, 0.458388, 0.071505, 0.494369, 0.866298, 0.394604, 0.455275, 0.79809, 0.394238, -0.797266, 0.457045, 0.09534, -0.995422, 0.0, 0.388958, -0.921232, 0.0, 0.394604, 0.455275, 0.79809, 0.061678, -0.002441, 0.998077, 0.390301, 0.002014, 0.920682, 0.0936, 0.865444, -0.492141, 0.401044, 0.916044, 0.0, 0.400586, 0.793329, -0.458388, 0.390301, 0.002014, 0.920682, 0.072817, -0.49208, 0.867489, 0.39494, -0.458541, 0.796045, 0.39494, -0.458541, 0.796045, 0.088931, -0.865108, 0.493576, 0.394238, -0.797266, 0.457045, -0.057344, 0.815668, 0.57564, -0.1236, 0.992309, 0.0, -0.104465, 0.822016, 0.559771, -0.092868, -0.00586, 0.995636, -0.192785, 0.742302, 0.641682, -0.078707, 0.838374, 0.539354, 0.017579, 0.269906, -0.962706, -0.104465, 0.822016, -0.559771, -0.057344, 0.815668, -0.57564, -0.159215, 0.987213, 0.0, -0.078707, 0.838374, 0.539354, -0.192785, 0.742302, 0.641682, -0.057344, 0.815668, -0.57564, -0.1236, 0.992309, 0.0, -0.0918, 0.995758, 0.0, 0.071169, 0.828242, 0.555803, -0.032716, 0.283059, 0.958525, 0.017975, 0.390362, 0.920469, 0.001648, -0.90286, 0.429853, -0.017518, -0.618183, 0.785821, -0.09415, -0.855007, 0.509964, 0.099124, 0.995056, 0.0, 0.027863, 0.799707, 0.599719, 0.071169, 0.828242, 0.555803, -0.002441, -0.559435, 0.828852, -0.088107, -0.282388, 0.955229, -0.017518, -0.618183, 0.785821, 0.017975, 0.390362, 0.920469, -0.088107, -0.282388, 0.955229, -0.006989, -0.10419, 0.994507, 0.002655, -0.999969, 0.0, -0.09415, -0.855007, 0.509964, -0.10242, -0.99472, 0.0, -0.032716, 0.283059, 0.958525, -0.192785, 0.742302, 0.641682, -0.092868, -0.00586, 0.995636, 0.027863, 0.799707, 0.599719, -0.159215, 0.987213, 0.0, -0.192785, 0.742302, 0.641682, -0.032716, 0.283059, 0.958525, -0.224433, -0.48085, 0.84756, -0.088107, -0.282388, 0.955229, -0.10242, -0.99472, 0.0, -0.058687, -0.530137, 0.845851, 0.029939, -0.999542, 0.0, -0.134831, -0.586261, 0.798791, -0.008545, -0.3708, 0.928648, -0.09415, -0.855007, 0.509964, -0.088107, -0.282388, 0.955229, -0.008545, -0.3708, 0.928648, -0.134831, -0.586261, 0.798791, -0.09415, -0.855007, 0.509964, -0.008545, -0.3708, 0.928648, -0.058687, -0.530137, 0.845851, -0.088107, -0.282388, 0.955229, -0.224433, -0.48085, 0.84756, -0.008545, -0.3708, 0.928648, 0.996429, 0.0, -0.084201, 0.394604, 0.455275, -0.79809, 0.996429, 0.042085, -0.072909, 0.39494, -0.458541, -0.796045, 0.996429, 0.0, -0.084201, 0.996429, -0.042085, -0.072909, 0.400586, 0.793329, -0.458388, 0.996429, 0.084201, 0.0, 0.996429, 0.072909, -0.042085, 0.996429, -0.072909, -0.042085, 0.39494, -0.458541, -0.796045, 0.996429, -0.042085, -0.072909, 0.394604, 0.455275, -0.79809, 0.996429, 0.072909, -0.042085, 0.996429, 0.042085, -0.072909, 0.996429, -0.084201, 0.0, 0.394238, -0.797266, -0.457045, 0.996429, -0.072909, -0.042085, 0.071505, 0.494369, -0.866298, 0.400586, 0.793329, -0.458388, 0.394604, 0.455275, -0.79809, 0.09534, -0.995422, 0.0, 0.394238, -0.797266, -0.457045, 0.388958, -0.921232, 0.0, 0.061678, -0.002441, -0.998077, 0.394604, 0.455275, -0.79809, 0.390301, 0.002014, -0.920682, 0.072817, -0.49208, -0.867489, 0.390301, 0.002014, -0.920682, 0.39494, -0.458541, -0.796045, 0.088931, -0.865108, -0.493576, 0.39494, -0.458541, -0.796045, 0.394238, -0.797266, -0.457045, 0.103763, -0.994598, 0.0, 0.003082, -0.85287, 0.52205, 0.006073, -0.999969, 0.0, -0.092868, -0.00586, -0.995636, -0.078707, 0.838374, -0.539354, -0.192785, 0.742302, -0.641682, 0.101596, -0.827357, -0.552355, -0.009125, -0.361309, -0.932371, 0.073946, -0.333964, -0.939665, -0.078707, 0.838374, -0.539354, -0.159215, 0.987213, 0.0, -0.192785, 0.742302, -0.641682, -0.049135, 0.274575, -0.960295, 0.073946, -0.333964, -0.939665, -0.009125, -0.361309, -0.932371, -0.032716, 0.283059, -0.958525, 0.071169, 0.828242, -0.555803, 0.017975, 0.390362, -0.920469, 0.001648, -0.90286, -0.429853, -0.017518, -0.618183, -0.785821, -0.002441, -0.559435, -0.828852, 0.027863, 0.799707, -0.599719, 0.099124, 0.995056, 0.0, 0.071169, 0.828242, -0.555803, -0.002441, -0.559435, -0.828852, -0.088107, -0.282388, -0.955229, -0.006989, -0.10419, -0.994507, -0.088107, -0.282388, -0.955229, 0.017975, 0.390362, -0.920469, -0.006989, -0.10419, -0.994507, 0.002655, -0.999969, 0.0, -0.09415, -0.855007, -0.509964, 0.001648, -0.90286, -0.429853, -0.032716, 0.283059, -0.958525, -0.192785, 0.742302, -0.641682, 0.027863, 0.799707, -0.599719, 0.027863, 0.799707, -0.599719, -0.159215, 0.987213, 0.0, 0.040986, 0.999146, 0.0, -0.224433, -0.48085, -0.84756, -0.032716, 0.283059, -0.958525, -0.088107, -0.282388, -0.955229, -0.10242, -0.99472, 0.0, -0.058687, -0.530137, -0.845851, -0.09415, -0.855007, -0.509964, -0.134831, -0.586261, -0.798791, -0.09415, -0.855007, -0.509964, -0.008545, -0.3708, -0.928648, -0.088107, -0.282388, -0.955229, -0.134831, -0.586261, -0.798791, -0.008545, -0.3708, -0.928648, -0.09415, -0.855007, -0.509964, -0.058687, -0.530137, -0.845851, -0.008545, -0.3708, -0.928648, -0.088107, -0.282388, -0.955229, -0.008545, -0.3708, -0.928648, -0.224433, -0.48085, -0.84756, 0.996429, -0.072909, -0.042085, 0.546251, 0.418775, 0.725364, 0.546251, 0.725364, 0.418775, 0.996429, -0.042085, 0.072909, 0.546251, 0.0, -0.837581, 0.996429, 0.0, 0.084201, 0.996429, 0.042085, -0.072909, 0.546251, -0.725364, 0.418775, 0.546251, -0.418806, 0.725364, 0.996429, 0.084201, 0.0, 0.546251, -0.725364, -0.418775, 0.546251, -0.837581, 0.0, 0.996429, -0.084201, 0.0, 0.546251, 0.725364, 0.418775, 0.546251, 0.837581, 0.0, 0.996429, -0.072909, 0.042085, 0.546251, 0.418775, -0.725364, 0.996429, -0.042085, 0.072909, 0.996429, 0.042085, 0.072909, 0.546251, -0.725364, -0.418775, 0.996429, 0.072909, 0.042085, 0.996429, 0.042085, -0.072909, 0.546251, 0.0, 0.837581, 0.996429, 0.0, -0.084201, 0.996429, -0.084201, 0.0, 0.546251, 0.725364, -0.418775, 0.996429, -0.072909, 0.042085, 0.996429, -0.042085, -0.072909, 0.546251, 0.0, 0.837581, 0.546251, 0.418775, 0.725364, 0.996429, 0.042085, 0.072909, 0.546251, 0.0, -0.837581, 0.546251, -0.418775, -0.725364, 0.996429, 0.084201, 0.0, 0.546251, -0.725364, 0.418775, 0.996429, 0.072909, -0.042085, -0.999969, 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, -0.999969, 0.0, 0.0, -0.999969, 0.0, 0.0, -1.0, 0.0, 0.0, -1.0, 0.0, 0.0, -1.0, 0.0, 0.0, -0.999969, 0.0, 0.0, -1.0, 0.0, 0.0, 0.09534, -0.995422, 0.0, 0.001648, -0.90286, -0.429853, 0.088931, -0.865108, -0.493576, -0.006989, -0.10419, -0.994507, 0.071505, 0.494369, -0.866298, 0.061678, -0.002441, -0.998077, -0.002441, -0.559435, -0.828852, 0.061678, -0.002441, -0.998077, 0.072817, -0.49208, -0.867489, 0.071169, 0.828242, -0.555803, 0.104129, 0.994537, 0.0, 0.0936, 0.865444, -0.492141, 0.001648, -0.90286, -0.429853, 0.072817, -0.49208, -0.867489, 0.088931, -0.865108, -0.493576, 0.017975, 0.390362, -0.920469, 0.0936, 0.865444, -0.492141, 0.071505, 0.494369, -0.866298, 0.09534, -0.995422, 0.0, 0.001648, -0.90286, 0.429853, 0.002655, -0.999969, 0.0, 0.071505, 0.494369, 0.866298, -0.006989, -0.10419, 0.994507, 0.061678, -0.002441, 0.998077, 0.061678, -0.002441, 0.998077, -0.002441, -0.559435, 0.828852, 0.072817, -0.49208, 0.867489, 0.104129, 0.994537, 0.0, 0.071169, 0.828242, 0.555803, 0.0936, 0.865444, 0.492141, 0.072817, -0.49208, 0.867489, 0.001648, -0.90286, 0.429853, 0.088931, -0.865108, 0.493576, 0.0936, 0.865444, 0.492141, 0.017975, 0.390362, 0.920469, 0.071505, 0.494369, 0.866298, 0.103763, -0.994598, 0.0, 0.003082, -0.85287, -0.52205, 0.101596, -0.827357, -0.552355, -0.092868, -0.00586, -0.995636, 0.11536, -0.319468, -0.940519, 0.063448, 0.273049, -0.959899, 0.017579, 0.269906, 0.962706, -0.104465, 0.822016, 0.559771, -0.049135, 0.274575, 0.960295, 0.101596, -0.827357, 0.552355, -0.009125, -0.361309, 0.932371, 0.003082, -0.85287, 0.52205, -0.008545, -0.3708, 0.928648, 0.132878, -0.774407, 0.618519, -0.058687, -0.530137, 0.845851, -0.078707, 0.838374, 0.539354, 0.063448, 0.273049, 0.959899, -0.092868, -0.00586, 0.995636, 0.11536, -0.319468, 0.940519, -0.092868, -0.00586, 0.995636, 0.063448, 0.273049, 0.959899, 0.029939, -0.999542, 0.0, 0.132878, -0.774407, -0.618519, -0.058687, -0.530137, -0.845851, -0.224433, -0.48085, -0.84756, -0.008545, -0.3708, -0.928648, -0.092868, -0.00586, -0.995636, -0.008545, -0.3708, -0.928648, 0.132878, -0.774407, -0.618519, 0.11536, -0.319468, -0.940519, 0.029939, -0.999542, 0.0, 0.132878, -0.774407, 0.618519, 0.091739, -0.995758, 0.0, -0.078707, 0.838374, -0.539354, -0.009095, 0.999939, 0.0, -0.113834, 0.9935, 0.0, -0.078707, 0.838374, -0.539354, 0.063448, 0.273049, -0.959899, 0.042512, 0.786462, -0.616138, -0.078707, 0.838374, 0.539354, -0.009095, 0.999939, 0.0, 0.042512, 0.786462, 0.616138, 0.132878, -0.774407, 0.618519, 0.073946, -0.333964, 0.939665, 0.101596, -0.827357, 0.552355, 0.063448, 0.273049, 0.959899, -0.057344, 0.815668, 0.57564, 0.017579, 0.269906, 0.962706, -0.224433, -0.48085, 0.84756, -0.092868, -0.00586, 0.995636, -0.008545, -0.3708, 0.928648, 0.132878, -0.774407, -0.618519, 0.103763, -0.994598, 0.0, 0.101596, -0.827357, -0.552355, 0.11536, -0.319468, 0.940519, 0.017579, 0.269906, 0.962706, 0.073946, -0.333964, 0.939665, 0.132878, -0.774407, -0.618519, 0.073946, -0.333964, -0.939665, 0.11536, -0.319468, -0.940519, 0.132878, -0.774407, 0.618519, 0.103763, -0.994598, 0.0, 0.091739, -0.995758, 0.0, 0.042512, 0.786462, -0.616138, -0.0918, 0.995758, 0.0, -0.009095, 0.999939, 0.0, 0.063448, 0.273049, -0.959899, -0.057344, 0.815668, -0.57564, 0.042512, 0.786462, -0.616138, 0.042512, 0.786462, 0.616138, -0.0918, 0.995758, 0.0, -0.057344, 0.815668, 0.57564, 0.11536, -0.319468, -0.940519, 0.017579, 0.269906, -0.962706, 0.063448, 0.273049, -0.959899, -0.049135, 0.274575, -0.960295, -0.203558, 0.821711, -0.532304, -0.104465, 0.822016, -0.559771, -0.1236, 0.992309, 0.0, -0.203558, 0.821711, -0.532304, -0.208258, 0.978057, 0.0, -0.009125, -0.361309, 0.932371, -0.114475, -0.85229, 0.510361, 0.003082, -0.85287, 0.52205, -0.009125, -0.361309, -0.932371, -0.114475, -0.85229, -0.510361, -0.135746, -0.370952, -0.918638, -0.049135, 0.274575, 0.960295, -0.203558, 0.821711, 0.532304, -0.17008, 0.285531, 0.943144, 0.003082, -0.85287, 0.52205, -0.096774, -0.9953, 0.0, 0.006073, -0.999969, 0.0, -0.135746, -0.370952, -0.918638, -0.049135, 0.274575, -0.960295, -0.009125, -0.361309, -0.932371, 0.003082, -0.85287, -0.52205, -0.096774, -0.9953, 0.0, -0.114475, -0.85229, -0.510361, -0.1236, 0.992309, 0.0, -0.203558, 0.821711, 0.532304, -0.104465, 0.822016, 0.559771, -0.114475, -0.85229, 0.510361, -0.364055, -0.326792, 0.872127, -0.341166, -0.784722, 0.517472, -0.096774, -0.9953, 0.0, -0.341166, -0.784722, 0.517472, -0.32252, -0.946532, 0.0, -0.114475, -0.85229, -0.510361, -0.364055, -0.326792, -0.872127, -0.135746, -0.370952, -0.918638, -0.208258, 0.978057, 0.0, -0.45204, 0.724387, -0.520463, -0.451216, 0.892392, 0.0, -0.208258, 0.978057, 0.0, -0.45204, 0.724387, 0.520463, -0.203558, 0.821711, 0.532304, -0.17008, 0.285531, 0.943144, -0.45204, 0.724387, 0.520463, -0.408155, 0.215094, 0.887173, -0.17008, 0.285531, -0.943144, -0.45204, 0.724387, -0.520463, -0.203558, 0.821711, -0.532304, -0.096774, -0.9953, 0.0, -0.341166, -0.784722, -0.517472, -0.114475, -0.85229, -0.510361, -0.32252, -0.946532, 0.0, -0.664968, -0.397534, -0.632252, -0.341166, -0.784722, -0.517472, -0.32252, -0.946532, 0.0, -0.664968, -0.397534, 0.632252, -0.742912, -0.669332, 0.0, -0.451216, 0.892392, 0.0, -0.68804, 0.290963, -0.664754, -0.79397, 0.607898, 0.0, -0.451216, 0.892392, 0.0, -0.68804, 0.290963, 0.664754, -0.45204, 0.724387, 0.520463, -0.135746, -0.370952, -0.918638, -0.408155, 0.215094, -0.887173, -0.17008, 0.285531, -0.943144, -0.45204, 0.724387, 0.520463, -0.68804, 0.290963, 0.664754, -0.408155, 0.215094, 0.887173, -0.341166, -0.784722, 0.517472, -0.364055, -0.326792, 0.872127, -0.664968, -0.397534, 0.632252, -0.408155, 0.215094, 0.887173, -0.664968, -0.397534, 0.632252, -0.364055, -0.326792, 0.872127, -0.049135, 0.274575, 0.960295, 0.073946, -0.333964, 0.939665, 0.017579, 0.269906, 0.962706, -0.049135, 0.274575, 0.960295, -0.135746, -0.370952, 0.918638, -0.009125, -0.361309, 0.932371, -0.135746, -0.370952, 0.918638, -0.408155, 0.215094, 0.887173, -0.364055, -0.326792, 0.872127, -0.408155, 0.215094, -0.887173, -0.68804, 0.290963, -0.664754, -0.45204, 0.724387, -0.520463, -0.341166, -0.784722, -0.517472, -0.664968, -0.397534, -0.632252, -0.364055, -0.326792, -0.872127, -0.664968, -0.397534, -0.632252, -0.408155, 0.215094, -0.887173, -0.364055, -0.326792, -0.872127, -0.664968, -0.397534, 0.632252, -0.68804, 0.290963, 0.664754, -0.998871, -0.046876, 0.0, -0.664968, -0.397534, -0.632252, -0.742912, -0.669332, 0.0, -0.998871, -0.046876, 0.0, -0.742912, -0.669332, 0.0, -0.664968, -0.397534, 0.632252, -0.998871, -0.046876, 0.0, -0.68804, 0.290963, 0.664754, -0.79397, 0.607898, 0.0, -0.998871, -0.046876, 0.0, -0.79397, 0.607898, 0.0, -0.68804, 0.290963, -0.664754, -0.998871, -0.046876, 0.0, -0.68804, 0.290963, -0.664754, -0.664968, -0.397534, -0.632252, -0.998871, -0.046876, 0.0, 0.401044, 0.916044, 0.0, 0.0936, 0.865444, 0.492141, 0.400586, 0.793329, 0.458388, 1.0, 0.0, 0.0, 0.999969, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.999969, 0.0, 0.0, 1.0, 0.0, 0.0, 0.999969, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.999969, 0.0, 0.0, 1.0, 0.0, 0.0, 0.999969, 0.0, 0.0, 0.999969, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.999969, 0.0, 0.0, 0.999969, 0.0, 0.0, 1.0, 0.0, 0.0, 0.996429, 0.0, -0.084201, 0.394604, 0.455275, -0.79809, 0.996429, 0.042085, -0.072909, 0.39494, -0.458541, -0.796045, 0.996429, 0.0, -0.084201, 0.996429, -0.042085, -0.072909, 0.996429, 0.072909, -0.042085, 0.401044, 0.916044, 0.0, 0.996429, 0.084201, 0.0, 0.996429, -0.072909, -0.042085, 0.39494, -0.458541, -0.796045, 0.996429, -0.042085, -0.072909, 0.394604, 0.455275, -0.79809, 0.996429, 0.072909, -0.042085, 0.996429, 0.042085, -0.072909, 0.996429, -0.084201, 0.0, 0.394238, -0.797266, -0.457045, 0.996429, -0.072909, -0.042085, 0.400586, 0.793329, -0.458388, 0.071505, 0.494369, -0.866298, 0.0936, 0.865444, -0.492141, 0.394238, -0.797266, -0.457045, 0.09534, -0.995422, 0.0, 0.088931, -0.865108, -0.493576, 0.394604, 0.455275, -0.79809, 0.061678, -0.002441, -0.998077, 0.071505, 0.494369, -0.866298, 0.401044, 0.916044, 0.0, 0.0936, 0.865444, 0.492141, 0.400586, 0.793329, 0.458388, 0.390301, 0.002014, -0.920682, 0.072817, -0.49208, -0.867489, 0.061678, -0.002441, -0.998077, 0.39494, -0.458541, -0.796045, 0.088931, -0.865108, -0.493576, 0.072817, -0.49208, -0.867489, -0.057344, 0.815668, -0.57564, -0.1236, 0.992309, 0.0, -0.0918, 0.995758, 0.0, -0.092868, -0.00586, -0.995636, -0.078707, 0.838374, -0.539354, -0.192785, 0.742302, -0.641682, -0.104465, 0.822016, 0.559771, 0.017579, 0.269906, 0.962706, -0.057344, 0.815668, 0.57564, -0.078707, 0.838374, -0.539354, -0.159215, 0.987213, 0.0, -0.192785, 0.742302, -0.641682, -0.1236, 0.992309, 0.0, -0.057344, 0.815668, 0.57564, -0.0918, 0.995758, 0.0, -0.032716, 0.283059, -0.958525, 0.071169, 0.828242, -0.555803, 0.017975, 0.390362, -0.920469, 0.001648, -0.90286, -0.429853, -0.017518, -0.618183, -0.785821, -0.002441, -0.559435, -0.828852, 0.027863, 0.799707, -0.599719, 0.099124, 0.995056, 0.0, 0.071169, 0.828242, -0.555803, -0.002441, -0.559435, -0.828852, -0.088107, -0.282388, -0.955229, -0.006989, -0.10419, -0.994507, -0.088107, -0.282388, -0.955229, 0.017975, 0.390362, -0.920469, -0.006989, -0.10419, -0.994507, 0.002655, -0.999969, 0.0, -0.09415, -0.855007, -0.509964, 0.001648, -0.90286, -0.429853, -0.032716, 0.283059, -0.958525, -0.192785, 0.742302, -0.641682, 0.027863, 0.799707, -0.599719, 0.027863, 0.799707, -0.599719, -0.159215, 0.987213, 0.0, 0.040986, 0.999146, 0.0, -0.224433, -0.48085, -0.84756, -0.032716, 0.283059, -0.958525, -0.088107, -0.282388, -0.955229, -0.10242, -0.99472, 0.0, -0.058687, -0.530137, -0.845851, -0.09415, -0.855007, -0.509964, -0.134831, -0.586261, -0.798791, -0.09415, -0.855007, -0.509964, -0.008545, -0.3708, -0.928648, -0.088107, -0.282388, -0.955229, -0.134831, -0.586261, -0.798791, -0.008545, -0.3708, -0.928648, -0.09415, -0.855007, -0.509964, -0.058687, -0.530137, -0.845851, -0.008545, -0.3708, -0.928648, -0.088107, -0.282388, -0.955229, -0.008545, -0.3708, -0.928648, -0.224433, -0.48085, -0.84756, 0.996429, 0.0, 0.084201, 0.394604, 0.455275, 0.79809, 0.390301, 0.002014, 0.920682, 0.996429, 0.0, 0.084201, 0.39494, -0.458541, 0.796045, 0.996429, -0.042085, 0.072909, 0.996429, 0.072909, 0.042085, 0.401044, 0.916044, 0.0, 0.400586, 0.793329, 0.458388, 0.996429, -0.072909, 0.042085, 0.39494, -0.458541, 0.796045, 0.394238, -0.797266, 0.457045, 0.996429, 0.072909, 0.042085, 0.394604, 0.455275, 0.79809, 0.996429, 0.042085, 0.072909, 0.996429, -0.072909, 0.042085, 0.388958, -0.921232, 0.0, 0.996429, -0.084201, 0.0, 0.400586, 0.793329, 0.458388, 0.071505, 0.494369, 0.866298, 0.394604, 0.455275, 0.79809, 0.394238, -0.797266, 0.457045, 0.09534, -0.995422, 0.0, 0.388958, -0.921232, 0.0, 0.394604, 0.455275, 0.79809, 0.061678, -0.002441, 0.998077, 0.390301, 0.002014, 0.920682, 0.390301, 0.002014, 0.920682, 0.072817, -0.49208, 0.867489, 0.39494, -0.458541, 0.796045, 0.39494, -0.458541, 0.796045, 0.088931, -0.865108, 0.493576, 0.394238, -0.797266, 0.457045, 0.103763, -0.994598, 0.0, 0.003082, -0.85287, -0.52205, 0.101596, -0.827357, -0.552355, -0.092868, -0.00586, 0.995636, -0.192785, 0.742302, 0.641682, -0.078707, 0.838374, 0.539354, -0.009125, -0.361309, 0.932371, 0.101596, -0.827357, 0.552355, 0.073946, -0.333964, 0.939665, -0.159215, 0.987213, 0.0, -0.078707, 0.838374, 0.539354, -0.192785, 0.742302, 0.641682, 0.073946, -0.333964, 0.939665, -0.049135, 0.274575, 0.960295, -0.009125, -0.361309, 0.932371, 0.071169, 0.828242, 0.555803, -0.032716, 0.283059, 0.958525, 0.017975, 0.390362, 0.920469, 0.001648, -0.90286, 0.429853, -0.017518, -0.618183, 0.785821, -0.09415, -0.855007, 0.509964, 0.099124, 0.995056, 0.0, 0.027863, 0.799707, 0.599719, 0.071169, 0.828242, 0.555803, -0.002441, -0.559435, 0.828852, -0.088107, -0.282388, 0.955229, -0.017518, -0.618183, 0.785821, 0.017975, 0.390362, 0.920469, -0.088107, -0.282388, 0.955229, -0.006989, -0.10419, 0.994507, 0.002655, -0.999969, 0.0, -0.09415, -0.855007, 0.509964, -0.10242, -0.99472, 0.0, -0.032716, 0.283059, 0.958525, -0.192785, 0.742302, 0.641682, -0.092868, -0.00586, 0.995636, 0.027863, 0.799707, 0.599719, -0.159215, 0.987213, 0.0, -0.192785, 0.742302, 0.641682, -0.032716, 0.283059, 0.958525, -0.224433, -0.48085, 0.84756, -0.088107, -0.282388, 0.955229, -0.10242, -0.99472, 0.0, -0.058687, -0.530137, 0.845851, 0.029939, -0.999542, 0.0, -0.134831, -0.586261, 0.798791, -0.008545, -0.3708, 0.928648, -0.09415, -0.855007, 0.509964, -0.088107, -0.282388, 0.955229, -0.008545, -0.3708, 0.928648, -0.134831, -0.586261, 0.798791, -0.09415, -0.855007, 0.509964, -0.008545, -0.3708, 0.928648, -0.058687, -0.530137, 0.845851, -0.088107, -0.282388, 0.955229, -0.224433, -0.48085, 0.84756, -0.008545, -0.3708, 0.928648, 0.996429, -0.072909, 0.042085, 0.546251, 0.418775, -0.725364, 0.996429, -0.042085, 0.072909, 0.546251, 0.0, 0.837581, 0.996429, -0.042085, -0.072909, 0.996429, 0.0, -0.084201, 0.996429, 0.042085, 0.072909, 0.546251, -0.725364, -0.418775, 0.996429, 0.072909, 0.042085, 0.996429, 0.084201, 0.0, 0.546251, -0.725364, 0.418775, 0.996429, 0.072909, -0.042085, 0.546251, 0.837581, 0.0, 0.996429, -0.072909, 0.042085, 0.996429, -0.084201, 0.0, 0.546251, 0.418775, 0.725364, 0.996429, -0.072909, -0.042085, 0.996429, -0.042085, -0.072909, 0.546251, -0.725364, 0.418775, 0.996429, 0.042085, -0.072909, 0.996429, 0.072909, -0.042085, 0.546251, 0.0, -0.837581, 0.996429, 0.042085, 0.072909, 0.996429, 0.0, 0.084201, 0.546251, 0.725364, 0.418775, 0.996429, -0.084201, 0.0, 0.996429, -0.072909, -0.042085, 0.996429, -0.042085, 0.072909, 0.546251, 0.0, -0.837581, 0.996429, 0.0, 0.084201, 0.996429, 0.042085, -0.072909, 0.546251, 0.0, 0.837581, 0.996429, 0.0, -0.084201, 0.996429, 0.072909, 0.042085, 0.546251, -0.837581, 0.0, 0.996429, 0.084201, 0.0, -0.999969, 0.0, 0.0, -1.0, 0.0, 0.0, -1.0, 0.0, 0.0, -1.0, 0.0, 0.0, -0.999969, 0.0, 0.0, -1.0, 0.0, 0.0, -0.999969, 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, -0.999969, 0.0, 0.0, 0.09534, -0.995422, 0.0, 0.001648, -0.90286, 0.429853, 0.002655, -0.999969, 0.0, 0.071505, 0.494369, 0.866298, -0.006989, -0.10419, 0.994507, 0.061678, -0.002441, 0.998077, 0.061678, -0.002441, 0.998077, -0.002441, -0.559435, 0.828852, 0.072817, -0.49208, 0.867489, 0.104129, 0.994537, 0.0, 0.071169, 0.828242, 0.555803, 0.0936, 0.865444, 0.492141, 0.072817, -0.49208, 0.867489, 0.001648, -0.90286, 0.429853, 0.088931, -0.865108, 0.493576, 0.0936, 0.865444, 0.492141, 0.017975, 0.390362, 0.920469, 0.071505, 0.494369, 0.866298, 0.09534, -0.995422, 0.0, 0.001648, -0.90286, -0.429853, 0.088931, -0.865108, -0.493576, -0.006989, -0.10419, -0.994507, 0.071505, 0.494369, -0.866298, 0.061678, -0.002441, -0.998077, -0.002441, -0.559435, -0.828852, 0.061678, -0.002441, -0.998077, 0.072817, -0.49208, -0.867489, 0.071169, 0.828242, -0.555803, 0.104129, 0.994537, 0.0, 0.0936, 0.865444, -0.492141, 0.001648, -0.90286, -0.429853, 0.072817, -0.49208, -0.867489, 0.088931, -0.865108, -0.493576, 0.017975, 0.390362, -0.920469, 0.0936, 0.865444, -0.492141, 0.071505, 0.494369, -0.866298, 0.003082, -0.85287, 0.52205, 0.103763, -0.994598, 0.0, 0.101596, -0.827357, 0.552355, -0.092868, -0.00586, 0.995636, 0.11536, -0.319468, 0.940519, -0.008545, -0.3708, 0.928648, 0.017579, 0.269906, -0.962706, -0.104465, 0.822016, -0.559771, -0.057344, 0.815668, -0.57564, 0.101596, -0.827357, -0.552355, -0.009125, -0.361309, -0.932371, 0.073946, -0.333964, -0.939665, 0.132878, -0.774407, -0.618519, -0.008545, -0.3708, -0.928648, -0.058687, -0.530137, -0.845851, 0.063448, 0.273049, -0.959899, -0.078707, 0.838374, -0.539354, -0.092868, -0.00586, -0.995636, 0.11536, -0.319468, -0.940519, -0.092868, -0.00586, -0.995636, -0.008545, -0.3708, -0.928648, 0.132878, -0.774407, 0.618519, 0.029939, -0.999542, 0.0, -0.058687, -0.530137, 0.845851, -0.224433, -0.48085, 0.84756, -0.092868, -0.00586, 0.995636, -0.008545, -0.3708, 0.928648, -0.008545, -0.3708, 0.928648, 0.132878, -0.774407, 0.618519, -0.058687, -0.530137, 0.845851, 0.029939, -0.999542, 0.0, 0.132878, -0.774407, -0.618519, -0.058687, -0.530137, -0.845851, -0.009095, 0.999939, 0.0, -0.078707, 0.838374, 0.539354, -0.113834, 0.9935, 0.0, -0.078707, 0.838374, 0.539354, 0.063448, 0.273049, 0.959899, -0.092868, -0.00586, 0.995636, -0.078707, 0.838374, -0.539354, -0.009095, 0.999939, 0.0, -0.113834, 0.9935, 0.0, 0.132878, -0.774407, -0.618519, 0.073946, -0.333964, -0.939665, 0.11536, -0.319468, -0.940519, 0.063448, 0.273049, -0.959899, -0.057344, 0.815668, -0.57564, 0.042512, 0.786462, -0.616138, -0.224433, -0.48085, -0.84756, -0.008545, -0.3708, -0.928648, -0.092868, -0.00586, -0.995636, 0.132878, -0.774407, 0.618519, 0.103763, -0.994598, 0.0, 0.091739, -0.995758, 0.0, 0.017579, 0.269906, -0.962706, 0.11536, -0.319468, -0.940519, 0.073946, -0.333964, -0.939665, 0.073946, -0.333964, 0.939665, 0.132878, -0.774407, 0.618519, 0.11536, -0.319468, 0.940519, 0.103763, -0.994598, 0.0, 0.132878, -0.774407, -0.618519, 0.091739, -0.995758, 0.0, -0.0918, 0.995758, 0.0, 0.042512, 0.786462, 0.616138, -0.009095, 0.999939, 0.0, -0.057344, 0.815668, 0.57564, 0.063448, 0.273049, 0.959899, 0.042512, 0.786462, 0.616138, 0.042512, 0.786462, -0.616138, -0.0918, 0.995758, 0.0, -0.009095, 0.999939, 0.0, 0.017579, 0.269906, 0.962706, 0.11536, -0.319468, 0.940519, 0.063448, 0.273049, 0.959899, -0.203558, 0.821711, 0.532304, -0.049135, 0.274575, 0.960295, -0.104465, 0.822016, 0.559771, -0.1236, 0.992309, 0.0, -0.203558, 0.821711, 0.532304, -0.104465, 0.822016, 0.559771, -0.114475, -0.85229, -0.510361, -0.009125, -0.361309, -0.932371, 0.003082, -0.85287, -0.52205, -0.009125, -0.361309, 0.932371, -0.114475, -0.85229, 0.510361, 0.003082, -0.85287, 0.52205, -0.049135, 0.274575, -0.960295, -0.203558, 0.821711, -0.532304, -0.104465, 0.822016, -0.559771, -0.096774, -0.9953, 0.0, 0.003082, -0.85287, -0.52205, 0.006073, -0.999969, 0.0, -0.135746, -0.370952, 0.918638, -0.049135, 0.274575, 0.960295, -0.17008, 0.285531, 0.943144, 0.003082, -0.85287, 0.52205, -0.096774, -0.9953, 0.0, 0.006073, -0.999969, 0.0, -0.203558, 0.821711, -0.532304, -0.1236, 0.992309, 0.0, -0.104465, 0.822016, -0.559771, -0.114475, -0.85229, -0.510361, -0.364055, -0.326792, -0.872127, -0.135746, -0.370952, -0.918638, -0.096774, -0.9953, 0.0, -0.341136, -0.784722, -0.517472, -0.114475, -0.85229, -0.510361, -0.364055, -0.326792, 0.872127, -0.114475, -0.85229, 0.510361, -0.135746, -0.370952, 0.918638, -0.208258, 0.978057, 0.0, -0.45204, 0.724387, 0.520463, -0.203558, 0.821711, 0.532304, -0.45204, 0.724387, -0.520463, -0.208258, 0.978057, 0.0, -0.203558, 0.821711, -0.532304, -0.17008, 0.285531, -0.943144, -0.45204, 0.724387, -0.520463, -0.203558, 0.821711, -0.532304, -0.45204, 0.724387, 0.520463, -0.17008, 0.285531, 0.943144, -0.203558, 0.821711, 0.532304, -0.341166, -0.784722, 0.517472, -0.096774, -0.9953, 0.0, -0.114475, -0.85229, 0.510361, -0.664968, -0.397534, 0.632252, -0.32252, -0.946532, 0.0, -0.341166, -0.784722, 0.517472, -0.32252, -0.946532, 0.0, -0.664968, -0.397534, -0.632252, -0.341136, -0.784722, -0.517472, -0.451216, 0.892392, 0.0, -0.68804, 0.290963, 0.664754, -0.45204, 0.724387, 0.520463, -0.68804, 0.290963, -0.664754, -0.451216, 0.892392, 0.0, -0.45204, 0.724387, -0.520463, -0.135746, -0.370952, 0.918638, -0.408155, 0.215094, 0.887173, -0.364055, -0.326792, 0.872127, -0.45204, 0.724387, -0.520463, -0.408155, 0.215094, -0.887173, -0.68804, 0.290963, -0.664754, -0.341136, -0.784722, -0.517472, -0.664968, -0.397534, -0.632252, -0.364055, -0.326792, -0.872127, -0.664968, -0.397534, -0.632252, -0.408155, 0.215094, -0.887173, -0.364055, -0.326792, -0.872127, 0.073946, -0.333964, -0.939665, -0.049135, 0.274575, -0.960295, 0.017579, 0.269906, -0.962706, -0.135746, -0.370952, -0.918638, -0.049135, 0.274575, -0.960295, -0.009125, -0.361309, -0.932371, -0.408155, 0.215094, -0.887173, -0.135746, -0.370952, -0.918638, -0.364055, -0.326792, -0.872127, -0.408155, 0.215094, 0.887173, -0.45204, 0.724387, 0.520463, -0.68804, 0.290963, 0.664754, -0.341166, -0.784722, 0.517472, -0.364055, -0.326792, 0.872127, -0.664968, -0.397534, 0.632252, -0.408155, 0.215094, 0.887173, -0.664968, -0.397534, 0.632252, -0.364055, -0.326792, 0.872127, -0.664968, -0.397534, -0.632252, -0.998871, -0.046876, 0.0, -0.68804, 0.290963, -0.664754, -0.664968, -0.397534, 0.632252, -0.998871, -0.046876, 0.0, -0.742912, -0.669332, 0.0, -0.742912, -0.669332, 0.0, -0.998871, -0.046876, 0.0, -0.664968, -0.397534, -0.632252, -0.68804, 0.290963, -0.664754, -0.998871, -0.046876, 0.0, -0.79397, 0.607929, 0.0, -0.79397, 0.607929, 0.0, -0.998871, -0.046876, 0.0, -0.68804, 0.290963, 0.664754, -0.68804, 0.290963, 0.664754, -0.998871, -0.046876, 0.0, -0.664968, -0.397534, 0.632252, 0.401044, 0.916044, 0.0, 0.0936, 0.865444, -0.492141, 0.104129, 0.994537, 0.0, 1.0, 0.0, 0.0, 0.999969, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.999969, 0.0, 0.0, 1.0, 0.0, 0.0, 0.999969, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.999969, 0.0, 0.0, 0.999969, 0.0, 0.0, 1.0, 0.0, 0.0, 0.999969, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.999969, 0.0, 0.0, 1.0, 0.0, 0.0, 0.999969, 0.0, 0.0, 0.996429, 0.042085, 0.072909, 0.40788, 0.000183, 0.913022, 0.996429, 0.0, 0.084201, 0.996429, 0.0, 0.084201, 0.408216, -0.456771, 0.790368, 0.996429, -0.042085, 0.072909, 0.996429, 0.084201, 0.0, 0.404065, 0.792566, 0.456648, 0.996429, 0.072909, 0.042085, 0.996429, -0.042085, 0.072909, 0.405835, -0.792657, 0.454909, 0.996429, -0.072909, 0.042085, 0.996429, 0.072909, 0.042085, 0.406232, 0.457472, 0.790979, 0.996429, 0.042085, 0.072909, 0.996429, -0.084201, 0.0, 0.405835, -0.792657, 0.454909, 0.401654, -0.915769, 0.0, 0.402997, 0.915189, 0.0, 0.092196, 0.862789, 0.497024, 0.404065, 0.792566, 0.456648, 0.408216, -0.456771, 0.790368, 0.103916, -0.861995, 0.496109, 0.405835, -0.792657, 0.454909, 0.404065, 0.792566, 0.456648, 0.081301, 0.501053, 0.861568, 0.406232, 0.457472, 0.790979, 0.405835, -0.792657, 0.454909, 0.108127, -0.99411, 0.0, 0.401654, -0.915769, 0.0, 0.406232, 0.457472, 0.790979, 0.080752, 0.008484, 0.996673, 0.40788, 0.000183, 0.913022, 0.40788, 0.000183, 0.913022, 0.091189, -0.490463, 0.866665, 0.408216, -0.456771, 0.790368, -0.004639, -0.538621, 0.842524, 0.103916, -0.861995, 0.496109, 0.091189, -0.490463, 0.866665, 0.092196, 0.862789, 0.497024, -0.004669, 0.399823, 0.916562, 0.081301, 0.501053, 0.861568, -0.006806, -0.89938, 0.437086, 0.108127, -0.99411, 0.0, 0.103916, -0.861995, 0.496109, 0.081301, 0.501053, 0.861568, -0.003632, -0.092227, 0.995727, 0.080752, 0.008484, 0.996673, -0.006867, 0.831721, -0.555132, 0.098392, 0.995117, 0.0, 0.092196, 0.862789, -0.497024, 0.080752, 0.008484, 0.996673, -0.004639, -0.538621, 0.842524, 0.091189, -0.490463, 0.866665, -0.451949, -0.892026, 0.0, -0.490524, -0.72335, 0.485916, -0.640889, -0.767602, 0.0, -0.143193, 0.504746, 0.851283, -0.164983, 0.854244, 0.492935, -0.256172, 0.913572, 0.315836, -0.149449, -0.577013, 0.802911, -0.490524, -0.72335, 0.485916, -0.14713, -0.511917, 0.846309, -0.156407, 0.987671, 0.0, -0.256172, 0.913572, 0.315836, -0.164983, 0.854244, 0.492935, -0.14713, -0.511917, 0.846309, -0.211005, -0.486038, 0.848048, -0.114353, -0.578753, 0.807428, -0.004669, 0.399823, 0.916562, -0.038423, 0.837916, 0.54442, -0.057497, 0.35139, 0.934446, -0.006806, -0.89938, 0.437086, -0.031922, -0.625111, 0.77987, -0.095004, -0.862117, 0.497696, -0.006867, 0.831721, 0.555132, -0.048433, 0.99881, 0.0, -0.038423, 0.837916, 0.54442, -0.004639, -0.538621, 0.842524, -0.089694, -0.309305, 0.946715, -0.031922, -0.625111, 0.77987, -0.003632, -0.092227, 0.995727, -0.057497, 0.35139, 0.934446, -0.089694, -0.309305, 0.946715, -0.005463, -0.999969, 0.0, -0.095004, -0.862117, 0.497696, -0.094485, -0.995514, 0.0, -0.038423, 0.837916, 0.54442, -0.143193, 0.504746, 0.851283, -0.057497, 0.35139, 0.934446, -0.048433, 0.99881, 0.0, -0.164983, 0.854244, 0.492935, -0.038423, 0.837916, 0.54442, -0.057497, 0.35139, 0.934446, -0.149449, -0.577013, 0.802911, -0.089694, -0.309305, 0.946715, -0.094485, -0.995514, 0.0, -0.114353, -0.578753, 0.807428, -0.284982, -0.958525, 0.0, -0.118259, -0.634968, 0.763421, -0.14713, -0.511917, 0.846309, -0.095004, -0.862117, 0.497696, -0.089694, -0.309305, 0.946715, -0.14713, -0.511917, 0.846309, -0.118259, -0.634968, 0.763421, -0.095004, -0.862117, 0.497696, -0.14713, -0.511917, 0.846309, -0.114353, -0.578753, 0.807428, -0.089694, -0.309305, 0.946715, -0.149449, -0.577013, 0.802911, -0.14713, -0.511917, 0.846309, 0.40788, 0.000183, -0.913022, 0.996429, 0.042085, -0.072939, 0.996429, 0.0, -0.084201, 0.996429, -0.042085, -0.072909, 0.40788, 0.000183, -0.913022, 0.996429, 0.0, -0.084201, 0.404065, 0.792566, -0.456648, 0.996429, 0.084201, 0.0, 0.996429, 0.072909, -0.042085, 0.996429, -0.072909, -0.042085, 0.408216, -0.456771, -0.790368, 0.996429, -0.042085, -0.072909, 0.406232, 0.457472, -0.790979, 0.996429, 0.072909, -0.042085, 0.996429, 0.042085, -0.072939, 0.996429, -0.084201, 0.0, 0.405835, -0.792657, -0.454909, 0.996429, -0.072909, -0.042085, 0.092196, 0.862789, -0.497024, 0.402997, 0.915189, 0.0, 0.404065, 0.792566, -0.456648, 0.103916, -0.861995, -0.496109, 0.408216, -0.456771, -0.790368, 0.405835, -0.792657, -0.454909, 0.081301, 0.501053, -0.861568, 0.404065, 0.792566, -0.456648, 0.406232, 0.457472, -0.790979, 0.108127, -0.99411, 0.0, 0.405835, -0.792657, -0.454909, 0.401654, -0.915769, 0.0, 0.080752, 0.008484, -0.996673, 0.406232, 0.457472, -0.790979, 0.40788, 0.000183, -0.913022, 0.091189, -0.490463, -0.866665, 0.40788, 0.000183, -0.913022, 0.408216, -0.456771, -0.790368, 0.103916, -0.861995, -0.496109, -0.004639, -0.538621, -0.842524, 0.091189, -0.490463, -0.866665, -0.004669, 0.399823, -0.916562, 0.092196, 0.862789, -0.497024, 0.081301, 0.501053, -0.861568, 0.108127, -0.99411, 0.0, -0.006806, -0.89938, -0.437086, 0.103916, -0.861995, -0.496109, -0.003632, -0.092227, -0.995727, 0.081301, 0.501053, -0.861568, 0.080752, 0.008484, -0.996673, -0.004639, -0.538621, -0.842524, 0.080752, 0.008484, -0.996673, 0.091189, -0.490463, -0.866665, -0.451949, -0.892026, 0.0, -0.490524, -0.72335, -0.485916, -0.211005, -0.486038, -0.848048, -0.143193, 0.504746, -0.851283, -0.256172, 0.913541, -0.315836, -0.164983, 0.854244, -0.492935, -0.149449, -0.577013, -0.802911, -0.14713, -0.511917, -0.846309, -0.490524, -0.72335, -0.485916, -0.256172, 0.913541, -0.315836, -0.156407, 0.987671, 0.0, -0.164983, 0.854244, -0.492935, -0.211005, -0.486038, -0.848048, -0.14713, -0.511917, -0.846309, -0.114353, -0.578753, -0.807428, -0.004669, 0.399823, -0.916562, -0.038423, 0.837916, -0.54442, -0.006867, 0.831721, -0.555132, -0.006806, -0.89938, -0.437086, -0.031922, -0.625111, -0.77987, -0.004639, -0.538621, -0.842524, -0.006867, 0.831721, -0.555132, -0.048433, 0.99881, 0.0, -0.008301, 0.999939, 0.0, -0.004639, -0.538621, -0.842524, -0.089694, -0.309305, -0.946715, -0.003632, -0.092227, -0.995727, -0.003632, -0.092227, -0.995727, -0.057497, 0.35139, -0.934446, -0.004669, 0.399823, -0.916562, -0.005463, -0.999969, 0.0, -0.095004, -0.862117, -0.497696, -0.006806, -0.89938, -0.437086, -0.143193, 0.504746, -0.851283, -0.038423, 0.837916, -0.54442, -0.057497, 0.35139, -0.934446, -0.164983, 0.854244, -0.492935, -0.048433, 0.99881, 0.0, -0.038423, 0.837916, -0.54442, -0.149449, -0.577013, -0.802911, -0.057497, 0.35139, -0.934446, -0.089694, -0.309305, -0.946715, -0.094485, -0.995514, 0.0, -0.114353, -0.578753, -0.807428, -0.095004, -0.862117, -0.497696, -0.118259, -0.634968, -0.763421, -0.095004, -0.862117, -0.497696, -0.14713, -0.511917, -0.846309, -0.089694, -0.309305, -0.946715, -0.118259, -0.634968, -0.763421, -0.14713, -0.511917, -0.846309, -0.095004, -0.862117, -0.497696, -0.114353, -0.578753, -0.807428, -0.14713, -0.511917, -0.846309, -0.089694, -0.309305, -0.946715, -0.14713, -0.511917, -0.846309, -0.149449, -0.577013, -0.802911, 0.996429, -0.072909, -0.042085, 0.546251, 0.418775, 0.725364, 0.546251, 0.725364, 0.418775, 0.996429, 0.0, 0.084201, 0.546251, 0.418775, -0.725364, 0.546251, 0.0, -0.837611, 0.996429, 0.072909, -0.042085, 0.546281, -0.418775, 0.725364, 0.996429, 0.042085, -0.072939, 0.996429, 0.072909, 0.042085, 0.546251, -0.837581, 0.0, 0.996429, 0.084201, 0.0, 0.996429, -0.084201, 0.0, 0.546251, 0.725364, 0.418775, 0.546251, 0.837581, 0.0, 0.996429, -0.042085, 0.072909, 0.546251, 0.725364, -0.418775, 0.546251, 0.418775, -0.725364, 0.996429, 0.042085, 0.072909, 0.546251, -0.725364, -0.418775, 0.996429, 0.072909, 0.042085, 0.996429, 0.0, -0.084201, 0.546281, -0.418775, 0.725364, 0.546281, 0.0, 0.837581, 0.996429, -0.072909, 0.042085, 0.546251, 0.837581, 0.0, 0.546251, 0.725364, -0.418775, 0.996429, 0.0, -0.084201, 0.546251, 0.418775, 0.725364, 0.996429, -0.042085, -0.072909, 0.996429, 0.0, 0.084201, 0.546251, -0.418775, -0.725364, 0.996429, 0.042085, 0.072909, 0.996429, 0.084201, 0.0, 0.546251, -0.725364, 0.418775, 0.996429, 0.072909, -0.042085, -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, 0.0, 0.0, -1.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.098392, 0.995117, 0.0, -0.006867, 0.831721, 0.555132, 0.092196, 0.862789, 0.497024, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.999969, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.999969, 0.0, 0.0, 1.0, 0.0, 0.0, 0.999969, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.999969, 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, -0.284982, -0.958525, 0.0, -0.211005, -0.486038, -0.848048, -0.114353, -0.578753, -0.807428, -0.284982, -0.958525, 0.0, -0.211005, -0.486038, 0.848048, -0.451949, -0.892026, 0.0, 0.40788, 0.000183, -0.913022, 0.996429, 0.042085, -0.072909, 0.996429, 0.0, -0.08417, 0.408216, -0.456771, -0.790368, 0.996429, 0.0, -0.08417, 0.996429, -0.042085, -0.072939, 0.404065, 0.792566, -0.456648, 0.996429, 0.084201, 0.0, 0.996429, 0.072909, -0.042085, 0.405835, -0.792657, -0.454909, 0.996429, -0.042085, -0.072939, 0.996429, -0.072909, -0.042085, 0.406232, 0.457472, -0.790979, 0.996429, 0.072909, -0.042085, 0.996429, 0.042085, -0.072909, 0.996429, -0.084201, 0.0, 0.405835, -0.792657, -0.454909, 0.996429, -0.072909, -0.042085, 0.092196, 0.862789, -0.497024, 0.402997, 0.915189, 0.0, 0.404065, 0.792566, -0.456648, 0.103916, -0.861995, -0.496109, 0.408216, -0.456771, -0.790368, 0.405835, -0.792657, -0.454909, 0.081301, 0.501053, -0.861568, 0.404065, 0.792566, -0.456648, 0.406232, 0.457472, -0.790979, 0.108127, -0.99411, 0.0, 0.405835, -0.792657, -0.454909, 0.401654, -0.915769, 0.0, 0.080752, 0.008484, -0.996673, 0.406232, 0.457472, -0.790979, 0.40788, 0.000183, -0.913022, 0.091189, -0.490463, -0.866665, 0.40788, 0.000183, -0.913022, 0.408216, -0.456771, -0.790368, 0.103916, -0.861995, -0.496109, -0.004639, -0.538621, -0.842524, 0.091189, -0.490463, -0.866665, 0.092196, 0.862789, -0.497024, -0.004669, 0.399823, -0.916562, -0.006867, 0.831721, -0.555132, 0.108127, -0.99411, 0.0, -0.006806, -0.89938, -0.437086, 0.103916, -0.861995, -0.496109, 0.081301, 0.501053, -0.861568, -0.003632, -0.092227, -0.995727, -0.004669, 0.399823, -0.916562, 0.098392, 0.995117, 0.0, -0.006867, 0.831721, 0.555132, 0.092196, 0.862789, 0.497024, 0.080752, 0.008484, -0.996673, -0.004639, -0.538621, -0.842524, -0.003632, -0.092227, -0.995727, -0.451949, -0.892026, 0.0, -0.490524, -0.72335, -0.485916, -0.211005, -0.486038, -0.848048, -0.143193, 0.504746, -0.851283, -0.256172, 0.913541, -0.315836, -0.164983, 0.854244, -0.492935, -0.149449, -0.577013, -0.802911, -0.14713, -0.511917, -0.846309, -0.490524, -0.72335, -0.485916, -0.256172, 0.913541, -0.315836, -0.156407, 0.987671, 0.0, -0.164983, 0.854244, -0.492935, -0.211005, -0.486038, -0.848048, -0.14713, -0.511917, -0.846309, -0.114353, -0.578753, -0.807428, -0.004669, 0.399823, -0.916562, -0.038423, 0.837916, -0.54442, -0.006867, 0.831721, -0.555132, -0.006806, -0.89938, -0.437086, -0.031922, -0.625111, -0.77987, -0.004639, -0.538621, -0.842524, -0.006867, 0.831721, -0.555132, -0.048433, 0.99881, 0.0, -0.008301, 0.999939, 0.0, -0.004639, -0.538621, -0.842524, -0.089694, -0.309305, -0.946715, -0.003632, -0.092227, -0.995727, -0.003632, -0.092227, -0.995727, -0.057497, 0.35139, -0.934446, -0.004669, 0.399823, -0.916562, -0.005463, -0.999969, 0.0, -0.095004, -0.862117, -0.497696, -0.006806, -0.89938, -0.437086, -0.143193, 0.504746, -0.851283, -0.038423, 0.837916, -0.54442, -0.057497, 0.35139, -0.934446, -0.164983, 0.854244, -0.492935, -0.048433, 0.99881, 0.0, -0.038423, 0.837916, -0.54442, -0.149449, -0.577013, -0.802911, -0.057497, 0.35139, -0.934446, -0.089694, -0.309305, -0.946715, -0.094485, -0.995514, 0.0, -0.114353, -0.578753, -0.807428, -0.095004, -0.862117, -0.497696, -0.118259, -0.634968, -0.763421, -0.095004, -0.862117, -0.497696, -0.14713, -0.511917, -0.846309, -0.089694, -0.309305, -0.946715, -0.118259, -0.634968, -0.763421, -0.14713, -0.511917, -0.846309, -0.095004, -0.862117, -0.497696, -0.114353, -0.578753, -0.807428, -0.14713, -0.511917, -0.846309, -0.089694, -0.309305, -0.946715, -0.14713, -0.511917, -0.846309, -0.149449, -0.577013, -0.802911, 0.996429, 0.042085, 0.072939, 0.40788, 0.000183, 0.913022, 0.996429, 0.0, 0.084201, 0.996429, -0.042085, 0.072909, 0.40788, 0.000183, 0.913022, 0.408216, -0.456771, 0.790368, 0.996429, 0.084201, 0.0, 0.404065, 0.792566, 0.456648, 0.996429, 0.072909, 0.042085, 0.996429, -0.072909, 0.042085, 0.408216, -0.456771, 0.790368, 0.405835, -0.792657, 0.454909, 0.996429, 0.072909, 0.042085, 0.406232, 0.457472, 0.790979, 0.996429, 0.042085, 0.072939, 0.996429, -0.084201, 0.0, 0.405835, -0.792657, 0.454909, 0.401654, -0.915769, 0.0, 0.402997, 0.915189, 0.0, 0.092196, 0.862789, 0.497024, 0.404065, 0.792566, 0.456648, 0.408216, -0.456771, 0.790368, 0.103916, -0.861995, 0.496109, 0.405835, -0.792657, 0.454909, 0.404065, 0.792566, 0.456648, 0.081301, 0.501053, 0.861568, 0.406232, 0.457472, 0.790979, 0.405835, -0.792657, 0.454909, 0.108127, -0.99411, 0.0, 0.401654, -0.915769, 0.0, 0.406232, 0.457472, 0.790979, 0.080752, 0.008484, 0.996673, 0.40788, 0.000183, 0.913022, 0.40788, 0.000183, 0.913022, 0.091189, -0.490463, 0.866665, 0.408216, -0.456771, 0.790368, 0.103916, -0.861995, 0.496109, -0.004639, -0.538621, 0.842524, -0.006806, -0.89938, 0.437086, 0.092196, 0.862789, 0.497024, -0.004669, 0.399823, 0.916562, 0.081301, 0.501053, 0.861568, 0.108127, -0.99411, 0.0, -0.006806, -0.89938, 0.437086, -0.005463, -0.999969, 0.0, 0.081301, 0.501053, 0.861568, -0.003632, -0.092227, 0.995727, 0.080752, 0.008484, 0.996673, 0.080752, 0.008484, 0.996673, -0.004639, -0.538621, 0.842524, 0.091189, -0.490463, 0.866665, -0.451949, -0.892026, 0.0, -0.490524, -0.72335, 0.485916, -0.640889, -0.767602, 0.0, -0.143193, 0.504746, 0.851283, -0.164983, 0.854244, 0.492935, -0.256172, 0.913572, 0.315836, -0.149449, -0.577013, 0.802911, -0.490524, -0.72335, 0.485916, -0.14713, -0.511917, 0.846309, -0.156407, 0.987671, 0.0, -0.256172, 0.913572, 0.315836, -0.164983, 0.854244, 0.492935, -0.14713, -0.511917, 0.846309, -0.211005, -0.486068, 0.848048, -0.114353, -0.578753, 0.807428, -0.004669, 0.399823, 0.916562, -0.038423, 0.837916, 0.54442, -0.057497, 0.35139, 0.934446, -0.006806, -0.89938, 0.437086, -0.031922, -0.625111, 0.77987, -0.095004, -0.862117, 0.497696, -0.006867, 0.831721, 0.555132, -0.048433, 0.99881, 0.0, -0.038423, 0.837916, 0.54442, -0.004639, -0.538621, 0.842524, -0.089694, -0.309305, 0.946715, -0.031922, -0.625111, 0.77987, -0.003632, -0.092227, 0.995727, -0.057497, 0.35139, 0.934446, -0.089694, -0.309305, 0.946715, -0.005463, -0.999969, 0.0, -0.095004, -0.862117, 0.497696, -0.094485, -0.995514, 0.0, -0.038423, 0.837916, 0.54442, -0.143193, 0.504746, 0.851283, -0.057497, 0.35139, 0.934446, -0.048433, 0.99881, 0.0, -0.164983, 0.854244, 0.492935, -0.038423, 0.837916, 0.54442, -0.057497, 0.35139, 0.934446, -0.149449, -0.577013, 0.802911, -0.089694, -0.309305, 0.946715, -0.094485, -0.995514, 0.0, -0.114353, -0.578753, 0.807428, -0.284982, -0.958525, 0.0, -0.118259, -0.634968, 0.763421, -0.14713, -0.511917, 0.846309, -0.095004, -0.862117, 0.497696, -0.089694, -0.309305, 0.946715, -0.14713, -0.511917, 0.846309, -0.118259, -0.634968, 0.763421, -0.095004, -0.862117, 0.497696, -0.14713, -0.511917, 0.846309, -0.114353, -0.578753, 0.807428, -0.089694, -0.309305, 0.946715, -0.149449, -0.577013, 0.802911, -0.14713, -0.511917, 0.846309, 0.996429, -0.072909, 0.042085, 0.546251, 0.418775, -0.725364, 0.996429, -0.042085, 0.072909, 0.996429, 0.0, -0.08417, 0.546251, 0.418775, 0.725364, 0.996429, -0.042085, -0.072939, 0.546281, -0.418775, -0.725364, 0.996429, 0.072909, 0.042085, 0.996429, 0.042085, 0.072939, 0.546251, -0.837581, 0.0, 0.996429, 0.072909, -0.042085, 0.996429, 0.084201, 0.0, 0.996429, -0.084201, 0.0, 0.546251, 0.725364, -0.418806, 0.996429, -0.072909, 0.042085, 0.996429, -0.042085, -0.072939, 0.546251, 0.725364, 0.418775, 0.996429, -0.072909, -0.042085, 0.546251, -0.725364, 0.418775, 0.996429, 0.042085, -0.072909, 0.996429, 0.072909, -0.042085, 0.996429, 0.0, 0.084201, 0.546281, -0.418775, -0.725364, 0.996429, 0.042085, 0.072939, 0.996429, -0.072909, -0.042085, 0.546251, 0.837581, 0.0, 0.996429, -0.084201, 0.0, 0.546251, 0.418775, -0.725364, 0.996429, 0.0, 0.084201, 0.996429, -0.042085, 0.072909, 0.546251, -0.418775, 0.725394, 0.996429, 0.0, -0.08417, 0.996429, 0.042085, -0.072909, 0.546251, -0.725364, -0.418775, 0.996429, 0.084201, 0.0, 0.996429, 0.072909, 0.042085, -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, 0.0, 0.0, -1.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.098392, 0.995117, 0.0, -0.006867, 0.831721, -0.555132, -0.008301, 0.999939, 0.0, 1.0, 0.0, 0.0, 0.999969, 0.0, 0.0, 0.999969, 0.0, 0.0, 1.0, 0.0, 0.0, 0.999969, 0.0, 0.0, 1.0, 0.0, 0.0, 0.999969, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.999969, 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, -0.284982, -0.958525, 0.0, -0.211005, -0.486068, 0.848048, -0.451949, -0.892026, 0.0, -0.284982, -0.958525, 0.0, -0.211005, -0.486038, -0.848048, -0.114353, -0.578753, -0.807428, 0.113102, 0.993561, 0.0, 0.0, 0.707083, -0.707083, 0.0, 1.0, 0.0, 0.113102, 0.993561, 0.0, 0.348003, 0.662893, -0.662893, 0.113102, 0.702567, -0.702567, 0.113102, 0.702567, -0.702567, 0.0, 0.0, -1.0, 0.0, 0.707083, -0.707083, 0.113102, 0.702567, -0.702567, 0.332591, 0.0, -0.943052, 0.113102, 0.0, -0.993561, 0.113102, 0.0, -0.993561, 0.0, -0.707083, -0.707083, 0.0, 0.0, -1.0, 0.113102, 0.0, -0.993561, 0.348003, -0.662893, -0.662893, 0.113102, -0.702567, -0.702567, 0.113102, -0.702567, -0.702567, 0.0, -1.0, 0.0, 0.0, -0.707083, -0.707083, 0.348003, -0.662893, -0.662893, 0.113102, -0.993561, 0.0, 0.113102, -0.702567, -0.702567, 0.113102, -0.993561, 0.0, 0.348003, -0.662893, 0.662893, 0.113102, -0.702567, 0.702567, 0.113102, -0.993561, 0.0, 0.0, -0.707083, 0.707083, 0.0, -1.0, 0.0, 0.348003, -0.662893, 0.662893, 0.113102, 0.0, 0.993561, 0.113102, -0.702567, 0.702567, 0.113102, -0.702567, 0.702567, 0.0, 0.0, 1.0, 0.0, -0.707083, 0.707083, 0.332591, 0.0, 0.943052, 0.113102, 0.702567, 0.702567, 0.113102, 0.0, 0.993561, 0.332591, 0.0, 0.943052, 0.722129, 0.0, 0.691702, 0.348003, 0.662893, 0.662893, 0.113102, 0.0, 0.993561, 0.0, 0.707083, 0.707083, 0.0, 0.0, 1.0, 0.722129, 0.691702, 0.0, 0.348003, 0.662893, 0.662893, 0.722129, 0.0, 0.691702, 0.113102, 0.702567, 0.702567, 0.0, 1.0, 0.0, 0.0, 0.707083, 0.707083, 0.722129, 0.0, 0.691702, 0.999969, 0.0, 0.0, 0.722129, 0.691702, 0.0, 0.348003, 0.662893, 0.662893, 0.113102, 0.993561, 0.0, 0.113102, 0.702567, 0.702567, 0.332591, 0.943052, 0.0, 0.348003, 0.662893, 0.662893, 0.722129, 0.691702, 0.0, 0.332591, 0.0, 0.943052, 0.348003, -0.662893, 0.662893, 0.722129, 0.0, 0.691702, 0.332591, -0.943052, 0.0, 0.722129, -0.691702, 0.0, 0.348003, -0.662893, 0.662893, 0.348003, -0.662893, 0.662893, 0.722129, -0.691702, 0.0, 0.722129, 0.0, 0.691702, 0.722129, -0.691702, 0.0, 0.999969, 0.0, 0.0, 0.722129, 0.0, 0.691702, 0.332591, 0.943052, 0.0, 0.722129, 0.691702, 0.0, 0.348003, 0.662893, -0.662893, 0.332591, 0.0, -0.943052, 0.348003, 0.662893, -0.662893, 0.722129, 0.0, -0.691702, 0.348003, 0.662893, -0.662893, 0.722129, 0.691702, 0.0, 0.722129, 0.0, -0.691702, 0.722129, 0.691702, 0.0, 0.999969, 0.0, 0.0, 0.722129, 0.0, -0.691702, 0.722129, 0.0, -0.691702, 0.999969, 0.0, 0.0, 0.722129, -0.691702, 0.0, 0.332591, 0.0, -0.943052, 0.722129, 0.0, -0.691702, 0.348003, -0.662893, -0.662893, 0.332591, -0.943052, 0.0, 0.348003, -0.662893, -0.662893, 0.722129, -0.691702, 0.0, 0.722129, -0.691702, 0.0, 0.348003, -0.662893, -0.662893, 0.722129, 0.0, -0.691702, 0.0, 0.707083, 0.707083, 0.113102, 0.993561, 0.0, 0.0, 1.0, 0.0, 0.113102, 0.993561, 0.0, 0.348003, 0.662893, 0.662893, 0.332591, 0.943052, 0.0, 0.0, 0.0, 1.0, 0.113102, 0.702567, 0.702567, 0.0, 0.707083, 0.707083, 0.113102, 0.702567, 0.702567, 0.332591, 0.0, 0.943052, 0.348003, 0.662893, 0.662893, 0.0, -0.707083, 0.707083, 0.113102, 0.0, 0.993561, 0.0, 0.0, 1.0, 0.113102, 0.0, 0.993561, 0.348003, -0.662893, 0.662893, 0.332591, 0.0, 0.943052, 0.0, -1.0, 0.0, 0.113102, -0.702567, 0.702567, 0.0, -0.707083, 0.707083, 0.113102, -0.993561, 0.0, 0.348003, -0.662893, 0.662893, 0.113102, -0.702567, 0.702567, 0.113102, -0.993561, 0.0, 0.348003, -0.662893, -0.662893, 0.332591, -0.943052, 0.0, 0.0, -0.707083, -0.707083, 0.113102, -0.993561, 0.0, 0.0, -1.0, 0.0, 0.113102, 0.0, -0.993561, 0.348003, -0.662893, -0.662893, 0.113102, -0.702567, -0.702567, 0.0, 0.0, -1.0, 0.113102, -0.702567, -0.702567, 0.0, -0.707083, -0.707083, 0.113102, 0.702567, -0.702567, 0.332591, 0.0, -0.943052, 0.113102, 0.0, -0.993561, 0.332591, 0.0, -0.943052, 0.348003, 0.662893, -0.662893, 0.722129, 0.0, -0.691702, 0.0, 0.707083, -0.707083, 0.113102, 0.0, -0.993561, 0.0, 0.0, -1.0, 0.722129, 0.691702, 0.0, 0.722129, 0.0, -0.691702, 0.348003, 0.662893, -0.662893, 0.0, 1.0, 0.0, 0.113102, 0.702567, -0.702567, 0.0, 0.707083, -0.707083, 0.722129, 0.0, -0.691702, 0.722129, 0.691702, 0.0, 1.0, 0.0, 0.0, 0.113102, 0.993561, 0.0, 0.348003, 0.662893, -0.662893, 0.113102, 0.702567, -0.702567, 0.332591, 0.943052, 0.0, 0.722129, 0.691702, 0.0, 0.348003, 0.662893, -0.662893, 0.332591, 0.0, -0.943052, 0.722129, 0.0, -0.691702, 0.348003, -0.662893, -0.662893, 0.332591, -0.943052, 0.0, 0.348003, -0.662893, -0.662893, 0.722129, -0.691702, 0.0, 0.348003, -0.662893, -0.662893, 0.722129, 0.0, -0.691702, 0.722129, -0.691702, 0.0, 0.722129, -0.691702, 0.0, 0.722129, 0.0, -0.691702, 1.0, 0.0, 0.0, 0.332591, 0.943052, 0.0, 0.348003, 0.662893, 0.662893, 0.722129, 0.691702, 0.0, 0.332591, 0.0, 0.943052, 0.722129, 0.0, 0.691702, 0.348003, 0.662893, 0.662893, 0.348003, 0.662893, 0.662893, 0.722129, 0.0, 0.691702, 0.722129, 0.691702, 0.0, 0.722129, 0.691702, 0.0, 0.722129, 0.0, 0.691702, 1.0, 0.0, 0.0, 0.722129, 0.0, 0.691702, 0.722129, -0.691702, 0.0, 1.0, 0.0, 0.0, 0.332591, 0.0, 0.943052, 0.348003, -0.662893, 0.662893, 0.722129, 0.0, 0.691702, 0.332591, -0.943052, 0.0, 0.722129, -0.691702, 0.0, 0.348003, -0.662893, 0.662893, 0.722129, -0.691702, 0.0, 0.722129, 0.0, 0.691702, 0.348003, -0.662893, 0.662893, 0.113102, 0.993561, 0.0, 0.0, 0.707083, -0.707083, 0.0, 1.0, 0.0, 0.113102, 0.993561, 0.0, 0.348003, 0.662893, -0.662893, 0.113102, 0.702567, -0.702567, 0.0, 0.707083, -0.707083, 0.113102, 0.0, -0.993561, 0.0, 0.0, -0.999969, 0.113102, 0.702567, -0.702567, 0.332591, 0.0, -0.943052, 0.113102, 0.0, -0.993561, 0.113102, 0.0, -0.993561, 0.0, -0.707083, -0.707083, 0.0, 0.0, -0.999969, 0.113102, 0.0, -0.993561, 0.348003, -0.662893, -0.662893, 0.113102, -0.702567, -0.702567, 0.0, -0.707083, -0.707083, 0.113102, -0.993561, 0.0, 0.0, -1.0, 0.0, 0.348003, -0.662893, -0.662893, 0.113102, -0.993561, 0.0, 0.113102, -0.702567, -0.702567, 0.113102, -0.993561, 0.0, 0.348003, -0.662893, 0.662893, 0.113102, -0.702567, 0.702567, 0.113102, -0.993561, 0.0, 0.0, -0.707083, 0.707083, 0.0, -1.0, 0.0, 0.348003, -0.662893, 0.662893, 0.113102, 0.0, 0.993561, 0.113102, -0.702567, 0.702567, 0.113102, -0.702567, 0.702567, 0.0, 0.0, 1.0, 0.0, -0.707083, 0.707083, 0.332591, 0.0, 0.943052, 0.113102, 0.702567, 0.702567, 0.113102, 0.0, 0.993561, 0.332591, 0.0, 0.943052, 0.722129, 0.0, 0.691702, 0.348003, 0.662893, 0.662893, 0.0, 0.0, 1.0, 0.113102, 0.702567, 0.702567, 0.0, 0.707083, 0.707083, 0.722129, 0.691702, 0.0, 0.348003, 0.662893, 0.662893, 0.722129, 0.0, 0.691702, 0.0, 0.707083, 0.707083, 0.113102, 0.993561, 0.0, 0.0, 1.0, 0.0, 0.722129, 0.0, 0.691702, 1.0, 0.0, 0.0, 0.722129, 0.691702, 0.0, 0.348003, 0.662893, 0.662893, 0.113102, 0.993561, 0.0, 0.113102, 0.702567, 0.702567, 0.332591, 0.943052, 0.0, 0.348003, 0.662893, 0.662893, 0.722129, 0.691702, 0.0, 0.332591, 0.0, 0.943052, 0.348003, -0.662893, 0.662893, 0.722129, 0.0, 0.691702, 0.332591, -0.943052, 0.0, 0.722129, -0.691702, 0.0, 0.348003, -0.662893, 0.662893, 0.348003, -0.662893, 0.662893, 0.722129, -0.691702, 0.0, 0.722129, 0.0, 0.691702, 0.722129, -0.691702, 0.0, 1.0, 0.0, 0.0, 0.722129, 0.0, 0.691702, 0.332591, 0.943052, 0.0, 0.722129, 0.691702, 0.0, 0.348003, 0.662893, -0.662893, 0.332591, 0.0, -0.943052, 0.348003, 0.662893, -0.662893, 0.722129, 0.0, -0.691702, 0.348003, 0.662893, -0.662893, 0.722129, 0.691702, 0.0, 0.722129, 0.0, -0.691702, 0.722129, 0.691702, 0.0, 1.0, 0.0, 0.0, 0.722129, 0.0, -0.691702, 0.722129, 0.0, -0.691702, 1.0, 0.0, 0.0, 0.722129, -0.691702, 0.0, 0.332591, 0.0, -0.943052, 0.722129, 0.0, -0.691702, 0.348003, -0.662893, -0.662893, 0.332591, -0.943052, 0.0, 0.348003, -0.662893, -0.662893, 0.722129, -0.691702, 0.0, 0.722129, -0.691702, 0.0, 0.348003, -0.662893, -0.662893, 0.722129, 0.0, -0.691702, 0.0, 1.0, 0.0, 0.113102, 0.702567, 0.702567, 0.113102, 0.993561, 0.0, 0.113102, 0.993561, 0.0, 0.348003, 0.662893, 0.662893, 0.332591, 0.943052, 0.0, 0.0, 0.0, 1.0, 0.113102, 0.702567, 0.702567, 0.0, 0.707083, 0.707083, 0.113102, 0.702567, 0.702567, 0.332591, 0.0, 0.943052, 0.348003, 0.662893, 0.662893, 0.0, 0.0, 1.0, 0.113102, -0.702567, 0.702567, 0.113102, 0.0, 0.993561, 0.113102, 0.0, 0.993561, 0.348003, -0.662893, 0.662893, 0.332591, 0.0, 0.943052, 0.0, -1.0, 0.0, 0.113102, -0.702567, 0.702567, 0.0, -0.707083, 0.707083, 0.113102, -0.993561, 0.0, 0.348003, -0.662893, 0.662893, 0.113102, -0.702567, 0.702567, 0.113102, -0.993561, 0.0, 0.348003, -0.662893, -0.662893, 0.332591, -0.943052, 0.0, 0.0, -1.0, 0.0, 0.113102, -0.702567, -0.702567, 0.113102, -0.993561, 0.0, 0.113102, 0.0, -0.993561, 0.348003, -0.662893, -0.662893, 0.113102, -0.702567, -0.702567, 0.0, 0.0, -0.999969, 0.113102, -0.702567, -0.702567, 0.0, -0.707083, -0.707083, 0.113102, 0.702567, -0.702567, 0.332591, 0.0, -0.943052, 0.113102, 0.0, -0.993561, 0.332591, 0.0, -0.943052, 0.348003, 0.662893, -0.662893, 0.722129, 0.0, -0.691702, 0.0, 0.707083, -0.707083, 0.113102, 0.0, -0.993561, 0.0, 0.0, -0.999969, 0.722129, 0.691702, 0.0, 0.722129, 0.0, -0.691702, 0.348003, 0.662893, -0.662893, 0.0, 1.0, 0.0, 0.113102, 0.702567, -0.702567, 0.0, 0.707083, -0.707083, 0.722129, 0.0, -0.691702, 0.722129, 0.691702, 0.0, 1.0, 0.0, 0.0, 0.113102, 0.993561, 0.0, 0.348003, 0.662893, -0.662893, 0.113102, 0.702567, -0.702567, 0.332591, 0.943052, 0.0, 0.722129, 0.691702, 0.0, 0.348003, 0.662893, -0.662893, 0.332591, 0.0, -0.943052, 0.722129, 0.0, -0.691702, 0.348003, -0.662893, -0.662893, 0.332591, -0.943052, 0.0, 0.348003, -0.662893, -0.662893, 0.722129, -0.691702, 0.0, 0.348003, -0.662893, -0.662893, 0.722129, 0.0, -0.691702, 0.722129, -0.691702, 0.0, 0.722129, -0.691702, 0.0, 0.722129, 0.0, -0.691702, 1.0, 0.0, 0.0, 0.332591, 0.943052, 0.0, 0.348003, 0.662893, 0.662893, 0.722129, 0.691702, 0.0, 0.332591, 0.0, 0.943052, 0.722129, 0.0, 0.691702, 0.348003, 0.662893, 0.662893, 0.348003, 0.662893, 0.662893, 0.722129, 0.0, 0.691702, 0.722129, 0.691702, 0.0, 0.722129, 0.691702, 0.0, 0.722129, 0.0, 0.691702, 1.0, 0.0, 0.0, 0.722129, 0.0, 0.691702, 0.722129, -0.691702, 0.0, 1.0, 0.0, 0.0, 0.332591, 0.0, 0.943052, 0.348003, -0.662893, 0.662893, 0.722129, 0.0, 0.691702, 0.332591, -0.943052, 0.0, 0.722129, -0.691702, 0.0, 0.348003, -0.662893, 0.662893, 0.722129, -0.691702, 0.0, 0.722129, 0.0, 0.691702, 0.348003, -0.662893, 0.662893, 0.351543, -0.936155, 0.0, 0.989532, -0.143712, 0.012421, 0.372631, -0.897366, 0.236274, 0.426313, -0.629536, 0.649525, 0.984405, -0.001099, 0.175756, 0.4626, -0.039338, 0.885678, 0.984405, -0.001099, -0.175756, 0.426344, -0.629536, -0.649525, 0.4626, -0.039338, -0.885678, 0.989532, -0.143712, -0.012421, 0.351543, -0.936155, 0.0, 0.372631, -0.897366, -0.236274, 0.372631, -0.897366, 0.236274, 0.964873, -0.233192, 0.120731, 0.426313, -0.629536, 0.649525, 0.984405, -0.001099, 0.175756, 0.481429, 0.264534, 0.835566, 0.4626, -0.039338, 0.885678, 0.48146, 0.264534, -0.835566, 0.984405, -0.001099, -0.175756, 0.4626, -0.039338, -0.885678, 0.964873, -0.233192, -0.120731, 0.372631, -0.897366, -0.236274, 0.426344, -0.629536, -0.649525, -0.144505, -0.967681, 0.20661, 0.021668, -0.999756, 0.0, 0.024903, -0.964049, 0.264473, -0.145054, -0.058229, 0.987701, 0.036317, -0.703421, 0.70983, 0.0412, -0.071078, 0.996612, 0.036317, -0.703421, -0.70983, -0.145054, -0.058229, -0.987701, 0.0412, -0.071078, -0.996612, 0.021668, -0.999756, 0.0, -0.144505, -0.967681, -0.20661, 0.024903, -0.964049, -0.264473, -0.15125, -0.718619, 0.678701, 0.024903, -0.964049, 0.264473, 0.036317, -0.703421, 0.70983, 0.038087, 0.29078, 0.956023, -0.145054, -0.058229, 0.987701, 0.0412, -0.071078, 0.996612, -0.145054, -0.058229, -0.987701, 0.038087, 0.29078, -0.956023, 0.0412, -0.071078, -0.996612, 0.024903, -0.964049, -0.264473, -0.15125, -0.718619, -0.678701, 0.036317, -0.703421, -0.70983, -0.310068, -0.638569, 0.704276, -0.144505, -0.967681, 0.20661, -0.15125, -0.718619, 0.678701, -0.252785, 0.032075, 0.966979, -0.145054, -0.058229, 0.987701, -0.120914, 0.305063, 0.944609, -0.145054, -0.058229, -0.987701, -0.252785, 0.032075, -0.966979, -0.120914, 0.305063, -0.944609, -0.144505, -0.967681, -0.20661, -0.310068, -0.638569, -0.704276, -0.15125, -0.718619, -0.678701, -0.144505, -0.967681, 0.20661, -0.24427, -0.969695, 0.0, -0.147069, -0.989105, 0.0, -0.145054, -0.058229, 0.987701, -0.310068, -0.638569, 0.704276, -0.15125, -0.718619, 0.678701, -0.15125, -0.718619, -0.678701, -0.310068, -0.638569, -0.704276, -0.145054, -0.058229, -0.987701, -0.147069, -0.989105, 0.0, -0.24427, -0.969695, 0.0, -0.144505, -0.967681, -0.20661, 0.426344, -0.629536, -0.649525, 0.024903, -0.964049, -0.264473, 0.036317, -0.703421, -0.70983, 0.038087, 0.29078, -0.956023, 0.4626, -0.039338, -0.885678, 0.0412, -0.071078, -0.996612, 0.4626, -0.039338, 0.885678, 0.038087, 0.29078, 0.956023, 0.0412, -0.071078, 0.996612, 0.024903, -0.964049, 0.264473, 0.426313, -0.629536, 0.649525, 0.036317, -0.703421, 0.70983, 0.372631, -0.897366, -0.236274, 0.021668, -0.999756, 0.0, 0.024903, -0.964049, -0.264473, 0.4626, -0.039338, -0.885678, 0.036317, -0.703421, -0.70983, 0.0412, -0.071078, -0.996612, 0.036317, -0.703421, 0.70983, 0.4626, -0.039338, 0.885678, 0.0412, -0.071078, 0.996612, 0.021668, -0.999756, 0.0, 0.372631, -0.897366, 0.236274, 0.024903, -0.964049, 0.264473, 0.997223, -0.013337, 0.073244, 0.821589, 0.028413, 0.569323, 0.984405, -0.001099, -0.175756, 0.989532, -0.143712, -0.012421, 0.791864, 0.490677, 0.363506, 0.746178, 0.653859, 0.125004, 0.988189, -0.153142, 0.0, 0.746178, 0.653859, -0.125004, 0.989532, -0.143712, 0.012421, 0.989532, -0.143712, 0.012421, 0.791864, 0.490677, -0.363506, 0.964873, -0.233192, 0.120731, 0.964873, -0.233192, -0.120731, 0.821589, 0.028413, 0.569323, 0.791864, 0.490677, 0.363506, 0.988189, -0.153142, 0.0, 0.746178, 0.653859, 0.125004, 0.734397, 0.678701, 0.0, 0.964873, -0.233192, 0.120731, 0.821589, 0.028413, -0.569323, 0.984405, -0.001099, 0.175756, 0.997223, -0.013337, -0.073214, 0.821589, 0.028413, -0.569323, 0.779565, -0.164495, -0.604297, 1.0, 0.0, 0.0, 0.999969, 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, 0.999969, 0.0, 0.0, 0.999969, 0.0, 0.0, 1.0, 0.0, 0.0, 0.999969, 0.0, 0.0, -0.999969, 0.0, 0.0, -1.0, 0.0, 0.0, -0.999969, 0.0, 0.0, -1.0, 0.0, 0.0, -0.999969, 0.0, 0.0, -0.999969, 0.0, 0.0, 0.351543, -0.936155, 0.0, 0.989532, -0.143712, -0.012421, 0.988189, -0.153142, 0.0, 0.426344, -0.629536, -0.649525, 0.984405, -0.001099, -0.175726, 0.964904, -0.233192, -0.120731, 0.426344, -0.629536, 0.649525, 0.984405, -0.001099, 0.175756, 0.4626, -0.039338, 0.885678, 0.351543, -0.936155, 0.0, 0.989532, -0.143712, 0.012421, 0.372631, -0.897366, 0.236274, 0.372631, -0.897366, -0.236274, 0.964904, -0.233192, -0.120731, 0.989532, -0.143712, -0.012421, 0.481429, 0.264534, -0.835566, 0.984405, -0.001099, -0.175726, 0.4626, -0.039338, -0.885678, 0.481429, 0.264534, 0.835566, 0.984405, -0.001099, 0.175756, 0.997223, -0.013337, -0.073214, 0.372631, -0.897366, 0.236274, 0.964904, -0.233192, 0.120731, 0.426344, -0.629536, 0.649525, 0.021668, -0.999756, 0.0, -0.144505, -0.967681, -0.20661, 0.024903, -0.964049, -0.264473, 0.036317, -0.703421, -0.70983, -0.145054, -0.058229, -0.987701, 0.0412, -0.071078, -0.996612, 0.036317, -0.703421, 0.70983, -0.145054, -0.058229, 0.987701, -0.15125, -0.718619, 0.678701, 0.021668, -0.999756, 0.0, -0.144505, -0.967681, 0.20661, -0.147069, -0.989105, 0.0, 0.024903, -0.964049, -0.264473, -0.15125, -0.718619, -0.678701, 0.036317, -0.703421, -0.70983, 0.038087, 0.29078, -0.956023, -0.145054, -0.058229, -0.987701, -0.120914, 0.305063, -0.944609, 0.038087, 0.29078, 0.956023, -0.145054, -0.058229, 0.987701, 0.0412, -0.071078, 0.996612, 0.024903, -0.964049, 0.264473, -0.15125, -0.718619, 0.678701, -0.144505, -0.967681, 0.20661, -0.144505, -0.967681, -0.20661, -0.310068, -0.638569, -0.704276, -0.15125, -0.718619, -0.678701, -0.145054, -0.058229, -0.987701, -0.252785, 0.032075, -0.966979, -0.120914, 0.305063, -0.944609, -0.145054, -0.058229, 0.987701, -0.252785, 0.032075, 0.966979, -0.310068, -0.638569, 0.704276, -0.144505, -0.967681, 0.20661, -0.310068, -0.638569, 0.704276, -0.24427, -0.969695, 0.0, -0.144505, -0.967681, -0.20661, -0.147069, -0.989105, 0.0, -0.24427, -0.969695, 0.0, -0.145054, -0.058229, -0.987701, -0.15125, -0.718619, -0.678701, -0.310068, -0.638569, -0.704276, -0.15125, -0.718619, 0.678701, -0.145054, -0.058229, 0.987701, -0.310068, -0.638569, 0.704276, -0.147069, -0.989105, 0.0, -0.144505, -0.967681, 0.20661, -0.24427, -0.969695, 0.0, 0.024903, -0.964049, 0.264473, 0.426344, -0.629536, 0.649525, 0.036317, -0.703421, 0.70983, 0.038087, 0.29078, 0.956023, 0.4626, -0.039338, 0.885678, 0.481429, 0.264534, 0.835566, 0.038087, 0.29078, -0.956023, 0.4626, -0.039338, -0.885678, 0.0412, -0.071078, -0.996612, 0.024903, -0.964049, -0.264473, 0.426344, -0.629536, -0.649525, 0.372631, -0.897366, -0.236274, 0.021668, -0.999756, 0.0, 0.372631, -0.897366, 0.236274, 0.024903, -0.964049, 0.264473, 0.036317, -0.703421, 0.70983, 0.4626, -0.039338, 0.885678, 0.0412, -0.071078, 0.996612, 0.036317, -0.703421, -0.70983, 0.4626, -0.039338, -0.885678, 0.426344, -0.629536, -0.649525, 0.021668, -0.999756, 0.0, 0.372631, -0.897366, -0.236274, 0.351543, -0.936155, 0.0, 0.821589, 0.028413, -0.569353, 0.997223, -0.013337, -0.073214, 0.984405, -0.001099, 0.175756, 0.989532, -0.143712, 0.012421, 0.791864, 0.490677, -0.363506, 0.964904, -0.233192, 0.120731, 0.746178, 0.653859, 0.125004, 0.988189, -0.153142, 0.0, 0.989532, -0.143712, -0.012421, 0.791864, 0.490677, 0.363506, 0.989532, -0.143712, -0.012421, 0.964904, -0.233192, -0.120731, 0.964904, -0.233192, 0.120731, 0.821589, 0.028413, -0.569353, 0.984405, -0.001099, 0.175756, 0.988189, -0.153142, 0.0, 0.746178, 0.653859, -0.125034, 0.989532, -0.143712, 0.012421, 0.821589, 0.028413, 0.569353, 0.964904, -0.233192, -0.120731, 0.984405, -0.001099, -0.175726, 0.997223, -0.013337, 0.073214, 0.821589, 0.028413, 0.569353, 0.984405, -0.001099, -0.175726, 0.999969, 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, 0.999969, 0.0, 0.0, 0.999969, 0.0, 0.0, 0.999969, 0.0, 0.0, 1.0, 0.0, 0.0, -0.999969, 0.0, 0.0, -1.0, 0.0, 0.0, -1.0, 0.0, 0.0, -1.0, 0.0, 0.0, -0.999969, 0.0, 0.0, -0.999969, 0.0, 0.0, 0.351543, -0.936155, 0.0, 0.989532, -0.143712, 0.012421, 0.372631, -0.897366, 0.236274, 0.426344, -0.629536, 0.649525, 0.984405, -0.001099, 0.175756, 0.4626, -0.039338, 0.885678, 0.984405, -0.001099, -0.175726, 0.426344, -0.629536, -0.649525, 0.4626, -0.039338, -0.885678, 0.989532, -0.143712, -0.012421, 0.351543, -0.936155, 0.0, 0.372631, -0.897366, -0.236274, 0.372631, -0.897366, 0.236274, 0.964904, -0.233192, 0.120731, 0.426344, -0.629536, 0.649525, 0.984405, -0.001099, 0.175756, 0.481429, 0.264534, 0.835566, 0.4626, -0.039338, 0.885678, 0.48146, 0.264534, -0.835566, 0.984405, -0.001099, -0.175726, 0.4626, -0.039338, -0.885678, 0.964904, -0.233192, -0.120731, 0.372631, -0.897366, -0.236274, 0.426344, -0.629536, -0.649525, -0.144505, -0.967681, 0.20661, 0.021668, -0.999756, 0.0, 0.024903, -0.964049, 0.264473, -0.145054, -0.058229, 0.987701, 0.036317, -0.703421, 0.70983, 0.0412, -0.071078, 0.996612, 0.036317, -0.703421, -0.70983, -0.145054, -0.058229, -0.987701, 0.0412, -0.071078, -0.996612, 0.021668, -0.999756, 0.0, -0.144505, -0.967681, -0.20661, 0.024903, -0.964049, -0.264473, -0.15125, -0.718619, 0.678701, 0.024903, -0.964049, 0.264473, 0.036317, -0.703421, 0.70983, 0.038087, 0.29078, 0.956023, -0.145054, -0.058229, 0.987701, 0.0412, -0.071078, 0.996612, -0.145054, -0.058229, -0.987701, 0.038087, 0.29078, -0.956023, 0.0412, -0.071078, -0.996612, 0.024903, -0.964049, -0.264473, -0.15125, -0.718619, -0.678701, 0.036317, -0.703421, -0.70983, -0.310068, -0.638569, 0.704276, -0.144505, -0.967681, 0.20661, -0.15125, -0.718619, 0.678701, -0.252785, 0.032075, 0.966979, -0.145054, -0.058229, 0.987701, -0.120914, 0.305063, 0.944609, -0.145054, -0.058229, -0.987701, -0.252785, 0.032075, -0.966979, -0.120914, 0.305063, -0.944609, -0.144505, -0.967681, -0.20661, -0.310068, -0.638569, -0.704276, -0.15125, -0.718619, -0.678701, -0.144505, -0.967681, 0.20661, -0.24427, -0.969695, 0.0, -0.147069, -0.989105, 0.0, -0.145054, -0.058229, 0.987701, -0.310068, -0.638569, 0.704276, -0.15125, -0.718619, 0.678701, -0.15125, -0.718619, -0.678701, -0.310068, -0.638569, -0.704276, -0.145054, -0.058229, -0.987701, -0.147069, -0.989105, 0.0, -0.24427, -0.969695, 0.0, -0.144505, -0.967681, -0.20661, 0.426344, -0.629536, -0.649525, 0.024903, -0.964049, -0.264473, 0.036317, -0.703421, -0.70983, 0.038087, 0.29078, -0.956023, 0.4626, -0.039338, -0.885678, 0.0412, -0.071078, -0.996612, 0.4626, -0.039338, 0.885678, 0.038087, 0.29078, 0.956023, 0.0412, -0.071078, 0.996612, 0.024903, -0.964049, 0.264473, 0.426344, -0.629536, 0.649525, 0.036317, -0.703421, 0.70983, 0.372631, -0.897366, -0.236274, 0.021668, -0.999756, 0.0, 0.024903, -0.964049, -0.264473, 0.4626, -0.039338, -0.885678, 0.036317, -0.703421, -0.70983, 0.0412, -0.071078, -0.996612, 0.036317, -0.703421, 0.70983, 0.4626, -0.039338, 0.885678, 0.0412, -0.071078, 0.996612, 0.021668, -0.999756, 0.0, 0.372631, -0.897366, 0.236274, 0.024903, -0.964049, 0.264473, 0.997223, -0.013337, 0.073214, 0.821589, 0.028413, 0.569353, 0.984405, -0.001099, -0.175726, 0.989532, -0.143712, -0.012421, 0.791864, 0.490677, 0.363506, 0.746178, 0.653859, 0.125004, 0.988189, -0.153142, 0.0, 0.746178, 0.653859, -0.125004, 0.989532, -0.143712, 0.012421, 0.989532, -0.143712, 0.012421, 0.791864, 0.490677, -0.363506, 0.964904, -0.233192, 0.120731, 0.964904, -0.233192, -0.120731, 0.821589, 0.028413, 0.569353, 0.791864, 0.490677, 0.363506, 0.988189, -0.153142, 0.0, 0.746178, 0.653859, 0.125004, 0.734397, 0.678701, 0.0, 0.964904, -0.233192, 0.120731, 0.821589, 0.028413, -0.569323, 0.984405, -0.001099, 0.175756, 0.997223, -0.013337, -0.073214, 0.821589, 0.028413, -0.569323, 0.779595, -0.164495, -0.604236, 1.0, 0.0, 0.0, 0.999969, 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, 0.999969, 0.0, 0.0, 0.999969, 0.0, 0.0, 1.0, 0.0, 0.0, 0.999969, 0.0, 0.0, -0.999969, 0.0, 0.0, -1.0, 0.0, 0.0, -1.0, 0.0, 0.0, -1.0, 0.0, 0.0, -0.999969, 0.0, 0.0, -1.0, 0.0, 0.0, 0.351543, -0.936155, 0.0, 0.989532, -0.143712, -0.012421, 0.988189, -0.153142, 0.0, 0.426344, -0.629536, -0.649525, 0.984405, -0.001099, -0.175726, 0.964904, -0.233192, -0.120731, 0.426313, -0.629536, 0.649525, 0.984405, -0.001099, 0.175756, 0.4626, -0.039338, 0.885678, 0.351543, -0.936155, 0.0, 0.989532, -0.143712, 0.012421, 0.372631, -0.897366, 0.236274, 0.372631, -0.897366, -0.236274, 0.964904, -0.233192, -0.120731, 0.989532, -0.143712, -0.012421, 0.481429, 0.264534, -0.835566, 0.984405, -0.001099, -0.175726, 0.4626, -0.039338, -0.885678, 0.48146, 0.264534, 0.835566, 0.984405, -0.001099, 0.175756, 0.997223, -0.013337, -0.073214, 0.372631, -0.897366, 0.236274, 0.964873, -0.233192, 0.120731, 0.426313, -0.629536, 0.649525, 0.021668, -0.999756, 0.0, -0.144505, -0.967681, -0.20661, 0.024903, -0.964049, -0.264473, 0.036317, -0.703421, -0.70983, -0.145054, -0.058229, -0.987701, 0.0412, -0.071078, -0.996612, 0.036317, -0.703421, 0.70983, -0.145054, -0.058229, 0.987701, -0.15125, -0.718619, 0.678701, 0.021668, -0.999756, 0.0, -0.144505, -0.967681, 0.20661, -0.147069, -0.989105, 0.0, 0.024903, -0.964049, -0.264473, -0.15125, -0.718619, -0.678701, 0.036317, -0.703421, -0.70983, 0.038087, 0.29078, -0.956023, -0.145054, -0.058229, -0.987701, -0.120914, 0.305063, -0.944609, 0.038087, 0.29078, 0.956023, -0.145054, -0.058229, 0.987701, 0.0412, -0.071078, 0.996612, 0.024903, -0.964049, 0.264473, -0.15125, -0.718619, 0.678701, -0.144505, -0.967681, 0.20661, -0.144505, -0.967681, -0.20661, -0.310068, -0.638569, -0.704276, -0.15125, -0.718619, -0.678701, -0.145054, -0.058229, -0.987701, -0.252785, 0.032075, -0.966979, -0.120914, 0.305063, -0.944609, -0.145054, -0.058229, 0.987701, -0.252785, 0.032075, 0.966979, -0.310068, -0.638569, 0.704276, -0.144505, -0.967681, 0.20661, -0.310068, -0.638569, 0.704276, -0.24427, -0.969695, 0.0, -0.144505, -0.967681, -0.20661, -0.147069, -0.989105, 0.0, -0.24427, -0.969695, 0.0, -0.145054, -0.058229, -0.987701, -0.15125, -0.718619, -0.678701, -0.310068, -0.638569, -0.704276, -0.15125, -0.718619, 0.678701, -0.145054, -0.058229, 0.987701, -0.310068, -0.638569, 0.704276, -0.147069, -0.989105, 0.0, -0.144505, -0.967681, 0.20661, -0.24427, -0.969695, 0.0, 0.024903, -0.964049, 0.264473, 0.426313, -0.629536, 0.649525, 0.036317, -0.703421, 0.70983, 0.038087, 0.29078, 0.956023, 0.4626, -0.039338, 0.885678, 0.48146, 0.264534, 0.835566, 0.038087, 0.29078, -0.956023, 0.4626, -0.039338, -0.885678, 0.0412, -0.071078, -0.996612, 0.024903, -0.964049, -0.264473, 0.426344, -0.629536, -0.649525, 0.372631, -0.897366, -0.236274, 0.021668, -0.999756, 0.0, 0.372631, -0.897366, 0.236274, 0.024903, -0.964049, 0.264473, 0.036317, -0.703421, 0.70983, 0.4626, -0.039338, 0.885678, 0.0412, -0.071078, 0.996612, 0.036317, -0.703421, -0.70983, 0.4626, -0.039338, -0.885678, 0.426344, -0.629536, -0.649525, 0.021668, -0.999756, 0.0, 0.372631, -0.897366, -0.236274, 0.351543, -0.936155, 0.0, 0.821589, 0.028413, -0.569323, 0.997223, -0.013337, -0.073214, 0.984405, -0.001099, 0.175756, 0.989532, -0.143712, 0.012421, 0.791864, 0.490677, -0.363506, 0.964873, -0.233192, 0.120731, 0.746178, 0.653859, 0.125004, 0.988189, -0.153142, 0.0, 0.989532, -0.143712, -0.012421, 0.791864, 0.490677, 0.363506, 0.989532, -0.143712, -0.012421, 0.964904, -0.233192, -0.120731, 0.964873, -0.233192, 0.120731, 0.821589, 0.028413, -0.569323, 0.984405, -0.001099, 0.175756, 0.988189, -0.153142, 0.0, 0.746178, 0.653859, -0.125004, 0.989532, -0.143712, 0.012421, 0.821589, 0.028413, 0.569353, 0.964904, -0.233192, -0.120731, 0.984405, -0.001099, -0.175726, 0.997223, -0.013337, 0.073214, 0.821589, 0.028413, 0.569353, 0.984405, -0.001099, -0.175726, 0.999969, 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, 0.999969, 3.1e-05, 0.0, 0.999969, 0.0, 0.0, 0.999969, 3.1e-05, 0.0, 1.0, 0.0, 0.0, -0.999969, 0.0, 0.0, -1.0, 0.0, 0.0, -1.0, 0.0, 0.0, -1.0, 0.0, 0.0, -0.999969, 0.0, 0.0, -0.999969, 0.0, 0.0, -0.01886, 0.019898, 0.999603, 0.028077, 0.184484, 0.982421, -0.174413, -0.337321, 0.925077, 0.432539, 0.372875, 0.820887, 0.209754, 0.500626, 0.839839, 0.175573, 0.284371, 0.942473, 0.402417, -0.759148, 0.511612, 0.098361, -0.958647, 0.266945, 0.294504, -0.936399, 0.19071, 0.78692, -0.255959, 0.561418, 0.432539, 0.372875, 0.820887, 0.477187, -0.248085, 0.843043, 0.225196, -0.974303, 0.0, 0.098361, -0.958647, 0.266945, 0.08887, -0.996033, 0.0, 0.124485, -0.723075, 0.679434, 0.477187, -0.248085, 0.843043, 0.145543, -0.211615, 0.96643, 0.296854, -0.954894, 0.0, 0.294504, -0.936399, 0.19071, 0.225196, -0.974303, 0.0, 0.551866, -0.764763, 0.332469, 0.477187, -0.248085, 0.843043, 0.402417, -0.759148, 0.511612, 0.699545, 0.435926, 0.566179, 0.389386, 0.64742, 0.65511, 0.432539, 0.372875, 0.820887, 0.354747, -0.925748, 0.130802, 0.402417, -0.759148, 0.511612, 0.294504, -0.936399, 0.19071, 0.699545, 0.435926, 0.566179, 0.58977, 0.80755, 0.0, 0.538469, 0.697775, 0.472335, 0.551866, -0.764763, 0.332469, 0.435896, -0.89996, 0.0, 0.660695, -0.750633, 0.0, 0.699545, 0.435926, 0.566179, 0.960326, -0.278787, 0.0, 0.880825, 0.473403, 0.0, 0.78692, -0.255959, 0.561418, 0.660695, -0.750633, 0.0, 0.960326, -0.278787, 0.0, -0.118229, -0.387951, 0.914029, 0.124485, -0.723075, 0.679434, 0.145543, -0.211615, 0.96643, -0.038087, -0.977264, 0.208472, 0.08887, -0.996033, 0.0, 0.098361, -0.958647, 0.266945, 0.477187, -0.248085, 0.843043, 0.175573, 0.284371, 0.942473, 0.145543, -0.211615, 0.96643, -0.142918, -0.793634, 0.591327, 0.098361, -0.958647, 0.266945, 0.124485, -0.723075, 0.679434, 0.028077, 0.184484, 0.982421, 0.175573, 0.284371, 0.942473, 0.209754, 0.500626, 0.839839, -0.01886, 0.019898, 0.999603, 0.145543, -0.211615, 0.96643, 0.175573, 0.284371, 0.942473, -0.118229, -0.387951, 0.914029, -0.174413, -0.337321, 0.925077, -0.207434, -0.608478, 0.765923, -0.1554, -0.836787, 0.524979, -0.118229, -0.387951, 0.914029, -0.207434, -0.608478, 0.765923, -0.038087, -0.977264, 0.208472, -0.1554, -0.836787, 0.524979, -0.043825, -0.999023, 0.0, -0.038087, -0.977264, 0.208472, -0.043825, -0.999023, 0.0, 0.019929, -0.999786, 0.0, -0.01886, 0.019898, -0.999603, -0.174413, -0.337321, -0.925077, 0.028077, 0.184484, -0.982421, 0.209754, 0.500626, -0.839839, 0.432539, 0.372875, -0.820887, 0.175573, 0.284341, -0.942473, 0.098361, -0.958647, -0.266945, 0.402417, -0.759117, -0.511612, 0.294504, -0.936399, -0.19071, 0.432539, 0.372875, -0.820887, 0.78692, -0.255959, -0.561418, 0.477187, -0.248085, -0.843043, 0.098361, -0.958647, -0.266945, 0.225196, -0.974303, 0.0, 0.08887, -0.996033, 0.0, 0.124485, -0.723075, -0.679434, 0.477187, -0.248085, -0.843043, 0.402417, -0.759117, -0.511612, 0.294504, -0.936399, -0.19071, 0.296854, -0.954894, 0.0, 0.225196, -0.974303, 0.0, 0.551866, -0.764763, -0.332469, 0.477187, -0.248085, -0.843043, 0.78692, -0.255959, -0.561418, 0.389386, 0.64742, -0.65511, 0.699545, 0.435926, -0.566179, 0.432539, 0.372875, -0.820887, 0.402417, -0.759117, -0.511612, 0.354747, -0.925748, -0.130802, 0.294504, -0.936399, -0.19071, 0.58977, 0.80755, 0.0, 0.699545, 0.435926, -0.566179, 0.538469, 0.697775, -0.472335, 0.551866, -0.764763, -0.332469, 0.435896, -0.89996, 0.0, 0.354747, -0.925748, -0.130802, 0.699545, 0.435926, -0.566179, 0.960326, -0.278787, 0.0, 0.78692, -0.255959, -0.561418, 0.78692, -0.255959, -0.561418, 0.660695, -0.750633, 0.0, 0.551866, -0.764763, -0.332469, -0.118229, -0.387951, -0.914029, 0.124485, -0.723075, -0.679434, -0.142918, -0.793634, -0.591327, -0.038087, -0.977264, -0.208472, 0.08887, -0.996033, 0.0, 0.019929, -0.999786, 0.0, 0.477187, -0.248085, -0.843043, 0.175573, 0.284341, -0.942473, 0.432539, 0.372875, -0.820887, 0.098361, -0.958647, -0.266945, -0.142918, -0.793634, -0.591327, 0.124485, -0.723075, -0.679434, 0.175573, 0.284341, -0.942473, 0.028077, 0.184484, -0.982421, 0.209754, 0.500626, -0.839839, -0.01886, 0.019898, -0.999603, 0.145543, -0.211615, -0.96643, -0.118229, -0.387951, -0.914029, -0.174413, -0.337321, -0.925077, -0.118229, -0.387951, -0.914029, -0.207434, -0.608478, -0.765954, -0.118229, -0.387951, -0.914029, -0.1554, -0.836787, -0.524979, -0.207434, -0.608478, -0.765954, -0.1554, -0.836787, -0.524979, -0.038087, -0.977264, -0.208472, -0.043825, -0.999023, 0.0, -0.038087, -0.977264, -0.208472, 0.019929, -0.999786, 0.0, -0.043825, -0.999023, 0.0, 0.354747, -0.925748, 0.130802, 0.296854, -0.954894, 0.0, 0.435896, -0.89996, 0.0, 0.354747, -0.925748, -0.130802, 0.435896, -0.89996, 0.0, 0.296854, -0.954894, 0.0, 0.039216, 0.510758, 0.858821, -0.034028, -0.03766, 0.998688, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, -0.036103, -0.526536, 0.849361, 0.0, -0.499985, 0.866024, 0.0, 1.0, 0.0, -0.020692, 0.857875, 0.513413, 0.026276, 0.858425, 0.512223, 0.0, -0.499985, 0.866024, -0.034822, -0.873287, 0.485916, 0.0, -0.866024, 0.499985, 0.026276, 0.858425, 0.512223, -0.028474, 0.473006, 0.880581, 0.039216, 0.510758, 0.858821, 0.0, -0.866024, 0.499985, -0.032868, -0.999451, 0.0, 0.0, -1.0, 0.0, -0.036103, -0.526536, 0.849361, -0.085025, -0.849239, 0.521104, -0.034822, -0.873287, 0.485916, -0.020692, 0.857875, 0.513413, -0.043428, 0.445296, 0.894314, -0.028474, 0.473006, 0.880581, -0.034822, -0.873287, 0.485916, -0.08948, -0.995972, 0.0, -0.032868, -0.999451, 0.0, -0.028474, 0.473006, 0.880581, -0.063845, 0.000305, 0.997955, -0.034028, -0.03766, 0.998688, -0.034028, -0.03766, 0.998688, -0.075198, -0.474776, 0.876858, -0.036103, -0.526536, 0.849361, -0.015809, 0.999847, 0.0, -0.025056, 0.860653, 0.50853, -0.020692, 0.857875, 0.513413, 0.364513, 0.893338, 0.262703, 0.194922, 0.61092, 0.767296, 0.137883, 0.772881, 0.619373, 0.121464, -0.374584, 0.919187, 0.114444, -0.53206, 0.838893, 0.329417, -0.661458, 0.673727, 0.00174, -0.999969, 0.0, 0.013489, -0.895077, 0.445631, 0.034944, -0.848476, 0.528031, 0.194922, 0.61092, 0.767296, 0.107059, 0.109531, 0.988189, 0.137883, 0.772881, 0.619373, 0.051119, 0.062471, 0.996734, 0.121464, -0.374584, 0.919187, 0.107059, 0.109531, 0.988189, 0.034944, -0.848476, 0.528031, 0.0, -1.0, 0.0, 0.00174, -0.999969, 0.0, 0.194922, 0.61092, 0.767296, 0.026276, 0.858425, 0.512223, 0.039216, 0.510758, 0.858821, 0.114444, -0.53206, 0.838893, 0.0, -0.866024, 0.499985, 0.034944, -0.848476, 0.528031, 0.140873, 0.99002, 0.0, 0.026276, 0.858425, 0.512223, 0.251289, 0.805139, 0.537187, 0.051119, 0.062471, 0.996734, 0.0, -0.499985, 0.866024, 0.114444, -0.53206, 0.838893, 0.051119, 0.062471, 0.996734, 0.039216, 0.510758, 0.858821, 0.0, 0.0, 1.0, 0.251289, 0.805139, 0.537187, 0.364513, 0.893338, 0.262703, 0.546831, 0.75634, 0.358959, 0.140873, 0.99002, 0.0, 0.251289, 0.805139, 0.537187, 0.546831, 0.75634, 0.358959, 0.14127, 0.752068, 0.643757, 0.262276, 0.247383, 0.932707, 0.230506, 0.711386, 0.6639, 0.189001, -0.221473, 0.956664, 0.262276, 0.247383, 0.932707, 0.20484, 0.144047, 0.968108, 0.096042, 0.977996, 0.185156, 0.230506, 0.711386, 0.6639, 0.18659, 0.963927, 0.189703, 0.18659, 0.963927, 0.189703, 0.414838, 0.663503, 0.622608, 0.376324, 0.905545, 0.195685, 0.230506, 0.711386, 0.6639, 0.457106, 0.169012, 0.873165, 0.414838, 0.663503, 0.622608, 0.250984, 0.067873, 0.965606, 0.457106, 0.169012, 0.873165, 0.262276, 0.247383, 0.932707, 0.414838, 0.663503, 0.622608, 0.760063, 0.123569, 0.637959, 0.748802, 0.484725, 0.45201, 0.488571, -0.096469, 0.867153, 0.760063, 0.123569, 0.637959, 0.457106, 0.169012, 0.873165, 0.376324, 0.905545, 0.195685, 0.748802, 0.484725, 0.45201, 0.743431, 0.654103, 0.139439, 0.743431, 0.654103, 0.139439, 0.748802, 0.484725, 0.45201, 0.997375, 0.072329, 0.0, 0.748802, 0.484725, 0.45201, 0.760063, 0.123569, 0.637959, 0.997375, 0.072329, 0.0, 0.760063, 0.123569, 0.637959, 0.792566, -0.092013, 0.602771, 0.997375, 0.072329, 0.0, 0.792566, -0.092013, 0.602771, 0.995483, -0.094882, 0.0, 0.997375, 0.072329, 0.0, 0.364513, 0.893338, 0.262703, 0.14127, 0.752068, 0.643757, 0.096042, 0.977996, 0.185156, 0.107059, 0.109531, 0.988189, 0.189001, -0.221473, 0.956664, 0.20484, 0.144047, 0.968108, 0.137883, 0.772881, 0.619373, 0.20484, 0.144047, 0.968108, 0.14127, 0.752068, 0.643757, 0.013489, -0.895077, 0.445631, 0.329417, -0.661458, 0.673727, 0.034944, -0.848476, 0.528031, 0.114444, -0.53206, 0.838893, 0.034944, -0.848476, 0.528031, 0.329417, -0.661458, 0.673727, -0.034028, -0.03766, -0.998688, 0.039216, 0.510758, -0.858821, 0.0, 0.0, -0.999969, -0.036103, -0.526536, -0.849361, 0.0, 0.0, -0.999969, 0.0, -0.499985, -0.866024, -0.020692, 0.857875, -0.513413, 0.0, 1.0, 0.0, 0.026276, 0.858425, -0.512223, -0.034822, -0.873287, -0.485916, 0.0, -0.499985, -0.866024, 0.0, -0.866024, -0.499985, -0.028474, 0.473006, -0.880581, 0.026276, 0.858425, -0.512223, 0.039216, 0.510758, -0.858821, -0.032868, -0.999451, 0.0, 0.0, -0.866024, -0.499985, 0.0, -1.0, 0.0, -0.085025, -0.849239, -0.521104, -0.036103, -0.526536, -0.849361, -0.034822, -0.873287, -0.485916, -0.043428, 0.445296, -0.894314, -0.020692, 0.857875, -0.513413, -0.028474, 0.473006, -0.880581, -0.08948, -0.995972, 0.0, -0.034822, -0.873287, -0.485916, -0.032868, -0.999451, 0.0, -0.063845, 0.000305, -0.997955, -0.028474, 0.473006, -0.880581, -0.034028, -0.03766, -0.998688, -0.075198, -0.474776, -0.876858, -0.034028, -0.03766, -0.998688, -0.036103, -0.526536, -0.849361, -0.025056, 0.860653, -0.50853, -0.015809, 0.999847, 0.0, -0.020692, 0.857875, -0.513413, 0.364513, 0.893338, -0.262703, 0.137883, 0.772881, -0.619373, 0.194922, 0.61092, -0.767296, 0.121464, -0.374584, -0.919187, 0.329417, -0.661458, -0.673727, 0.114444, -0.53206, -0.838893, 0.013489, -0.895077, -0.445631, 0.00174, -0.999969, 0.0, 0.034944, -0.848476, -0.528031, 0.194922, 0.61092, -0.767296, 0.107059, 0.109561, -0.988189, 0.051119, 0.062471, -0.996734, 0.051119, 0.062471, -0.996734, 0.121464, -0.374584, -0.919187, 0.114444, -0.53206, -0.838893, 0.0, -1.0, 0.0, 0.034944, -0.848476, -0.528031, 0.00174, -0.999969, 0.0, 0.194922, 0.61092, -0.767296, 0.026276, 0.858425, -0.512223, 0.251289, 0.805139, -0.537187, 0.0, -0.866024, -0.499985, 0.114444, -0.53206, -0.838893, 0.034944, -0.848476, -0.528031, 0.026276, 0.858425, -0.512223, 0.140873, 0.99002, 0.0, 0.251289, 0.805139, -0.537187, 0.0, -0.499985, -0.866024, 0.051119, 0.062471, -0.996734, 0.114444, -0.53206, -0.838893, 0.051119, 0.062471, -0.996734, 0.039216, 0.510758, -0.858821, 0.194922, 0.61092, -0.767296, 0.251289, 0.805139, -0.537187, 0.364513, 0.893338, -0.262703, 0.194922, 0.61092, -0.767296, 0.140873, 0.99002, 0.0, 0.546831, 0.75634, -0.358959, 0.251289, 0.805139, -0.537187, 0.14127, 0.752068, -0.643757, 0.262276, 0.247383, -0.932707, 0.20484, 0.144047, -0.968108, 0.262276, 0.247383, -0.932707, 0.189001, -0.221473, -0.956664, 0.20484, 0.144047, -0.968108, 0.096042, 0.977996, -0.185156, 0.230506, 0.711386, -0.6639, 0.14127, 0.752068, -0.643757, 0.18659, 0.963927, -0.189703, 0.414838, 0.663503, -0.622608, 0.230506, 0.711386, -0.6639, 0.230506, 0.711386, -0.6639, 0.457106, 0.169012, -0.873165, 0.262276, 0.247383, -0.932707, 0.457106, 0.169012, -0.873165, 0.250984, 0.067873, -0.965606, 0.262276, 0.247383, -0.932707, 0.414838, 0.663503, -0.622608, 0.760063, 0.123569, -0.637959, 0.457106, 0.169012, -0.873165, 0.760063, 0.123569, -0.637959, 0.488571, -0.096469, -0.867153, 0.457106, 0.169012, -0.873165, 0.376324, 0.905545, -0.195685, 0.748802, 0.484725, -0.45201, 0.414838, 0.663503, -0.622608, 0.743431, 0.654103, -0.139439, 0.997375, 0.072329, 0.0, 0.748802, 0.484725, -0.45201, 0.748802, 0.484725, -0.45201, 0.997375, 0.072329, 0.0, 0.760063, 0.123569, -0.637959, 0.760063, 0.123569, -0.637959, 0.997375, 0.072329, 0.0, 0.792566, -0.092013, -0.602771, 0.792566, -0.092013, -0.602771, 0.997375, 0.072329, 0.0, 0.995483, -0.094882, 0.0, 0.364513, 0.893338, -0.262703, 0.14127, 0.752068, -0.643757, 0.137883, 0.772881, -0.619373, 0.107059, 0.109561, -0.988189, 0.189001, -0.221473, -0.956664, 0.121464, -0.374584, -0.919187, 0.137883, 0.772881, -0.619373, 0.20484, 0.144047, -0.968108, 0.107059, 0.109561, -0.988189, 0.013489, -0.895077, -0.445631, 0.034944, -0.848476, -0.528031, 0.329417, -0.661458, -0.673727, 0.114444, -0.53206, -0.838893, 0.329417, -0.661458, -0.673727, 0.034944, -0.848476, -0.528031, 0.743431, 0.654103, 0.139439, 0.997375, 0.072329, 0.0, 0.743431, 0.654103, -0.139439, 0.743431, 0.654103, -0.139439, 0.376324, 0.905545, 0.195685, 0.743431, 0.654103, 0.139439, 0.18659, 0.963927, 0.189703, 0.376324, 0.905545, -0.195685, 0.18659, 0.963927, -0.189703, 0.18659, 0.963927, -0.189703, 0.096042, 0.977996, 0.185156, 0.18659, 0.963927, 0.189703, 0.096042, 0.977996, -0.185156, 0.364513, 0.893338, 0.262703, 0.096042, 0.977996, 0.185156, 0.546831, 0.75634, 0.358959, 0.364513, 0.893338, -0.262703, 0.546831, 0.75634, -0.358959, 0.546831, 0.75634, 0.358959, 0.546831, 0.75634, -0.358959, 0.140873, 0.99002, 0.0, -0.075198, -0.474776, 0.876858, -0.233741, -0.848659, 0.474441, -0.085025, -0.849239, 0.521104, -0.018494, 0.999817, 0.0, -0.245796, 0.834773, -0.49266, -0.159612, 0.987152, 0.0, -0.025056, 0.860653, 0.50853, -0.175085, 0.523942, 0.833552, -0.043428, 0.445296, 0.894314, -0.075198, -0.474776, -0.876858, -0.233741, -0.848659, -0.474441, -0.186529, -0.565722, -0.803186, -0.085025, -0.849239, 0.521104, -0.12656, -0.991943, 0.0, -0.08948, -0.995972, 0.0, -0.025056, 0.860653, -0.50853, -0.175085, 0.523942, -0.833552, -0.245796, 0.834773, -0.49266, -0.043428, 0.445296, 0.894314, -0.062532, 0.016541, 0.997894, -0.063845, 0.000305, 0.997955, -0.085025, -0.849239, -0.521104, -0.12656, -0.991943, 0.0, -0.233741, -0.848659, -0.474441, -0.043428, 0.445296, -0.894314, -0.062532, 0.016541, -0.997894, -0.175085, 0.523942, -0.833552, -0.063845, 0.000305, 0.997955, -0.186529, -0.565722, 0.803186, -0.075198, -0.474776, 0.876858, -0.018494, 0.999817, 0.0, -0.245827, 0.834773, 0.49266, -0.025056, 0.860653, 0.50853, -0.063845, 0.000305, -0.997955, -0.186529, -0.565722, -0.803186, -0.062532, 0.016541, -0.997894, -0.12656, -0.991943, 0.0, -0.729026, -0.553453, 0.402692, -0.483291, -0.875423, 0.0, -0.245796, 0.834773, -0.49266, -0.479781, 0.877377, 0.0, -0.159612, 0.987152, 0.0, -0.233741, -0.848659, -0.474441, -0.780084, -0.346934, -0.520646, -0.186529, -0.565722, -0.803186, -0.245827, 0.834773, 0.49266, -0.479781, 0.877377, 0.0, -0.806604, 0.510483, 0.297952, -0.245796, 0.834773, -0.49266, -0.761711, 0.428266, -0.486129, -0.806604, 0.510453, -0.297952, -0.233741, -0.848659, 0.474441, -0.780084, -0.346934, 0.520646, -0.729026, -0.553453, 0.402692, -0.12656, -0.991943, 0.0, -0.729026, -0.553453, -0.402692, -0.233741, -0.848659, -0.474441, -0.245827, 0.834773, 0.49266, -0.761711, 0.428297, 0.486129, -0.175085, 0.523942, 0.833552, -0.479781, 0.877377, 0.0, -0.806604, 0.510453, -0.297952, -0.806604, 0.510483, 0.297952, -0.806604, 0.510453, -0.297952, -0.761711, 0.428297, 0.486129, -0.806604, 0.510483, 0.297952, -0.729026, -0.553453, 0.402692, -0.729026, -0.553453, -0.402692, -0.483291, -0.875423, 0.0, -0.780084, -0.346934, -0.520646, -0.729026, -0.553453, 0.402692, -0.780084, -0.346934, 0.520646, -0.999969, 0.0, 0.0, -0.999969, 0.0, 0.0, -0.999969, 0.0, 0.0, -0.999969, 0.0, 0.0, -1.0, 0.0, 0.0, -0.999969, 0.0, 0.0, 0.0, 0.999969, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, -0.999969, 0.0, 0.0, -1.0, 0.0, 0.0, -1.0, 0.0, 0.177618, 0.984069, 0.0, 0.016297, 0.835932, -0.54857, 0.019501, 0.999786, 0.0, 0.167974, 0.490493, -0.855068, 0.145543, -0.139439, -0.979461, 0.016297, 0.835932, -0.54857, 0.148717, -0.496658, -0.855068, 0.636555, -0.771203, 0.0, 0.145543, -0.139439, -0.979461, 0.636555, -0.771203, 0.0, 0.148717, -0.496658, 0.855068, 0.145543, -0.139439, 0.979461, 0.167974, 0.490493, 0.855068, 0.195074, 0.980773, 0.0, 0.177618, 0.984069, 0.0, 0.145543, -0.139439, 0.979461, 0.167974, 0.490493, 0.855068, 0.016297, 0.835932, 0.54857, 0.016297, 0.835932, 0.54857, 0.177618, 0.984069, 0.0, 0.019501, 0.999786, 0.0, 0.185461, 0.488662, 0.852504, 0.257241, -0.486984, 0.834651, 0.27604, 0.476577, 0.834651, 0.139103, -0.990265, 0.0, 0.166265, -0.495529, 0.852504, 0.148717, -0.496658, 0.855068, 0.167974, 0.490493, -0.855068, 0.166265, -0.495529, -0.852504, 0.148717, -0.496658, -0.855068, 0.167974, 0.490493, 0.855068, 0.166265, -0.495529, 0.852504, 0.185461, 0.488662, 0.852504, 0.167974, 0.490493, -0.855068, 0.195074, 0.980773, 0.0, 0.185461, 0.488662, -0.852504, 0.139103, -0.990265, 0.0, 0.166265, -0.495529, -0.852504, 0.156682, -0.98764, 0.0, 0.27604, 0.476577, 0.834651, 0.337168, 0.941435, 0.0, 0.28544, 0.958373, 0.0, 0.156682, -0.98764, 0.0, 0.257241, -0.486984, -0.834651, 0.247841, -0.96878, 0.0, 0.185461, 0.488662, -0.852504, 0.28544, 0.958373, 0.0, 0.27604, 0.476577, -0.834651, 0.185461, 0.488662, 0.852504, 0.28544, 0.958373, 0.0, 0.195074, 0.980773, 0.0, 0.156682, -0.98764, 0.0, 0.257241, -0.486984, 0.834651, 0.166265, -0.495529, 0.852504, 0.185461, 0.488662, -0.852504, 0.257241, -0.486984, -0.834651, 0.166265, -0.495529, -0.852504, 0.309458, -0.480026, 0.820826, 0.617573, 0.384259, 0.686209, 0.327921, 0.467605, 0.820826, 0.247841, -0.96878, 0.0, 0.309458, -0.480026, 0.820826, 0.257241, -0.486984, 0.834651, 0.257241, -0.486984, -0.834651, 0.327921, 0.467605, -0.820826, 0.309458, -0.480026, -0.820826, 0.257241, -0.486984, 0.834651, 0.327921, 0.467605, 0.820826, 0.27604, 0.476577, 0.834651, 0.247841, -0.96878, 0.0, 0.309458, -0.480026, -0.820826, 0.300211, -0.953856, 0.0, 0.27604, 0.476577, -0.834651, 0.337168, 0.941435, 0.0, 0.327921, 0.467605, -0.820826, 0.625324, 0.780328, 0.0, 0.60213, -0.408002, 0.686239, 0.60213, -0.408002, -0.686239, 0.300211, -0.953856, 0.0, 0.60213, -0.408002, -0.686239, 0.59447, -0.804102, 0.0, 0.327921, 0.467605, -0.820826, 0.625324, 0.780328, 0.0, 0.617603, 0.384228, -0.686239, 0.327921, 0.467605, 0.820826, 0.625324, 0.780328, 0.0, 0.337168, 0.941435, 0.0, 0.300211, -0.953856, 0.0, 0.60213, -0.408002, 0.686239, 0.309458, -0.480026, 0.820826, 0.309458, -0.480026, -0.820826, 0.617603, 0.384228, -0.686239, 0.60213, -0.408002, -0.686239, 0.636555, -0.771203, 0.0, 0.473617, 0.0, 0.880703, 0.999969, 0.0, 0.0, 0.016297, 0.835932, -0.54857, 0.145543, -0.139439, -0.979461, 0.473617, 0.0, -0.880703, 0.145543, -0.139439, 0.979461, 0.016297, 0.835932, 0.54857, 0.473617, 0.0, 0.880703, 0.636555, -0.771203, 0.0, 0.473617, 0.0, -0.880703, 0.145543, -0.139439, -0.979461, -0.623463, -0.781823, 0.0, -0.566668, -0.598071, -0.566668, -0.44084, -0.781823, -0.44087, -0.977355, 0.211585, 0.0, -0.691092, -0.211554, -0.691092, -0.977355, -0.211585, 0.0, -0.623463, 0.781823, 0.0, -0.566668, 0.598071, -0.566668, -0.801416, 0.598102, 0.0, -0.801416, -0.598102, 0.0, -0.691092, -0.211554, -0.691092, -0.566668, -0.598071, -0.566668, -0.801416, 0.598102, 0.0, -0.691092, 0.211554, -0.691092, -0.977355, 0.211585, 0.0, -0.44084, -0.781823, -0.44087, -0.315043, -0.567614, -0.760582, -0.250038, -0.756981, -0.603687, -0.691092, 0.211554, -0.691092, -0.375225, -0.196112, -0.905911, -0.691092, -0.211554, -0.691092, -0.44084, 0.781823, -0.44087, -0.315043, 0.567614, -0.760582, -0.566668, 0.598071, -0.566668, -0.691092, -0.211554, -0.691092, -0.315043, -0.567614, -0.760582, -0.566668, -0.598071, -0.566668, -0.691092, 0.211554, -0.691092, -0.315043, 0.567614, -0.760582, -0.375225, 0.196112, -0.905911, -0.315043, 0.567614, 0.760582, -0.691092, 0.211554, 0.691092, -0.375225, 0.196112, 0.905911, -0.315043, -0.567614, 0.760582, -0.44087, -0.781823, 0.44087, -0.250038, -0.756981, 0.603656, -0.375225, -0.196112, 0.905911, -0.691092, 0.211554, 0.691092, -0.691092, -0.211554, 0.691092, -0.315043, 0.567614, 0.760582, -0.44087, 0.781823, 0.44087, -0.566668, 0.598071, 0.566668, -0.315043, -0.567614, 0.760582, -0.691092, -0.211554, 0.691092, -0.566668, -0.598071, 0.566668, -0.566668, -0.598071, 0.566668, -0.623463, -0.781823, 0.0, -0.44087, -0.781823, 0.44087, -0.691092, 0.211554, 0.691092, -0.977355, -0.211585, 0.0, -0.691092, -0.211554, 0.691092, -0.566668, 0.598071, 0.566668, -0.623463, 0.781823, 0.0, -0.801416, 0.598102, 0.0, -0.691092, -0.211554, 0.691092, -0.801416, -0.598102, 0.0, -0.566668, -0.598071, 0.566668, -0.691092, 0.211554, 0.691092, -0.801416, 0.598102, 0.0, -0.977355, 0.211585, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, -1.0, 0.0, -1.0, 0.0, 0.0, -1.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, -1.0, -1.0, 0.0, 0.0, -1.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 1.0, 0.0, -1.0, 0.0, 0.0, 0.0, -1.0, 0.0, -1.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, -1.0, 0.0, 0.0, -1.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.996429, 0.0, 0.084201, 0.996429, 0.042085, 0.072909, 0.394604, 0.455275, 0.79809, 0.996429, 0.0, 0.084201, 0.390301, 0.002014, 0.920682, 0.39494, -0.458541, 0.796045, 0.996429, 0.072909, 0.042085, 0.996429, 0.084201, 0.0, 0.401044, 0.916044, 0.0, 0.996429, -0.072909, 0.042085, 0.996429, -0.042085, 0.072909, 0.39494, -0.458541, 0.796045, 0.996429, 0.072909, 0.042085, 0.400586, 0.793329, 0.458388, 0.394604, 0.455275, 0.79809, 0.996429, -0.084201, 0.0, 0.996429, -0.072909, 0.042085, 0.394238, -0.797266, 0.457045, 0.400586, 0.793329, 0.458388, 0.0936, 0.865444, 0.492141, 0.071505, 0.494369, 0.866298, 0.394238, -0.797266, 0.457045, 0.088931, -0.865108, 0.493576, 0.09534, -0.995422, 0.0, 0.394604, 0.455275, 0.79809, 0.071505, 0.494369, 0.866298, 0.061678, -0.002441, 0.998077, 0.0936, 0.865444, -0.492141, 0.104129, 0.994537, 0.0, 0.401044, 0.916044, 0.0, 0.390301, 0.002014, 0.920682, 0.061678, -0.002441, 0.998077, 0.072817, -0.49208, 0.867489, 0.39494, -0.458541, 0.796045, 0.072817, -0.49208, 0.867489, 0.088931, -0.865108, 0.493576, -0.057344, 0.815668, 0.57564, -0.0918, 0.995758, 0.0, -0.1236, 0.992309, 0.0, 0.017579, 0.269906, -0.962706, -0.049135, 0.274575, -0.960295, -0.104465, 0.822016, -0.559771, -0.159215, 0.987213, 0.0, -0.113834, 0.9935, 0.0, -0.078707, 0.838374, 0.539354, -0.057344, 0.815668, -0.57564, -0.104465, 0.822016, -0.559771, -0.1236, 0.992309, 0.0, 0.071169, 0.828242, 0.555803, 0.027863, 0.799707, 0.599719, -0.032716, 0.283059, 0.958525, 0.001648, -0.90286, 0.429853, -0.002441, -0.559435, 0.828852, -0.017518, -0.618183, 0.785821, 0.099124, 0.995056, 0.0, 0.040986, 0.999146, 0.0, 0.027863, 0.799707, 0.599719, -0.002441, -0.559435, 0.828852, -0.006989, -0.10419, 0.994507, -0.088107, -0.282388, 0.955229, 0.017975, 0.390362, 0.920469, -0.032716, 0.283059, 0.958525, -0.088107, -0.282388, 0.955229, 0.002655, -0.999969, 0.0, 0.001648, -0.90286, 0.429853, -0.09415, -0.855007, 0.509964, -0.032716, 0.283059, 0.958525, 0.027863, 0.799707, 0.599719, -0.192785, 0.742302, 0.641682, 0.027863, 0.799707, 0.599719, 0.040986, 0.999146, 0.0, -0.159215, 0.987213, 0.0, -0.032716, 0.283059, 0.958525, -0.092868, -0.00586, 0.995636, -0.224433, -0.48085, 0.84756, -0.10242, -0.99472, 0.0, -0.09415, -0.855007, 0.509964, -0.058687, -0.530137, 0.845851, 0.996429, 0.0, -0.084201, 0.390301, 0.002014, -0.920682, 0.394604, 0.455275, -0.79809, 0.39494, -0.458541, -0.796045, 0.390301, 0.002014, -0.920682, 0.996429, 0.0, -0.084201, 0.400586, 0.793329, -0.458388, 0.401044, 0.916044, 0.0, 0.996429, 0.084201, 0.0, 0.996429, -0.072909, -0.042085, 0.394238, -0.797266, -0.457045, 0.39494, -0.458541, -0.796045, 0.394604, 0.455275, -0.79809, 0.400586, 0.793329, -0.458388, 0.996429, 0.072909, -0.042085, 0.996429, -0.084201, 0.0, 0.388958, -0.921232, 0.0, 0.394238, -0.797266, -0.457045, 0.071505, 0.494369, -0.866298, 0.0936, 0.865444, -0.492141, 0.400586, 0.793329, -0.458388, 0.09534, -0.995422, 0.0, 0.088931, -0.865108, -0.493576, 0.394238, -0.797266, -0.457045, 0.061678, -0.002441, -0.998077, 0.071505, 0.494369, -0.866298, 0.394604, 0.455275, -0.79809, 0.072817, -0.49208, -0.867489, 0.061678, -0.002441, -0.998077, 0.390301, 0.002014, -0.920682, 0.088931, -0.865108, -0.493576, 0.072817, -0.49208, -0.867489, 0.39494, -0.458541, -0.796045, 0.103763, -0.994598, 0.0, 0.101596, -0.827357, 0.552355, 0.003082, -0.85287, 0.52205, 0.101596, -0.827357, -0.552355, 0.003082, -0.85287, -0.52205, -0.009125, -0.361309, -0.932371, -0.078707, 0.838374, -0.539354, -0.113834, 0.9935, 0.0, -0.159215, 0.987213, 0.0, -0.049135, 0.274575, -0.960295, 0.017579, 0.269906, -0.962706, 0.073946, -0.333964, -0.939665, -0.032716, 0.283059, -0.958525, 0.027863, 0.799707, -0.599719, 0.071169, 0.828242, -0.555803, 0.001648, -0.90286, -0.429853, -0.09415, -0.855007, -0.509964, -0.017518, -0.618183, -0.785821, 0.027863, 0.799707, -0.599719, 0.040986, 0.999146, 0.0, 0.099124, 0.995056, 0.0, -0.002441, -0.559435, -0.828852, -0.017518, -0.618183, -0.785821, -0.088107, -0.282388, -0.955229, -0.088107, -0.282388, -0.955229, -0.032716, 0.283059, -0.958525, 0.017975, 0.390362, -0.920469, 0.002655, -0.999969, 0.0, -0.10242, -0.99472, 0.0, -0.09415, -0.855007, -0.509964, -0.032716, 0.283059, -0.958525, -0.092868, -0.00586, -0.995636, -0.192785, 0.742302, -0.641682, 0.027863, 0.799707, -0.599719, -0.192785, 0.742302, -0.641682, -0.159215, 0.987213, 0.0, -0.224433, -0.48085, -0.84756, -0.092868, -0.00586, -0.995636, -0.032716, 0.283059, -0.958525, -0.10242, -0.99472, 0.0, 0.029939, -0.999542, 0.0, -0.058687, -0.530137, -0.845851, 0.996429, -0.072909, -0.042085, 0.996429, -0.042085, -0.072909, 0.546251, 0.418775, 0.725364, 0.996429, -0.042085, 0.072909, 0.546251, 0.418775, -0.725364, 0.546251, 0.0, -0.837581, 0.996429, 0.042085, -0.072909, 0.996429, 0.072909, -0.042085, 0.546251, -0.725364, 0.418775, 0.996429, 0.084201, 0.0, 0.996429, 0.072909, 0.042085, 0.546251, -0.725364, -0.418775, 0.996429, -0.084201, 0.0, 0.996429, -0.072909, -0.042085, 0.546251, 0.725364, 0.418775, 0.996429, -0.072909, 0.042085, 0.546251, 0.725364, -0.418775, 0.546251, 0.418775, -0.725364, 0.996429, 0.042085, 0.072909, 0.546251, -0.418775, -0.725364, 0.546251, -0.725364, -0.418775, 0.996429, 0.042085, -0.072909, 0.546251, -0.418806, 0.725364, 0.546251, 0.0, 0.837581, 0.996429, -0.084201, 0.0, 0.546251, 0.837581, 0.0, 0.546251, 0.725364, -0.418775, 0.996429, -0.042085, -0.072909, 0.996429, 0.0, -0.084201, 0.546251, 0.0, 0.837581, 0.996429, 0.042085, 0.072909, 0.996429, 0.0, 0.084201, 0.546251, 0.0, -0.837581, 0.996429, 0.084201, 0.0, 0.546251, -0.837581, 0.0, 0.546251, -0.725364, 0.418775, 0.09534, -0.995422, 0.0, 0.002655, -0.999969, 0.0, 0.001648, -0.90286, -0.429853, -0.006989, -0.10419, -0.994507, 0.017975, 0.390362, -0.920469, 0.071505, 0.494369, -0.866298, -0.002441, -0.559435, -0.828852, -0.006989, -0.10419, -0.994507, 0.061678, -0.002441, -0.998077, 0.071169, 0.828242, -0.555803, 0.099124, 0.995056, 0.0, 0.104129, 0.994537, 0.0, 0.001648, -0.90286, -0.429853, -0.002441, -0.559435, -0.828852, 0.072817, -0.49208, -0.867489, 0.017975, 0.390362, -0.920469, 0.071169, 0.828242, -0.555803, 0.0936, 0.865444, -0.492141, 0.09534, -0.995422, 0.0, 0.088931, -0.865108, 0.493576, 0.001648, -0.90286, 0.429853, 0.071505, 0.494369, 0.866298, 0.017975, 0.390362, 0.920469, -0.006989, -0.10419, 0.994507, 0.061678, -0.002441, 0.998077, -0.006989, -0.10419, 0.994507, -0.002441, -0.559435, 0.828852, 0.104129, 0.994537, 0.0, 0.099124, 0.995056, 0.0, 0.071169, 0.828242, 0.555803, 0.072817, -0.49208, 0.867489, -0.002441, -0.559435, 0.828852, 0.001648, -0.90286, 0.429853, 0.0936, 0.865444, 0.492141, 0.071169, 0.828242, 0.555803, 0.017975, 0.390362, 0.920469, 0.103763, -0.994598, 0.0, 0.006073, -0.999969, 0.0, 0.003082, -0.85287, -0.52205, -0.092868, -0.00586, -0.995636, -0.008545, -0.3708, -0.928648, 0.11536, -0.319468, -0.940519, 0.017579, 0.269906, 0.962706, -0.057344, 0.815668, 0.57564, -0.104465, 0.822016, 0.559771, 0.101596, -0.827357, 0.552355, 0.073946, -0.333964, 0.939665, -0.009125, -0.361309, 0.932371, -0.008545, -0.3708, 0.928648, 0.11536, -0.319468, 0.940519, 0.132878, -0.774407, 0.618519, -0.078707, 0.838374, 0.539354, 0.042512, 0.786462, 0.616138, 0.063448, 0.273049, 0.959899, 0.11536, -0.319468, 0.940519, -0.008545, -0.3708, 0.928648, -0.092868, -0.00586, 0.995636, 0.029939, -0.999542, 0.0, 0.091739, -0.995758, 0.0, 0.132878, -0.774407, -0.618519, -0.008545, -0.3708, -0.928648, -0.058687, -0.530137, -0.845851, 0.132878, -0.774407, -0.618519, 0.029939, -0.999542, 0.0, -0.058687, -0.530137, 0.845851, 0.132878, -0.774407, 0.618519, -0.078707, 0.838374, -0.539354, 0.042512, 0.786462, -0.616138, -0.009095, 0.999939, 0.0, -0.078707, 0.838374, -0.539354, -0.092868, -0.00586, -0.995636, 0.063448, 0.273049, -0.959899, -0.078707, 0.838374, 0.539354, -0.113834, 0.9935, 0.0, -0.009095, 0.999939, 0.0, 0.132878, -0.774407, 0.618519, 0.11536, -0.319468, 0.940519, 0.073946, -0.333964, 0.939665, 0.063448, 0.273049, 0.959899, 0.042512, 0.786462, 0.616138, -0.057344, 0.815668, 0.57564, 0.132878, -0.774407, -0.618519, 0.091739, -0.995758, 0.0, 0.103763, -0.994598, 0.0, 0.11536, -0.319468, 0.940519, 0.063448, 0.273049, 0.959899, 0.017579, 0.269906, 0.962706, 0.132878, -0.774407, -0.618519, 0.101596, -0.827357, -0.552355, 0.073946, -0.333964, -0.939665, 0.132878, -0.774407, 0.618519, 0.101596, -0.827357, 0.552355, 0.103763, -0.994598, 0.0, 0.042512, 0.786462, -0.616138, -0.057344, 0.815668, -0.57564, -0.0918, 0.995758, 0.0, 0.063448, 0.273049, -0.959899, 0.017579, 0.269906, -0.962706, -0.057344, 0.815668, -0.57564, 0.042512, 0.786462, 0.616138, -0.009095, 0.999939, 0.0, -0.0918, 0.995758, 0.0, 0.11536, -0.319468, -0.940519, 0.073946, -0.333964, -0.939665, 0.017579, 0.269906, -0.962706, -0.049135, 0.274575, -0.960295, -0.17008, 0.285531, -0.943144, -0.203558, 0.821711, -0.532304, -0.1236, 0.992309, 0.0, -0.104465, 0.822016, -0.559771, -0.203558, 0.821711, -0.532304, -0.009125, -0.361309, 0.932371, -0.135746, -0.370952, 0.918638, -0.114475, -0.85229, 0.510361, -0.009125, -0.361309, -0.932371, 0.003082, -0.85287, -0.52205, -0.114475, -0.85229, -0.510361, -0.049135, 0.274575, 0.960295, -0.104465, 0.822016, 0.559771, -0.203558, 0.821711, 0.532304, 0.003082, -0.85287, 0.52205, -0.114475, -0.85229, 0.510361, -0.096774, -0.9953, 0.0, -0.135746, -0.370952, -0.918638, -0.17008, 0.285531, -0.943144, -0.049135, 0.274575, -0.960295, 0.003082, -0.85287, -0.52205, 0.006073, -0.999969, 0.0, -0.096774, -0.9953, 0.0, -0.1236, 0.992309, 0.0, -0.208258, 0.978057, 0.0, -0.203558, 0.821711, 0.532304, -0.114475, -0.85229, 0.510361, -0.135746, -0.370952, 0.918638, -0.364055, -0.326792, 0.872127, -0.096774, -0.9953, 0.0, -0.114475, -0.85229, 0.510361, -0.341166, -0.784722, 0.517472, -0.114475, -0.85229, -0.510361, -0.341166, -0.784722, -0.517472, -0.364055, -0.326792, -0.872127, -0.208258, 0.978057, 0.0, -0.203558, 0.821711, -0.532304, -0.45204, 0.724387, -0.520463, -0.208258, 0.978057, 0.0, -0.451216, 0.892392, 0.0, -0.45204, 0.724387, 0.520463, -0.17008, 0.285531, 0.943144, -0.203558, 0.821711, 0.532304, -0.45204, 0.724387, 0.520463, -0.17008, 0.285531, -0.943144, -0.408155, 0.215094, -0.887173, -0.45204, 0.724387, -0.520463, -0.096774, -0.9953, 0.0, -0.32252, -0.946532, 0.0, -0.341166, -0.784722, -0.517472, -0.32252, -0.946532, 0.0, -0.742912, -0.669332, 0.0, -0.664968, -0.397534, -0.632252, -0.32252, -0.946532, 0.0, -0.341166, -0.784722, 0.517472, -0.664968, -0.397534, 0.632252, -0.451216, 0.892392, 0.0, -0.45204, 0.724387, -0.520463, -0.68804, 0.290963, -0.664754, -0.451216, 0.892392, 0.0, -0.79397, 0.607898, 0.0, -0.68804, 0.290963, 0.664754, -0.135746, -0.370952, -0.918638, -0.364055, -0.326792, -0.872127, -0.408155, 0.215094, -0.887173, -0.408155, 0.215094, 0.887173, -0.68804, 0.290963, 0.664754, -0.664968, -0.397534, 0.632252, -0.049135, 0.274575, 0.960295, -0.009125, -0.361309, 0.932371, 0.073946, -0.333964, 0.939665, -0.049135, 0.274575, 0.960295, -0.17008, 0.285531, 0.943144, -0.135746, -0.370952, 0.918638, -0.135746, -0.370952, 0.918638, -0.17008, 0.285531, 0.943144, -0.408155, 0.215094, 0.887173, -0.664968, -0.397534, -0.632252, -0.68804, 0.290963, -0.664754, -0.408155, 0.215094, -0.887173, 0.401044, 0.916044, 0.0, 0.104129, 0.994537, 0.0, 0.0936, 0.865444, 0.492141, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.999969, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.999969, 0.0, 0.0, 0.999969, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.999969, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.996429, 0.0, -0.084201, 0.390301, 0.002014, -0.920682, 0.394604, 0.455275, -0.79809, 0.39494, -0.458541, -0.796045, 0.390301, 0.002014, -0.920682, 0.996429, 0.0, -0.084201, 0.996429, 0.072909, -0.042085, 0.400586, 0.793329, -0.458388, 0.401044, 0.916044, 0.0, 0.996429, -0.072909, -0.042085, 0.394238, -0.797266, -0.457045, 0.39494, -0.458541, -0.796045, 0.394604, 0.455275, -0.79809, 0.400586, 0.793329, -0.458388, 0.996429, 0.072909, -0.042085, 0.996429, -0.084201, 0.0, 0.388958, -0.921232, 0.0, 0.394238, -0.797266, -0.457045, 0.400586, 0.793329, -0.458388, 0.394604, 0.455275, -0.79809, 0.071505, 0.494369, -0.866298, 0.394238, -0.797266, -0.457045, 0.388958, -0.921232, 0.0, 0.09534, -0.995422, 0.0, 0.394604, 0.455275, -0.79809, 0.390301, 0.002014, -0.920682, 0.061678, -0.002441, -0.998077, 0.401044, 0.916044, 0.0, 0.104129, 0.994537, 0.0, 0.0936, 0.865444, 0.492141, 0.390301, 0.002014, -0.920682, 0.39494, -0.458541, -0.796045, 0.072817, -0.49208, -0.867489, 0.39494, -0.458541, -0.796045, 0.394238, -0.797266, -0.457045, 0.088931, -0.865108, -0.493576, -0.057344, 0.815668, -0.57564, -0.104465, 0.822016, -0.559771, -0.1236, 0.992309, 0.0, -0.104465, 0.822016, 0.559771, -0.049135, 0.274575, 0.960295, 0.017579, 0.269906, 0.962706, -0.078707, 0.838374, -0.539354, -0.113834, 0.9935, 0.0, -0.159215, 0.987213, 0.0, -0.1236, 0.992309, 0.0, -0.104465, 0.822016, 0.559771, -0.057344, 0.815668, 0.57564, -0.032716, 0.283059, -0.958525, 0.027863, 0.799707, -0.599719, 0.071169, 0.828242, -0.555803, 0.001648, -0.90286, -0.429853, -0.09415, -0.855007, -0.509964, -0.017518, -0.618183, -0.785821, 0.027863, 0.799707, -0.599719, 0.040986, 0.999146, 0.0, 0.099124, 0.995056, 0.0, -0.002441, -0.559435, -0.828852, -0.017518, -0.618183, -0.785821, -0.088107, -0.282388, -0.955229, -0.088107, -0.282388, -0.955229, -0.032716, 0.283059, -0.958525, 0.017975, 0.390362, -0.920469, 0.002655, -0.999969, 0.0, -0.10242, -0.99472, 0.0, -0.09415, -0.855007, -0.509964, -0.032716, 0.283059, -0.958525, -0.092868, -0.00586, -0.995636, -0.192785, 0.742302, -0.641682, 0.027863, 0.799707, -0.599719, -0.192785, 0.742302, -0.641682, -0.159215, 0.987213, 0.0, -0.224433, -0.48085, -0.84756, -0.092868, -0.00586, -0.995636, -0.032716, 0.283059, -0.958525, -0.10242, -0.99472, 0.0, 0.029939, -0.999542, 0.0, -0.058687, -0.530137, -0.845851, 0.996429, 0.0, 0.084201, 0.996429, 0.042085, 0.072909, 0.394604, 0.455275, 0.79809, 0.996429, 0.0, 0.084201, 0.390301, 0.002014, 0.920682, 0.39494, -0.458541, 0.796045, 0.996429, 0.072909, 0.042085, 0.996429, 0.084201, 0.0, 0.401044, 0.916044, 0.0, 0.996429, -0.072909, 0.042085, 0.996429, -0.042085, 0.072909, 0.39494, -0.458541, 0.796045, 0.996429, 0.072909, 0.042085, 0.400586, 0.793329, 0.458388, 0.394604, 0.455275, 0.79809, 0.996429, -0.072909, 0.042085, 0.394238, -0.797266, 0.457045, 0.388958, -0.921232, 0.0, 0.400586, 0.793329, 0.458388, 0.0936, 0.865444, 0.492141, 0.071505, 0.494369, 0.866298, 0.394238, -0.797266, 0.457045, 0.088931, -0.865108, 0.493576, 0.09534, -0.995422, 0.0, 0.394604, 0.455275, 0.79809, 0.071505, 0.494369, 0.866298, 0.061678, -0.002441, 0.998077, 0.390301, 0.002014, 0.920682, 0.061678, -0.002441, 0.998077, 0.072817, -0.49208, 0.867489, 0.39494, -0.458541, 0.796045, 0.072817, -0.49208, 0.867489, 0.088931, -0.865108, 0.493576, 0.103763, -0.994598, 0.0, 0.006073, -0.999969, 0.0, 0.003082, -0.85287, -0.52205, -0.009125, -0.361309, 0.932371, 0.003082, -0.85287, 0.52205, 0.101596, -0.827357, 0.552355, -0.159215, 0.987213, 0.0, -0.113834, 0.9935, 0.0, -0.078707, 0.838374, 0.539354, 0.073946, -0.333964, 0.939665, 0.017579, 0.269906, 0.962706, -0.049135, 0.274575, 0.960295, 0.071169, 0.828242, 0.555803, 0.027863, 0.799707, 0.599719, -0.032716, 0.283059, 0.958525, 0.001648, -0.90286, 0.429853, -0.002441, -0.559435, 0.828852, -0.017518, -0.618183, 0.785821, 0.099124, 0.995056, 0.0, 0.040986, 0.999146, 0.0, 0.027863, 0.799707, 0.599719, -0.002441, -0.559435, 0.828852, -0.006989, -0.10419, 0.994507, -0.088107, -0.282388, 0.955229, 0.017975, 0.390362, 0.920469, -0.032716, 0.283059, 0.958525, -0.088107, -0.282388, 0.955229, 0.002655, -0.999969, 0.0, 0.001648, -0.90286, 0.429853, -0.09415, -0.855007, 0.509964, -0.032716, 0.283059, 0.958525, 0.027863, 0.799707, 0.599719, -0.192785, 0.742302, 0.641682, 0.027863, 0.799707, 0.599719, 0.040986, 0.999146, 0.0, -0.159215, 0.987213, 0.0, -0.032716, 0.283059, 0.958525, -0.092868, -0.00586, 0.995636, -0.224433, -0.48085, 0.84756, -0.10242, -0.99472, 0.0, -0.09415, -0.855007, 0.509964, -0.058687, -0.530137, 0.845851, 0.996429, -0.072909, 0.042085, 0.546251, 0.725364, -0.418775, 0.546251, 0.418775, -0.725364, 0.546251, 0.0, 0.837581, 0.546251, 0.418775, 0.725364, 0.996429, -0.042085, -0.072909, 0.996429, 0.042085, 0.072909, 0.546251, -0.418775, -0.725364, 0.546251, -0.725364, -0.418775, 0.996429, 0.084201, 0.0, 0.546251, -0.837581, 0.0, 0.546251, -0.725364, 0.418775, 0.546251, 0.837581, 0.0, 0.546251, 0.725364, -0.418775, 0.996429, -0.072909, 0.042085, 0.546251, 0.418775, 0.725364, 0.546251, 0.725364, 0.418775, 0.996429, -0.072909, -0.042085, 0.546251, -0.725364, 0.418775, 0.546251, -0.418775, 0.725364, 0.996429, 0.042085, -0.072909, 0.546251, 0.0, -0.837581, 0.546251, -0.418775, -0.725364, 0.996429, 0.042085, 0.072909, 0.546251, 0.725364, 0.418775, 0.546251, 0.837581, 0.0, 0.996429, -0.084201, 0.0, 0.996429, -0.042085, 0.072909, 0.546251, 0.418775, -0.725364, 0.546251, 0.0, -0.837581, 0.996429, 0.042085, -0.072909, 0.546251, -0.418775, 0.725364, 0.546251, 0.0, 0.837581, 0.996429, 0.072909, 0.042085, 0.546251, -0.725364, -0.418775, 0.546251, -0.837581, 0.0, 0.09534, -0.995422, 0.0, 0.088931, -0.865108, 0.493576, 0.001648, -0.90286, 0.429853, 0.071505, 0.494369, 0.866298, 0.017975, 0.390362, 0.920469, -0.006989, -0.10419, 0.994507, 0.061678, -0.002441, 0.998077, -0.006989, -0.10419, 0.994507, -0.002441, -0.559435, 0.828852, 0.104129, 0.994537, 0.0, 0.099124, 0.995056, 0.0, 0.071169, 0.828242, 0.555803, 0.072817, -0.49208, 0.867489, -0.002441, -0.559435, 0.828852, 0.001648, -0.90286, 0.429853, 0.0936, 0.865444, 0.492141, 0.071169, 0.828242, 0.555803, 0.017975, 0.390362, 0.920469, 0.09534, -0.995422, 0.0, 0.002655, -0.999969, 0.0, 0.001648, -0.90286, -0.429853, -0.006989, -0.10419, -0.994507, 0.017975, 0.390362, -0.920469, 0.071505, 0.494369, -0.866298, -0.002441, -0.559435, -0.828852, -0.006989, -0.10419, -0.994507, 0.061678, -0.002441, -0.998077, 0.071169, 0.828242, -0.555803, 0.099124, 0.995056, 0.0, 0.104129, 0.994537, 0.0, 0.001648, -0.90286, -0.429853, -0.002441, -0.559435, -0.828852, 0.072817, -0.49208, -0.867489, 0.017975, 0.390362, -0.920469, 0.071169, 0.828242, -0.555803, 0.0936, 0.865444, -0.492141, 0.003082, -0.85287, 0.52205, 0.006073, -0.999969, 0.0, 0.103763, -0.994598, 0.0, -0.092868, -0.00586, 0.995636, 0.063448, 0.273049, 0.959899, 0.11536, -0.319468, 0.940519, 0.017579, 0.269906, -0.962706, -0.049135, 0.274575, -0.960295, -0.104465, 0.822016, -0.559771, 0.101596, -0.827357, -0.552355, 0.003082, -0.85287, -0.52205, -0.009125, -0.361309, -0.932371, 0.132878, -0.774407, -0.618519, 0.11536, -0.319468, -0.940519, -0.008545, -0.3708, -0.928648, 0.063448, 0.273049, -0.959899, 0.042512, 0.786462, -0.616138, -0.078707, 0.838374, -0.539354, 0.11536, -0.319468, -0.940519, 0.063448, 0.273049, -0.959899, -0.092868, -0.00586, -0.995636, 0.132878, -0.774407, 0.618519, 0.091739, -0.995758, 0.0, 0.029939, -0.999542, 0.0, -0.008545, -0.3708, 0.928648, 0.11536, -0.319468, 0.940519, 0.132878, -0.774407, 0.618519, 0.029939, -0.999542, 0.0, 0.091739, -0.995758, 0.0, 0.132878, -0.774407, -0.618519, -0.009095, 0.999939, 0.0, 0.042512, 0.786462, 0.616138, -0.078707, 0.838374, 0.539354, -0.078707, 0.838374, 0.539354, 0.042512, 0.786462, 0.616138, 0.063448, 0.273049, 0.959899, -0.078707, 0.838374, -0.539354, 0.042512, 0.786462, -0.616138, -0.009095, 0.999939, 0.0, 0.132878, -0.774407, -0.618519, 0.101596, -0.827357, -0.552355, 0.073946, -0.333964, -0.939665, 0.063448, 0.273049, -0.959899, 0.017579, 0.269906, -0.962706, -0.057344, 0.815668, -0.57564, 0.132878, -0.774407, 0.618519, 0.101596, -0.827357, 0.552355, 0.103763, -0.994598, 0.0, 0.017579, 0.269906, -0.962706, 0.063448, 0.273049, -0.959899, 0.11536, -0.319468, -0.940519, 0.073946, -0.333964, 0.939665, 0.101596, -0.827357, 0.552355, 0.132878, -0.774407, 0.618519, 0.103763, -0.994598, 0.0, 0.101596, -0.827357, -0.552355, 0.132878, -0.774407, -0.618519, -0.0918, 0.995758, 0.0, -0.057344, 0.815668, 0.57564, 0.042512, 0.786462, 0.616138, -0.057344, 0.815668, 0.57564, 0.017579, 0.269906, 0.962706, 0.063448, 0.273049, 0.959899, 0.042512, 0.786462, -0.616138, -0.057344, 0.815668, -0.57564, -0.0918, 0.995758, 0.0, 0.017579, 0.269906, 0.962706, 0.073946, -0.333964, 0.939665, 0.11536, -0.319468, 0.940519, -0.203558, 0.821711, 0.532304, -0.17008, 0.285531, 0.943144, -0.049135, 0.274575, 0.960295, -0.1236, 0.992309, 0.0, -0.208258, 0.978057, 0.0, -0.203558, 0.821711, 0.532304, -0.114475, -0.85229, -0.510361, -0.135746, -0.370952, -0.918638, -0.009125, -0.361309, -0.932371, -0.009125, -0.361309, 0.932371, -0.135746, -0.370952, 0.918638, -0.114475, -0.85229, 0.510361, -0.049135, 0.274575, -0.960295, -0.17008, 0.285531, -0.943144, -0.203558, 0.821711, -0.532304, -0.096774, -0.9953, 0.0, -0.114475, -0.85229, -0.510361, 0.003082, -0.85287, -0.52205, -0.135746, -0.370952, 0.918638, -0.009125, -0.361309, 0.932371, -0.049135, 0.274575, 0.960295, 0.003082, -0.85287, 0.52205, -0.114475, -0.85229, 0.510361, -0.096774, -0.9953, 0.0, -0.203558, 0.821711, -0.532304, -0.208258, 0.978057, 0.0, -0.1236, 0.992309, 0.0, -0.114475, -0.85229, -0.510361, -0.341136, -0.784722, -0.517472, -0.364055, -0.326792, -0.872127, -0.096774, -0.9953, 0.0, -0.32252, -0.946532, 0.0, -0.341136, -0.784722, -0.517472, -0.364055, -0.326792, 0.872127, -0.341166, -0.784722, 0.517472, -0.114475, -0.85229, 0.510361, -0.208258, 0.978057, 0.0, -0.451216, 0.892392, 0.0, -0.45204, 0.724387, 0.520463, -0.45204, 0.724387, -0.520463, -0.451216, 0.892392, 0.0, -0.208258, 0.978057, 0.0, -0.17008, 0.285531, -0.943144, -0.408155, 0.215094, -0.887173, -0.45204, 0.724387, -0.520463, -0.45204, 0.724387, 0.520463, -0.408155, 0.215094, 0.887173, -0.17008, 0.285531, 0.943144, -0.341166, -0.784722, 0.517472, -0.32252, -0.946532, 0.0, -0.096774, -0.9953, 0.0, -0.664968, -0.397534, 0.632252, -0.742912, -0.669332, 0.0, -0.32252, -0.946532, 0.0, -0.32252, -0.946532, 0.0, -0.742912, -0.669332, 0.0, -0.664968, -0.397534, -0.632252, -0.451216, 0.892392, 0.0, -0.79397, 0.607929, 0.0, -0.68804, 0.290963, 0.664754, -0.68804, 0.290963, -0.664754, -0.79397, 0.607929, 0.0, -0.451216, 0.892392, 0.0, -0.135746, -0.370952, 0.918638, -0.17008, 0.285531, 0.943144, -0.408155, 0.215094, 0.887173, -0.664968, -0.397534, -0.632252, -0.68804, 0.290963, -0.664754, -0.408155, 0.215094, -0.887173, 0.073946, -0.333964, -0.939665, -0.009125, -0.361309, -0.932371, -0.049135, 0.274575, -0.960295, -0.135746, -0.370952, -0.918638, -0.17008, 0.285531, -0.943144, -0.049135, 0.274575, -0.960295, -0.408155, 0.215094, -0.887173, -0.17008, 0.285531, -0.943144, -0.135746, -0.370952, -0.918638, -0.408155, 0.215094, 0.887173, -0.68804, 0.290963, 0.664754, -0.664968, -0.397534, 0.632252, 0.401044, 0.916044, 0.0, 0.400586, 0.793329, -0.458388, 0.0936, 0.865444, -0.492141, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.999969, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.999969, 0.0, 0.0, 0.999969, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.999969, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.996429, 0.042085, 0.072909, 0.406232, 0.457472, 0.790979, 0.40788, 0.000183, 0.913022, 0.996429, 0.0, 0.084201, 0.40788, 0.000183, 0.913022, 0.408216, -0.456771, 0.790368, 0.996429, 0.084201, 0.0, 0.402997, 0.915189, 0.0, 0.404065, 0.792566, 0.456648, 0.996429, -0.042085, 0.072909, 0.408216, -0.456771, 0.790368, 0.405835, -0.792657, 0.454909, 0.996429, 0.072909, 0.042085, 0.404065, 0.792566, 0.456648, 0.406232, 0.457472, 0.790979, 0.996429, -0.084201, 0.0, 0.996429, -0.072909, 0.042085, 0.405835, -0.792657, 0.454909, 0.402997, 0.915189, 0.0, 0.098392, 0.995117, 0.0, 0.092196, 0.862789, 0.497024, 0.408216, -0.456771, 0.790368, 0.091189, -0.490463, 0.866665, 0.103916, -0.861995, 0.496109, 0.404065, 0.792566, 0.456648, 0.092196, 0.862789, 0.497024, 0.081301, 0.501053, 0.861568, 0.405835, -0.792657, 0.454909, 0.103916, -0.861995, 0.496109, 0.108127, -0.99411, 0.0, 0.406232, 0.457472, 0.790979, 0.081301, 0.501053, 0.861568, 0.080752, 0.008484, 0.996673, 0.40788, 0.000183, 0.913022, 0.080752, 0.008484, 0.996673, 0.091189, -0.490463, 0.866665, -0.004639, -0.538621, 0.842524, -0.006806, -0.89938, 0.437086, 0.103916, -0.861995, 0.496109, 0.092196, 0.862789, 0.497024, -0.006867, 0.831721, 0.555132, -0.004669, 0.399823, 0.916562, -0.006806, -0.89938, 0.437086, -0.005463, -0.999969, 0.0, 0.108127, -0.99411, 0.0, 0.081301, 0.501053, 0.861568, -0.004669, 0.399823, 0.916562, -0.003632, -0.092227, 0.995727, -0.006867, 0.831721, -0.555132, -0.008301, 0.999939, 0.0, 0.098392, 0.995117, 0.0, 0.080752, 0.008484, 0.996673, -0.003632, -0.092227, 0.995727, -0.004639, -0.538621, 0.842524, -0.451949, -0.892026, 0.0, -0.211005, -0.486038, 0.848048, -0.490524, -0.72335, 0.485916, -0.156407, 0.987671, 0.0, -0.254097, 0.967162, 0.0, -0.256172, 0.913572, 0.315836, -0.14713, -0.511917, 0.846309, -0.490524, -0.72335, 0.485916, -0.211005, -0.486038, 0.848048, -0.004669, 0.399823, 0.916562, -0.006867, 0.831721, 0.555132, -0.038423, 0.837916, 0.54442, -0.006806, -0.89938, 0.437086, -0.004639, -0.538621, 0.842524, -0.031922, -0.625111, 0.77987, -0.006867, 0.831721, 0.555132, -0.008301, 0.999939, 0.0, -0.048433, 0.99881, 0.0, -0.004639, -0.538621, 0.842524, -0.003632, -0.092227, 0.995727, -0.089694, -0.309305, 0.946715, -0.003632, -0.092227, 0.995727, -0.004669, 0.399823, 0.916562, -0.057497, 0.35139, 0.934446, -0.005463, -0.999969, 0.0, -0.006806, -0.89938, 0.437086, -0.095004, -0.862117, 0.497696, -0.038423, 0.837916, 0.54442, -0.164983, 0.854244, 0.492935, -0.143193, 0.504746, 0.851283, -0.048433, 0.99881, 0.0, -0.156407, 0.987671, 0.0, -0.164983, 0.854244, 0.492935, -0.057497, 0.35139, 0.934446, -0.143193, 0.504746, 0.851283, -0.149449, -0.577013, 0.802911, -0.094485, -0.995514, 0.0, -0.095004, -0.862117, 0.497696, -0.114353, -0.578753, 0.807428, 0.40788, 0.000183, -0.913022, 0.406232, 0.457472, -0.790979, 0.996429, 0.042085, -0.072939, 0.996429, -0.042085, -0.072909, 0.408216, -0.456771, -0.790368, 0.40788, 0.000183, -0.913022, 0.404065, 0.792566, -0.456648, 0.402997, 0.915189, 0.0, 0.996429, 0.084201, 0.0, 0.996429, -0.072909, -0.042085, 0.405835, -0.792657, -0.454909, 0.408216, -0.456771, -0.790368, 0.406232, 0.457472, -0.790979, 0.404065, 0.792566, -0.456648, 0.996429, 0.072909, -0.042085, 0.996429, -0.084201, 0.0, 0.401654, -0.915769, 0.0, 0.405835, -0.792657, -0.454909, 0.092196, 0.862789, -0.497024, 0.098392, 0.995117, 0.0, 0.402997, 0.915189, 0.0, 0.103916, -0.861995, -0.496109, 0.091189, -0.490463, -0.866665, 0.408216, -0.456771, -0.790368, 0.081301, 0.501053, -0.861568, 0.092196, 0.862789, -0.497024, 0.404065, 0.792566, -0.456648, 0.108127, -0.99411, 0.0, 0.103916, -0.861995, -0.496109, 0.405835, -0.792657, -0.454909, 0.080752, 0.008484, -0.996673, 0.081301, 0.501053, -0.861568, 0.406232, 0.457472, -0.790979, 0.091189, -0.490463, -0.866665, 0.080752, 0.008484, -0.996673, 0.40788, 0.000183, -0.913022, 0.103916, -0.861995, -0.496109, -0.006806, -0.89938, -0.437086, -0.004639, -0.538621, -0.842524, -0.004669, 0.399823, -0.916562, -0.006867, 0.831721, -0.555132, 0.092196, 0.862789, -0.497024, 0.108127, -0.99411, 0.0, -0.005463, -0.999969, 0.0, -0.006806, -0.89938, -0.437086, -0.003632, -0.092227, -0.995727, -0.004669, 0.399823, -0.916562, 0.081301, 0.501053, -0.861568, -0.004639, -0.538621, -0.842524, -0.003632, -0.092227, -0.995727, 0.080752, 0.008484, -0.996673, -0.451949, -0.892026, 0.0, -0.640889, -0.767602, 0.0, -0.490524, -0.72335, -0.485916, -0.256172, 0.913541, -0.315836, -0.254097, 0.967162, 0.0, -0.156407, 0.987671, 0.0, -0.211005, -0.486038, -0.848048, -0.490524, -0.72335, -0.485916, -0.14713, -0.511917, -0.846309, -0.004669, 0.399823, -0.916562, -0.057497, 0.35139, -0.934446, -0.038423, 0.837916, -0.54442, -0.006806, -0.89938, -0.437086, -0.095004, -0.862117, -0.497696, -0.031922, -0.625111, -0.77987, -0.006867, 0.831721, -0.555132, -0.038423, 0.837916, -0.54442, -0.048433, 0.99881, 0.0, -0.004639, -0.538621, -0.842524, -0.031922, -0.625111, -0.77987, -0.089694, -0.309305, -0.946715, -0.003632, -0.092227, -0.995727, -0.089694, -0.309305, -0.946715, -0.057497, 0.35139, -0.934446, -0.005463, -0.999969, 0.0, -0.094485, -0.995514, 0.0, -0.095004, -0.862117, -0.497696, -0.143193, 0.504746, -0.851283, -0.164983, 0.854244, -0.492935, -0.038423, 0.837916, -0.54442, -0.164983, 0.854244, -0.492935, -0.156407, 0.987671, 0.0, -0.048433, 0.99881, 0.0, -0.149449, -0.577013, -0.802911, -0.143193, 0.504746, -0.851283, -0.057497, 0.35139, -0.934446, -0.094485, -0.995514, 0.0, -0.284982, -0.958525, 0.0, -0.114353, -0.578753, -0.807428, 0.996429, -0.072909, -0.042085, 0.996429, -0.042085, -0.072909, 0.546251, 0.418775, 0.725364, 0.996429, 0.0, 0.084201, 0.996429, -0.042085, 0.072909, 0.546251, 0.418775, -0.725364, 0.996429, 0.072909, -0.042085, 0.546251, -0.725364, 0.418775, 0.546281, -0.418775, 0.725364, 0.996429, 0.072909, 0.042085, 0.546251, -0.725364, -0.418775, 0.546251, -0.837581, 0.0, 0.996429, -0.084201, 0.0, 0.996429, -0.072909, -0.042085, 0.546251, 0.725364, 0.418775, 0.996429, -0.042085, 0.072909, 0.996429, -0.072909, 0.042085, 0.546251, 0.725364, -0.418775, 0.996429, 0.042085, 0.072909, 0.546251, -0.418775, -0.725364, 0.546251, -0.725364, -0.418775, 0.996429, 0.0, -0.084201, 0.996429, 0.042085, -0.072939, 0.546281, -0.418775, 0.725364, 0.996429, -0.072909, 0.042085, 0.996429, -0.084201, 0.0, 0.546251, 0.837581, 0.0, 0.996429, 0.0, -0.084201, 0.546281, 0.0, 0.837581, 0.546251, 0.418775, 0.725364, 0.996429, 0.0, 0.084201, 0.546251, 0.0, -0.837611, 0.546251, -0.418775, -0.725364, 0.996429, 0.084201, 0.0, 0.546251, -0.837581, 0.0, 0.546251, -0.725364, 0.418775, 0.098392, 0.995117, 0.0, -0.008301, 0.999939, 0.0, -0.006867, 0.831721, 0.555132, 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, 0.999969, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.999969, 0.0, 0.0, -0.284982, -0.958525, 0.0, -0.451949, -0.892026, 0.0, -0.211005, -0.486038, -0.848048, -0.284982, -0.958525, 0.0, -0.114353, -0.578753, 0.807428, -0.211005, -0.486038, 0.848048, 0.40788, 0.000183, -0.913022, 0.406232, 0.457472, -0.790979, 0.996429, 0.042085, -0.072909, 0.408216, -0.456771, -0.790368, 0.40788, 0.000183, -0.913022, 0.996429, 0.0, -0.08417, 0.404065, 0.792566, -0.456648, 0.402997, 0.915189, 0.0, 0.996429, 0.084201, 0.0, 0.405835, -0.792657, -0.454909, 0.408216, -0.456771, -0.790368, 0.996429, -0.042085, -0.072939, 0.406232, 0.457472, -0.790979, 0.404065, 0.792566, -0.456648, 0.996429, 0.072909, -0.042085, 0.996429, -0.084201, 0.0, 0.401654, -0.915769, 0.0, 0.405835, -0.792657, -0.454909, 0.092196, 0.862789, -0.497024, 0.098392, 0.995117, 0.0, 0.402997, 0.915189, 0.0, 0.103916, -0.861995, -0.496109, 0.091189, -0.490463, -0.866665, 0.408216, -0.456771, -0.790368, 0.081301, 0.501053, -0.861568, 0.092196, 0.862789, -0.497024, 0.404065, 0.792566, -0.456648, 0.108127, -0.99411, 0.0, 0.103916, -0.861995, -0.496109, 0.405835, -0.792657, -0.454909, 0.080752, 0.008484, -0.996673, 0.081301, 0.501053, -0.861568, 0.406232, 0.457472, -0.790979, 0.091189, -0.490463, -0.866665, 0.080752, 0.008484, -0.996673, 0.40788, 0.000183, -0.913022, 0.103916, -0.861995, -0.496109, -0.006806, -0.89938, -0.437086, -0.004639, -0.538621, -0.842524, 0.092196, 0.862789, -0.497024, 0.081301, 0.501053, -0.861568, -0.004669, 0.399823, -0.916562, 0.108127, -0.99411, 0.0, -0.005463, -0.999969, 0.0, -0.006806, -0.89938, -0.437086, 0.081301, 0.501053, -0.861568, 0.080752, 0.008484, -0.996673, -0.003632, -0.092227, -0.995727, 0.098392, 0.995117, 0.0, -0.008301, 0.999939, 0.0, -0.006867, 0.831721, 0.555132, 0.080752, 0.008484, -0.996673, 0.091189, -0.490463, -0.866665, -0.004639, -0.538621, -0.842524, -0.451949, -0.892026, 0.0, -0.640889, -0.767602, 0.0, -0.490524, -0.72335, -0.485916, -0.256172, 0.913541, -0.315836, -0.254097, 0.967162, 0.0, -0.156407, 0.987671, 0.0, -0.211005, -0.486038, -0.848048, -0.490524, -0.72335, -0.485916, -0.14713, -0.511917, -0.846309, -0.004669, 0.399823, -0.916562, -0.057497, 0.35139, -0.934446, -0.038423, 0.837916, -0.54442, -0.006806, -0.89938, -0.437086, -0.095004, -0.862117, -0.497696, -0.031922, -0.625111, -0.77987, -0.006867, 0.831721, -0.555132, -0.038423, 0.837916, -0.54442, -0.048433, 0.99881, 0.0, -0.004639, -0.538621, -0.842524, -0.031922, -0.625111, -0.77987, -0.089694, -0.309305, -0.946715, -0.003632, -0.092227, -0.995727, -0.089694, -0.309305, -0.946715, -0.057497, 0.35139, -0.934446, -0.005463, -0.999969, 0.0, -0.094485, -0.995514, 0.0, -0.095004, -0.862117, -0.497696, -0.143193, 0.504746, -0.851283, -0.164983, 0.854244, -0.492935, -0.038423, 0.837916, -0.54442, -0.164983, 0.854244, -0.492935, -0.156407, 0.987671, 0.0, -0.048433, 0.99881, 0.0, -0.149449, -0.577013, -0.802911, -0.143193, 0.504746, -0.851283, -0.057497, 0.35139, -0.934446, -0.094485, -0.995514, 0.0, -0.284982, -0.958525, 0.0, -0.114353, -0.578753, -0.807428, 0.996429, 0.042085, 0.072939, 0.406232, 0.457472, 0.790979, 0.40788, 0.000183, 0.913022, 0.996429, -0.042085, 0.072909, 0.996429, 0.0, 0.084201, 0.40788, 0.000183, 0.913022, 0.996429, 0.084201, 0.0, 0.402997, 0.915189, 0.0, 0.404065, 0.792566, 0.456648, 0.996429, -0.072909, 0.042085, 0.996429, -0.042085, 0.072909, 0.408216, -0.456771, 0.790368, 0.996429, 0.072909, 0.042085, 0.404065, 0.792566, 0.456648, 0.406232, 0.457472, 0.790979, 0.996429, -0.084201, 0.0, 0.996429, -0.072909, 0.042085, 0.405835, -0.792657, 0.454909, 0.402997, 0.915189, 0.0, 0.098392, 0.995117, 0.0, 0.092196, 0.862789, 0.497024, 0.408216, -0.456771, 0.790368, 0.091189, -0.490463, 0.866665, 0.103916, -0.861995, 0.496109, 0.404065, 0.792566, 0.456648, 0.092196, 0.862789, 0.497024, 0.081301, 0.501053, 0.861568, 0.405835, -0.792657, 0.454909, 0.103916, -0.861995, 0.496109, 0.108127, -0.99411, 0.0, 0.406232, 0.457472, 0.790979, 0.081301, 0.501053, 0.861568, 0.080752, 0.008484, 0.996673, 0.40788, 0.000183, 0.913022, 0.080752, 0.008484, 0.996673, 0.091189, -0.490463, 0.866665, 0.103916, -0.861995, 0.496109, 0.091189, -0.490463, 0.866665, -0.004639, -0.538621, 0.842524, 0.092196, 0.862789, 0.497024, -0.006867, 0.831721, 0.555132, -0.004669, 0.399823, 0.916562, 0.108127, -0.99411, 0.0, 0.103916, -0.861995, 0.496109, -0.006806, -0.89938, 0.437086, 0.081301, 0.501053, 0.861568, -0.004669, 0.399823, 0.916562, -0.003632, -0.092227, 0.995727, 0.080752, 0.008484, 0.996673, -0.003632, -0.092227, 0.995727, -0.004639, -0.538621, 0.842524, -0.451949, -0.892026, 0.0, -0.211005, -0.486068, 0.848048, -0.490524, -0.72335, 0.485916, -0.156407, 0.987671, 0.0, -0.254097, 0.967162, 0.0, -0.256172, 0.913572, 0.315836, -0.14713, -0.511917, 0.846309, -0.490524, -0.72335, 0.485916, -0.211005, -0.486068, 0.848048, -0.004669, 0.399823, 0.916562, -0.006867, 0.831721, 0.555132, -0.038423, 0.837916, 0.54442, -0.006806, -0.89938, 0.437086, -0.004639, -0.538621, 0.842524, -0.031922, -0.625111, 0.77987, -0.006867, 0.831721, 0.555132, -0.008301, 0.999939, 0.0, -0.048433, 0.99881, 0.0, -0.004639, -0.538621, 0.842524, -0.003632, -0.092227, 0.995727, -0.089694, -0.309305, 0.946715, -0.003632, -0.092227, 0.995727, -0.004669, 0.399823, 0.916562, -0.057497, 0.35139, 0.934446, -0.005463, -0.999969, 0.0, -0.006806, -0.89938, 0.437086, -0.095004, -0.862117, 0.497696, -0.038423, 0.837916, 0.54442, -0.164983, 0.854244, 0.492935, -0.143193, 0.504746, 0.851283, -0.048433, 0.99881, 0.0, -0.156407, 0.987671, 0.0, -0.164983, 0.854244, 0.492935, -0.057497, 0.35139, 0.934446, -0.143193, 0.504746, 0.851283, -0.149449, -0.577013, 0.802911, -0.094485, -0.995514, 0.0, -0.095004, -0.862117, 0.497696, -0.114353, -0.578753, 0.807428, 0.996429, -0.072909, 0.042085, 0.546251, 0.725364, -0.418806, 0.546251, 0.418775, -0.725364, 0.996429, 0.0, -0.08417, 0.546251, 0.0, 0.837611, 0.546251, 0.418775, 0.725364, 0.546281, -0.418775, -0.725364, 0.546251, -0.725364, -0.418775, 0.996429, 0.072909, 0.042085, 0.546251, -0.837581, 0.0, 0.546251, -0.725364, 0.418775, 0.996429, 0.072909, -0.042085, 0.996429, -0.084201, 0.0, 0.546251, 0.837581, 0.0, 0.546251, 0.725364, -0.418806, 0.996429, -0.042085, -0.072939, 0.546251, 0.418775, 0.725364, 0.546251, 0.725364, 0.418775, 0.546251, -0.725364, 0.418775, 0.546251, -0.418775, 0.725394, 0.996429, 0.042085, -0.072909, 0.996429, 0.0, 0.084201, 0.546281, 0.0, -0.837581, 0.546281, -0.418775, -0.725364, 0.996429, -0.072909, -0.042085, 0.546251, 0.725364, 0.418775, 0.546251, 0.837581, 0.0, 0.546251, 0.418775, -0.725364, 0.546281, 0.0, -0.837581, 0.996429, 0.0, 0.084201, 0.546251, -0.418775, 0.725394, 0.546251, 0.0, 0.837611, 0.996429, 0.0, -0.08417, 0.546251, -0.725364, -0.418775, 0.546251, -0.837581, 0.0, 0.996429, 0.084201, 0.0, 0.098392, 0.995117, 0.0, 0.092196, 0.862789, -0.497024, -0.006867, 0.831721, -0.555132, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.999969, 0.0, 0.0, 1.0, 0.0, 0.0, 0.999969, 0.0, 0.0, 0.999969, 0.0, 0.0, 0.999969, 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, 0.999969, 0.0, 0.0, -0.284982, -0.958525, 0.0, -0.114353, -0.578753, 0.807428, -0.211005, -0.486068, 0.848048, -0.284982, -0.958525, 0.0, -0.451949, -0.892026, 0.0, -0.211005, -0.486038, -0.848048, 0.113102, 0.993561, 0.0, 0.113102, 0.702567, -0.702567, 0.0, 0.707083, -0.707083, 0.113102, 0.993561, 0.0, 0.332591, 0.943052, 0.0, 0.348003, 0.662893, -0.662893, 0.113102, 0.702567, -0.702567, 0.113102, 0.0, -0.993561, 0.0, 0.0, -1.0, 0.113102, 0.702567, -0.702567, 0.348003, 0.662893, -0.662893, 0.332591, 0.0, -0.943052, 0.113102, 0.0, -0.993561, 0.113102, -0.702567, -0.702567, 0.0, -0.707083, -0.707083, 0.113102, 0.0, -0.993561, 0.332591, 0.0, -0.943052, 0.348003, -0.662893, -0.662893, 0.113102, -0.702567, -0.702567, 0.113102, -0.993561, 0.0, 0.0, -1.0, 0.0, 0.348003, -0.662893, -0.662893, 0.332591, -0.943052, 0.0, 0.113102, -0.993561, 0.0, 0.113102, -0.993561, 0.0, 0.332591, -0.943052, 0.0, 0.348003, -0.662893, 0.662893, 0.113102, -0.993561, 0.0, 0.113102, -0.702567, 0.702567, 0.0, -0.707083, 0.707083, 0.348003, -0.662893, 0.662893, 0.332591, 0.0, 0.943052, 0.113102, 0.0, 0.993561, 0.113102, -0.702567, 0.702567, 0.113102, 0.0, 0.993561, 0.0, 0.0, 1.0, 0.332591, 0.0, 0.943052, 0.348003, 0.662893, 0.662893, 0.113102, 0.702567, 0.702567, 0.113102, 0.0, 0.993561, 0.113102, 0.702567, 0.702567, 0.0, 0.707083, 0.707083, 0.113102, 0.702567, 0.702567, 0.113102, 0.993561, 0.0, 0.0, 1.0, 0.0, 0.348003, 0.662893, 0.662893, 0.332591, 0.943052, 0.0, 0.113102, 0.993561, 0.0, 0.0, 0.707083, 0.707083, 0.113102, 0.702567, 0.702567, 0.113102, 0.993561, 0.0, 0.113102, 0.993561, 0.0, 0.113102, 0.702567, 0.702567, 0.348003, 0.662893, 0.662893, 0.0, 0.0, 1.0, 0.113102, 0.0, 0.993561, 0.113102, 0.702567, 0.702567, 0.113102, 0.702567, 0.702567, 0.113102, 0.0, 0.993561, 0.332591, 0.0, 0.943052, 0.0, -0.707083, 0.707083, 0.113102, -0.702567, 0.702567, 0.113102, 0.0, 0.993561, 0.113102, 0.0, 0.993561, 0.113102, -0.702567, 0.702567, 0.348003, -0.662893, 0.662893, 0.0, -1.0, 0.0, 0.113102, -0.993561, 0.0, 0.113102, -0.702567, 0.702567, 0.113102, -0.993561, 0.0, 0.332591, -0.943052, 0.0, 0.348003, -0.662893, 0.662893, 0.113102, -0.993561, 0.0, 0.113102, -0.702567, -0.702567, 0.348003, -0.662893, -0.662893, 0.0, -0.707083, -0.707083, 0.113102, -0.702567, -0.702567, 0.113102, -0.993561, 0.0, 0.113102, 0.0, -0.993561, 0.332591, 0.0, -0.943052, 0.348003, -0.662893, -0.662893, 0.0, 0.0, -1.0, 0.113102, 0.0, -0.993561, 0.113102, -0.702567, -0.702567, 0.113102, 0.702567, -0.702567, 0.348003, 0.662893, -0.662893, 0.332591, 0.0, -0.943052, 0.0, 0.707083, -0.707083, 0.113102, 0.702567, -0.702567, 0.113102, 0.0, -0.993561, 0.0, 1.0, 0.0, 0.113102, 0.993561, 0.0, 0.113102, 0.702567, -0.702567, 0.113102, 0.993561, 0.0, 0.332591, 0.943052, 0.0, 0.348003, 0.662893, -0.662893, 0.113102, 0.993561, 0.0, 0.113102, 0.702567, -0.702567, 0.0, 0.707083, -0.707083, 0.113102, 0.993561, 0.0, 0.332591, 0.943052, 0.0, 0.348003, 0.662893, -0.662893, 0.0, 0.707083, -0.707083, 0.113102, 0.702567, -0.702567, 0.113102, 0.0, -0.993561, 0.113102, 0.702567, -0.702567, 0.348003, 0.662893, -0.662893, 0.332591, 0.0, -0.943052, 0.113102, 0.0, -0.993561, 0.113102, -0.702567, -0.702567, 0.0, -0.707083, -0.707083, 0.113102, 0.0, -0.993561, 0.332591, 0.0, -0.943052, 0.348003, -0.662893, -0.662893, 0.0, -0.707083, -0.707083, 0.113102, -0.702567, -0.702567, 0.113102, -0.993561, 0.0, 0.348003, -0.662893, -0.662893, 0.332591, -0.943052, 0.0, 0.113102, -0.993561, 0.0, 0.113102, -0.993561, 0.0, 0.332591, -0.943052, 0.0, 0.348003, -0.662893, 0.662893, 0.113102, -0.993561, 0.0, 0.113102, -0.702567, 0.702567, 0.0, -0.707083, 0.707083, 0.348003, -0.662893, 0.662893, 0.332591, 0.0, 0.943052, 0.113102, 0.0, 0.993561, 0.113102, -0.702567, 0.702567, 0.113102, 0.0, 0.993561, 0.0, 0.0, 1.0, 0.332591, 0.0, 0.943052, 0.348003, 0.662893, 0.662893, 0.113102, 0.702567, 0.702567, 0.0, 0.0, 1.0, 0.113102, 0.0, 0.993561, 0.113102, 0.702567, 0.702567, 0.0, 0.707083, 0.707083, 0.113102, 0.702567, 0.702567, 0.113102, 0.993561, 0.0, 0.348003, 0.662893, 0.662893, 0.332591, 0.943052, 0.0, 0.113102, 0.993561, 0.0, 0.0, 1.0, 0.0, 0.0, 0.707083, 0.707083, 0.113102, 0.702567, 0.702567, 0.113102, 0.993561, 0.0, 0.113102, 0.702567, 0.702567, 0.348003, 0.662893, 0.662893, 0.0, 0.0, 1.0, 0.113102, 0.0, 0.993561, 0.113102, 0.702567, 0.702567, 0.113102, 0.702567, 0.702567, 0.113102, 0.0, 0.993561, 0.332591, 0.0, 0.943052, 0.0, 0.0, 1.0, 0.0, -0.707083, 0.707083, 0.113102, -0.702567, 0.702567, 0.113102, 0.0, 0.993561, 0.113102, -0.702567, 0.702567, 0.348003, -0.662893, 0.662893, 0.0, -1.0, 0.0, 0.113102, -0.993561, 0.0, 0.113102, -0.702567, 0.702567, 0.113102, -0.993561, 0.0, 0.332591, -0.943052, 0.0, 0.348003, -0.662893, 0.662893, 0.113102, -0.993561, 0.0, 0.113102, -0.702567, -0.702567, 0.348003, -0.662893, -0.662893, 0.0, -1.0, 0.0, 0.0, -0.707083, -0.707083, 0.113102, -0.702567, -0.702567, 0.113102, 0.0, -0.993561, 0.332591, 0.0, -0.943052, 0.348003, -0.662893, -0.662893, 0.0, 0.0, -0.999969, 0.113102, 0.0, -0.993561, 0.113102, -0.702567, -0.702567, 0.113102, 0.702567, -0.702567, 0.348003, 0.662893, -0.662893, 0.332591, 0.0, -0.943052, 0.0, 0.707083, -0.707083, 0.113102, 0.702567, -0.702567, 0.113102, 0.0, -0.993561, 0.0, 1.0, 0.0, 0.113102, 0.993561, 0.0, 0.113102, 0.702567, -0.702567, 0.113102, 0.993561, 0.0, 0.332591, 0.943052, 0.0, 0.348003, 0.662893, -0.662893, 0.351543, -0.936155, 0.0, 0.988189, -0.153142, 0.0, 0.989532, -0.143712, 0.012421, 0.426313, -0.629536, 0.649525, 0.964873, -0.233192, 0.120731, 0.984405, -0.001099, 0.175756, 0.984405, -0.001099, -0.175756, 0.964873, -0.233192, -0.120731, 0.426344, -0.629536, -0.649525, 0.989532, -0.143712, -0.012421, 0.988189, -0.153142, 0.0, 0.351543, -0.936155, 0.0, 0.372631, -0.897366, 0.236274, 0.989532, -0.143712, 0.012421, 0.964873, -0.233192, 0.120731, 0.984405, -0.001099, 0.175756, 0.997223, -0.013337, -0.073214, 0.481429, 0.264534, 0.835566, 0.48146, 0.264534, -0.835566, 0.997223, -0.013337, 0.073244, 0.984405, -0.001099, -0.175756, 0.964873, -0.233192, -0.120731, 0.989532, -0.143712, -0.012421, 0.372631, -0.897366, -0.236274, -0.144505, -0.967681, 0.20661, -0.147069, -0.989105, 0.0, 0.021668, -0.999756, 0.0, -0.145054, -0.058229, 0.987701, -0.15125, -0.718619, 0.678701, 0.036317, -0.703421, 0.70983, 0.036317, -0.703421, -0.70983, -0.15125, -0.718619, -0.678701, -0.145054, -0.058229, -0.987701, 0.021668, -0.999756, 0.0, -0.147069, -0.989105, 0.0, -0.144505, -0.967681, -0.20661, -0.15125, -0.718619, 0.678701, -0.144505, -0.967681, 0.20661, 0.024903, -0.964049, 0.264473, 0.038087, 0.29078, 0.956023, -0.120914, 0.305063, 0.944609, -0.145054, -0.058229, 0.987701, -0.145054, -0.058229, -0.987701, -0.120914, 0.305063, -0.944609, 0.038087, 0.29078, -0.956023, 0.024903, -0.964049, -0.264473, -0.144505, -0.967681, -0.20661, -0.15125, -0.718619, -0.678701, -0.310068, -0.638569, 0.704276, -0.24427, -0.969695, 0.0, -0.144505, -0.967681, 0.20661, -0.252785, 0.032075, 0.966979, -0.310068, -0.638569, 0.704276, -0.145054, -0.058229, 0.987701, -0.145054, -0.058229, -0.987701, -0.310068, -0.638569, -0.704276, -0.252785, 0.032075, -0.966979, -0.144505, -0.967681, -0.20661, -0.24427, -0.969695, 0.0, -0.310068, -0.638569, -0.704276, 0.426344, -0.629536, -0.649525, 0.372631, -0.897366, -0.236274, 0.024903, -0.964049, -0.264473, 0.038087, 0.29078, -0.956023, 0.48146, 0.264534, -0.835566, 0.4626, -0.039338, -0.885678, 0.4626, -0.039338, 0.885678, 0.481429, 0.264534, 0.835566, 0.038087, 0.29078, 0.956023, 0.024903, -0.964049, 0.264473, 0.372631, -0.897366, 0.236274, 0.426313, -0.629536, 0.649525, 0.372631, -0.897366, -0.236274, 0.351543, -0.936155, 0.0, 0.021668, -0.999756, 0.0, 0.4626, -0.039338, -0.885678, 0.426344, -0.629536, -0.649525, 0.036317, -0.703421, -0.70983, 0.036317, -0.703421, 0.70983, 0.426313, -0.629536, 0.649525, 0.4626, -0.039338, 0.885678, 0.021668, -0.999756, 0.0, 0.351543, -0.936155, 0.0, 0.372631, -0.897366, 0.236274, 0.997223, -0.013337, 0.073244, 0.779565, -0.164495, 0.604297, 0.821589, 0.028413, 0.569323, 0.989532, -0.143712, -0.012421, 0.964873, -0.233192, -0.120731, 0.791864, 0.490677, 0.363506, 0.988189, -0.153142, 0.0, 0.734397, 0.678701, 0.0, 0.746178, 0.653859, -0.125004, 0.989532, -0.143712, 0.012421, 0.746178, 0.653859, -0.125004, 0.791864, 0.490677, -0.363506, 0.964873, -0.233192, -0.120731, 0.984405, -0.001099, -0.175756, 0.821589, 0.028413, 0.569323, 0.988189, -0.153142, 0.0, 0.989532, -0.143712, -0.012421, 0.746178, 0.653859, 0.125004, 0.964873, -0.233192, 0.120731, 0.791864, 0.490677, -0.363506, 0.821589, 0.028413, -0.569323, 0.997223, -0.013337, -0.073214, 0.984405, -0.001099, 0.175756, 0.821589, 0.028413, -0.569323, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.999969, 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, -0.999969, 0.0, 0.0, -1.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.351543, -0.936155, 0.0, 0.372631, -0.897366, -0.236274, 0.989532, -0.143712, -0.012421, 0.426344, -0.629536, -0.649525, 0.4626, -0.039338, -0.885678, 0.984405, -0.001099, -0.175726, 0.426344, -0.629536, 0.649525, 0.964904, -0.233192, 0.120731, 0.984405, -0.001099, 0.175756, 0.351543, -0.936155, 0.0, 0.988189, -0.153142, 0.0, 0.989532, -0.143712, 0.012421, 0.372631, -0.897366, -0.236274, 0.426344, -0.629536, -0.649525, 0.964904, -0.233192, -0.120731, 0.481429, 0.264534, -0.835566, 0.997223, -0.013337, 0.073214, 0.984405, -0.001099, -0.175726, 0.481429, 0.264534, 0.835566, 0.4626, -0.039338, 0.885678, 0.984405, -0.001099, 0.175756, 0.372631, -0.897366, 0.236274, 0.989532, -0.143712, 0.012421, 0.964904, -0.233192, 0.120731, 0.021668, -0.999756, 0.0, -0.147069, -0.989105, 0.0, -0.144505, -0.967681, -0.20661, 0.036317, -0.703421, -0.70983, -0.15125, -0.718619, -0.678701, -0.145054, -0.058229, -0.987701, 0.036317, -0.703421, 0.70983, 0.0412, -0.071078, 0.996612, -0.145054, -0.058229, 0.987701, 0.021668, -0.999756, 0.0, 0.024903, -0.964049, 0.264473, -0.144505, -0.967681, 0.20661, 0.024903, -0.964049, -0.264473, -0.144505, -0.967681, -0.20661, -0.15125, -0.718619, -0.678701, 0.038087, 0.29078, -0.956023, 0.0412, -0.071078, -0.996612, -0.145054, -0.058229, -0.987701, 0.038087, 0.29078, 0.956023, -0.120914, 0.305063, 0.944609, -0.145054, -0.058229, 0.987701, 0.024903, -0.964049, 0.264473, 0.036317, -0.703421, 0.70983, -0.15125, -0.718619, 0.678701, -0.144505, -0.967681, -0.20661, -0.24427, -0.969695, 0.0, -0.310068, -0.638569, -0.704276, -0.145054, -0.058229, -0.987701, -0.310068, -0.638569, -0.704276, -0.252785, 0.032075, -0.966979, -0.145054, -0.058229, 0.987701, -0.120914, 0.305063, 0.944609, -0.252785, 0.032075, 0.966979, -0.144505, -0.967681, 0.20661, -0.15125, -0.718619, 0.678701, -0.310068, -0.638569, 0.704276, 0.024903, -0.964049, 0.264473, 0.372631, -0.897366, 0.236274, 0.426344, -0.629536, 0.649525, 0.038087, 0.29078, 0.956023, 0.0412, -0.071078, 0.996612, 0.4626, -0.039338, 0.885678, 0.038087, 0.29078, -0.956023, 0.481429, 0.264534, -0.835566, 0.4626, -0.039338, -0.885678, 0.024903, -0.964049, -0.264473, 0.036317, -0.703421, -0.70983, 0.426344, -0.629536, -0.649525, 0.021668, -0.999756, 0.0, 0.351543, -0.936155, 0.0, 0.372631, -0.897366, 0.236274, 0.036317, -0.703421, 0.70983, 0.426344, -0.629536, 0.649525, 0.4626, -0.039338, 0.885678, 0.036317, -0.703421, -0.70983, 0.0412, -0.071078, -0.996612, 0.4626, -0.039338, -0.885678, 0.021668, -0.999756, 0.0, 0.024903, -0.964049, -0.264473, 0.372631, -0.897366, -0.236274, 0.821589, 0.028413, -0.569353, 0.779565, -0.164495, -0.604266, 0.997223, -0.013337, -0.073214, 0.989532, -0.143712, 0.012421, 0.746178, 0.653859, -0.125034, 0.791864, 0.490677, -0.363506, 0.746178, 0.653859, 0.125004, 0.734397, 0.678701, 0.0, 0.988189, -0.153142, 0.0, 0.791864, 0.490677, 0.363506, 0.746178, 0.653859, 0.125004, 0.989532, -0.143712, -0.012421, 0.964904, -0.233192, 0.120731, 0.791864, 0.490677, -0.363506, 0.821589, 0.028413, -0.569353, 0.988189, -0.153142, 0.0, 0.734397, 0.678701, 0.0, 0.746178, 0.653859, -0.125034, 0.821589, 0.028413, 0.569353, 0.791864, 0.490677, 0.363506, 0.964904, -0.233192, -0.120731, 0.997223, -0.013337, 0.073214, 0.779595, -0.164495, 0.604266, 0.821589, 0.028413, 0.569353, 0.999969, 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, -0.999969, 0.0, 0.0, -0.999969, 0.0, 0.0, -1.0, 0.0, 0.0, 0.351543, -0.936155, 0.0, 0.988189, -0.153142, 0.0, 0.989532, -0.143712, 0.012421, 0.426344, -0.629536, 0.649525, 0.964904, -0.233192, 0.120731, 0.984405, -0.001099, 0.175756, 0.984405, -0.001099, -0.175726, 0.964904, -0.233192, -0.120731, 0.426344, -0.629536, -0.649525, 0.989532, -0.143712, -0.012421, 0.988189, -0.153142, 0.0, 0.351543, -0.936155, 0.0, 0.372631, -0.897366, 0.236274, 0.989532, -0.143712, 0.012421, 0.964904, -0.233192, 0.120731, 0.984405, -0.001099, 0.175756, 0.997223, -0.013337, -0.073214, 0.481429, 0.264534, 0.835566, 0.48146, 0.264534, -0.835566, 0.997223, -0.013337, 0.073214, 0.984405, -0.001099, -0.175726, 0.964904, -0.233192, -0.120731, 0.989532, -0.143712, -0.012421, 0.372631, -0.897366, -0.236274, -0.144505, -0.967681, 0.20661, -0.147069, -0.989105, 0.0, 0.021668, -0.999756, 0.0, -0.145054, -0.058229, 0.987701, -0.15125, -0.718619, 0.678701, 0.036317, -0.703421, 0.70983, 0.036317, -0.703421, -0.70983, -0.15125, -0.718619, -0.678701, -0.145054, -0.058229, -0.987701, 0.021668, -0.999756, 0.0, -0.147069, -0.989105, 0.0, -0.144505, -0.967681, -0.20661, -0.15125, -0.718619, 0.678701, -0.144505, -0.967681, 0.20661, 0.024903, -0.964049, 0.264473, 0.038087, 0.29078, 0.956023, -0.120914, 0.305063, 0.944609, -0.145054, -0.058229, 0.987701, -0.145054, -0.058229, -0.987701, -0.120914, 0.305063, -0.944609, 0.038087, 0.29078, -0.956023, 0.024903, -0.964049, -0.264473, -0.144505, -0.967681, -0.20661, -0.15125, -0.718619, -0.678701, -0.310068, -0.638569, 0.704276, -0.24427, -0.969695, 0.0, -0.144505, -0.967681, 0.20661, -0.252785, 0.032075, 0.966979, -0.310068, -0.638569, 0.704276, -0.145054, -0.058229, 0.987701, -0.145054, -0.058229, -0.987701, -0.310068, -0.638569, -0.704276, -0.252785, 0.032075, -0.966979, -0.144505, -0.967681, -0.20661, -0.24427, -0.969695, 0.0, -0.310068, -0.638569, -0.704276, 0.426344, -0.629536, -0.649525, 0.372631, -0.897366, -0.236274, 0.024903, -0.964049, -0.264473, 0.038087, 0.29078, -0.956023, 0.48146, 0.264534, -0.835566, 0.4626, -0.039338, -0.885678, 0.4626, -0.039338, 0.885678, 0.481429, 0.264534, 0.835566, 0.038087, 0.29078, 0.956023, 0.024903, -0.964049, 0.264473, 0.372631, -0.897366, 0.236274, 0.426344, -0.629536, 0.649525, 0.372631, -0.897366, -0.236274, 0.351543, -0.936155, 0.0, 0.021668, -0.999756, 0.0, 0.4626, -0.039338, -0.885678, 0.426344, -0.629536, -0.649525, 0.036317, -0.703421, -0.70983, 0.036317, -0.703421, 0.70983, 0.426344, -0.629536, 0.649525, 0.4626, -0.039338, 0.885678, 0.021668, -0.999756, 0.0, 0.351543, -0.936155, 0.0, 0.372631, -0.897366, 0.236274, 0.997223, -0.013337, 0.073214, 0.779595, -0.164495, 0.604266, 0.821589, 0.028413, 0.569353, 0.989532, -0.143712, -0.012421, 0.964904, -0.233192, -0.120731, 0.791864, 0.490677, 0.363506, 0.988189, -0.153142, 0.0, 0.734397, 0.678701, 0.0, 0.746178, 0.653859, -0.125004, 0.989532, -0.143712, 0.012421, 0.746178, 0.653859, -0.125004, 0.791864, 0.490677, -0.363506, 0.964904, -0.233192, -0.120731, 0.984405, -0.001099, -0.175726, 0.821589, 0.028413, 0.569353, 0.988189, -0.153142, 0.0, 0.989532, -0.143712, -0.012421, 0.746178, 0.653859, 0.125004, 0.964904, -0.233192, 0.120731, 0.791864, 0.490677, -0.363506, 0.821589, 0.028413, -0.569323, 0.997223, -0.013337, -0.073214, 0.984405, -0.001099, 0.175756, 0.821589, 0.028413, -0.569323, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.999969, 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, -0.999969, 0.0, 0.0, -1.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.351543, -0.936155, 0.0, 0.372631, -0.897366, -0.236274, 0.989532, -0.143712, -0.012421, 0.426344, -0.629536, -0.649525, 0.4626, -0.039338, -0.885678, 0.984405, -0.001099, -0.175726, 0.426313, -0.629536, 0.649525, 0.964873, -0.233192, 0.120731, 0.984405, -0.001099, 0.175756, 0.351543, -0.936155, 0.0, 0.988189, -0.153142, 0.0, 0.989532, -0.143712, 0.012421, 0.372631, -0.897366, -0.236274, 0.426344, -0.629536, -0.649525, 0.964904, -0.233192, -0.120731, 0.481429, 0.264534, -0.835566, 0.997223, -0.013337, 0.073214, 0.984405, -0.001099, -0.175726, 0.48146, 0.264534, 0.835566, 0.4626, -0.039338, 0.885678, 0.984405, -0.001099, 0.175756, 0.372631, -0.897366, 0.236274, 0.989532, -0.143712, 0.012421, 0.964873, -0.233192, 0.120731, 0.021668, -0.999756, 0.0, -0.147069, -0.989105, 0.0, -0.144505, -0.967681, -0.20661, 0.036317, -0.703421, -0.70983, -0.15125, -0.718619, -0.678701, -0.145054, -0.058229, -0.987701, 0.036317, -0.703421, 0.70983, 0.0412, -0.071078, 0.996612, -0.145054, -0.058229, 0.987701, 0.021668, -0.999756, 0.0, 0.024903, -0.964049, 0.264473, -0.144505, -0.967681, 0.20661, 0.024903, -0.964049, -0.264473, -0.144505, -0.967681, -0.20661, -0.15125, -0.718619, -0.678701, 0.038087, 0.29078, -0.956023, 0.0412, -0.071078, -0.996612, -0.145054, -0.058229, -0.987701, 0.038087, 0.29078, 0.956023, -0.120914, 0.305063, 0.944609, -0.145054, -0.058229, 0.987701, 0.024903, -0.964049, 0.264473, 0.036317, -0.703421, 0.70983, -0.15125, -0.718619, 0.678701, -0.144505, -0.967681, -0.20661, -0.24427, -0.969695, 0.0, -0.310068, -0.638569, -0.704276, -0.145054, -0.058229, -0.987701, -0.310068, -0.638569, -0.704276, -0.252785, 0.032075, -0.966979, -0.145054, -0.058229, 0.987701, -0.120914, 0.305063, 0.944609, -0.252785, 0.032075, 0.966979, -0.144505, -0.967681, 0.20661, -0.15125, -0.718619, 0.678701, -0.310068, -0.638569, 0.704276, 0.024903, -0.964049, 0.264473, 0.372631, -0.897366, 0.236274, 0.426313, -0.629536, 0.649525, 0.038087, 0.29078, 0.956023, 0.0412, -0.071078, 0.996612, 0.4626, -0.039338, 0.885678, 0.038087, 0.29078, -0.956023, 0.481429, 0.264534, -0.835566, 0.4626, -0.039338, -0.885678, 0.024903, -0.964049, -0.264473, 0.036317, -0.703421, -0.70983, 0.426344, -0.629536, -0.649525, 0.021668, -0.999756, 0.0, 0.351543, -0.936155, 0.0, 0.372631, -0.897366, 0.236274, 0.036317, -0.703421, 0.70983, 0.426313, -0.629536, 0.649525, 0.4626, -0.039338, 0.885678, 0.036317, -0.703421, -0.70983, 0.0412, -0.071078, -0.996612, 0.4626, -0.039338, -0.885678, 0.021668, -0.999756, 0.0, 0.024903, -0.964049, -0.264473, 0.372631, -0.897366, -0.236274, 0.821589, 0.028413, -0.569323, 0.779565, -0.164495, -0.604266, 0.997223, -0.013337, -0.073214, 0.989532, -0.143712, 0.012421, 0.746178, 0.653859, -0.125004, 0.791864, 0.490677, -0.363506, 0.746178, 0.653859, 0.125004, 0.734397, 0.678701, 0.0, 0.988189, -0.153142, 0.0, 0.791864, 0.490677, 0.363506, 0.746178, 0.653859, 0.125004, 0.989532, -0.143712, -0.012421, 0.964873, -0.233192, 0.120731, 0.791864, 0.490677, -0.363506, 0.821589, 0.028413, -0.569323, 0.988189, -0.153142, 0.0, 0.734397, 0.678701, 0.0, 0.746178, 0.653859, -0.125004, 0.821589, 0.028413, 0.569353, 0.791864, 0.490677, 0.363506, 0.964904, -0.233192, -0.120731, 0.997223, -0.013337, 0.073214, 0.779595, -0.164495, 0.604266, 0.821589, 0.028413, 0.569353, 0.999969, 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, -0.999969, 0.0, 0.0, -0.999969, 0.0, 0.0, -1.0, 0.0, 0.0, 0.432539, 0.372875, 0.820887, 0.389386, 0.64742, 0.65511, 0.209754, 0.500626, 0.839839, 0.402417, -0.759148, 0.511612, 0.124485, -0.723075, 0.679434, 0.098361, -0.958647, 0.266945, 0.78692, -0.255959, 0.561418, 0.699545, 0.435926, 0.566179, 0.432539, 0.372875, 0.820887, 0.225196, -0.974303, 0.0, 0.294504, -0.936399, 0.19071, 0.098361, -0.958647, 0.266945, 0.124485, -0.723075, 0.679434, 0.402417, -0.759148, 0.511612, 0.477187, -0.248085, 0.843043, 0.296854, -0.954894, 0.0, 0.354747, -0.925748, 0.130802, 0.294504, -0.936399, 0.19071, 0.551866, -0.764763, 0.332469, 0.78692, -0.255959, 0.561418, 0.477187, -0.248085, 0.843043, 0.699545, 0.435926, 0.566179, 0.538469, 0.697775, 0.472335, 0.389386, 0.64742, 0.65511, 0.354747, -0.925748, 0.130802, 0.551866, -0.764763, 0.332469, 0.402417, -0.759148, 0.511612, 0.699545, 0.435926, 0.566179, 0.880825, 0.473403, 0.0, 0.58977, 0.80755, 0.0, 0.551866, -0.764763, 0.332469, 0.354747, -0.925748, 0.130802, 0.435896, -0.89996, 0.0, 0.699545, 0.435926, 0.566179, 0.78692, -0.255959, 0.561418, 0.960326, -0.278787, 0.0, 0.78692, -0.255959, 0.561418, 0.551866, -0.764763, 0.332469, 0.660695, -0.750633, 0.0, -0.118229, -0.387951, 0.914029, -0.142918, -0.793634, 0.591327, 0.124485, -0.723075, 0.679434, -0.038087, -0.977264, 0.208472, 0.019929, -0.999786, 0.0, 0.08887, -0.996033, 0.0, 0.477187, -0.248085, 0.843043, 0.432539, 0.372875, 0.820887, 0.175573, 0.284371, 0.942473, -0.142918, -0.793634, 0.591327, -0.038087, -0.977264, 0.208472, 0.098361, -0.958647, 0.266945, 0.028077, 0.184484, 0.982421, -0.01886, 0.019898, 0.999603, 0.175573, 0.284371, 0.942473, -0.01886, 0.019898, 0.999603, -0.118229, -0.387951, 0.914029, 0.145543, -0.211615, 0.96643, -0.118229, -0.387951, 0.914029, -0.01886, 0.019898, 0.999603, -0.174413, -0.337321, 0.925077, -0.1554, -0.836787, 0.524979, -0.142918, -0.793634, 0.591327, -0.118229, -0.387951, 0.914029, -0.038087, -0.977264, 0.208472, -0.142918, -0.793634, 0.591327, -0.1554, -0.836787, 0.524979, 0.209754, 0.500626, -0.839839, 0.389386, 0.64742, -0.65511, 0.432539, 0.372875, -0.820887, 0.098361, -0.958647, -0.266945, 0.124485, -0.723075, -0.679434, 0.402417, -0.759117, -0.511612, 0.432539, 0.372875, -0.820887, 0.699545, 0.435926, -0.566179, 0.78692, -0.255959, -0.561418, 0.098361, -0.958647, -0.266945, 0.294504, -0.936399, -0.19071, 0.225196, -0.974303, 0.0, 0.124485, -0.723075, -0.679434, 0.145543, -0.211615, -0.96643, 0.477187, -0.248085, -0.843043, 0.294504, -0.936399, -0.19071, 0.354747, -0.925748, -0.130802, 0.296854, -0.954894, 0.0, 0.551866, -0.764763, -0.332469, 0.402417, -0.759117, -0.511612, 0.477187, -0.248085, -0.843043, 0.389386, 0.64742, -0.65511, 0.538469, 0.697775, -0.472335, 0.699545, 0.435926, -0.566179, 0.402417, -0.759117, -0.511612, 0.551866, -0.764763, -0.332469, 0.354747, -0.925748, -0.130802, 0.58977, 0.80755, 0.0, 0.880825, 0.473403, 0.0, 0.699545, 0.435926, -0.566179, 0.551866, -0.764763, -0.332469, 0.660695, -0.750633, 0.0, 0.435896, -0.89996, 0.0, 0.699545, 0.435926, -0.566179, 0.880825, 0.473403, 0.0, 0.960326, -0.278787, 0.0, 0.78692, -0.255959, -0.561418, 0.960326, -0.278787, 0.0, 0.660695, -0.750633, 0.0, -0.118229, -0.387951, -0.914029, 0.145543, -0.211615, -0.96643, 0.124485, -0.723075, -0.679434, -0.038087, -0.977264, -0.208472, 0.098361, -0.958647, -0.266945, 0.08887, -0.996033, 0.0, 0.477187, -0.248085, -0.843043, 0.145543, -0.211615, -0.96643, 0.175573, 0.284341, -0.942473, 0.098361, -0.958647, -0.266945, -0.038087, -0.977264, -0.208472, -0.142918, -0.793634, -0.591327, 0.175573, 0.284341, -0.942473, -0.01886, 0.019898, -0.999603, 0.028077, 0.184484, -0.982421, -0.01886, 0.019898, -0.999603, 0.175573, 0.284341, -0.942473, 0.145543, -0.211615, -0.96643, -0.174413, -0.337321, -0.925077, -0.01886, 0.019898, -0.999603, -0.118229, -0.387951, -0.914029, -0.118229, -0.387951, -0.914029, -0.142918, -0.793634, -0.591327, -0.1554, -0.836787, -0.524979, -0.1554, -0.836787, -0.524979, -0.142918, -0.793634, -0.591327, -0.038087, -0.977264, -0.208472, 0.039216, 0.510758, 0.858821, -0.028474, 0.473006, 0.880581, -0.034028, -0.03766, 0.998688, 0.0, 0.0, 1.0, -0.034028, -0.03766, 0.998688, -0.036103, -0.526536, 0.849361, 0.0, 1.0, 0.0, -0.015809, 0.999847, 0.0, -0.020692, 0.857875, 0.513413, 0.0, -0.499985, 0.866024, -0.036103, -0.526536, 0.849361, -0.034822, -0.873287, 0.485916, 0.026276, 0.858425, 0.512223, -0.020692, 0.857875, 0.513413, -0.028474, 0.473006, 0.880581, 0.0, -0.866024, 0.499985, -0.034822, -0.873287, 0.485916, -0.032868, -0.999451, 0.0, -0.036103, -0.526536, 0.849361, -0.075198, -0.474776, 0.876858, -0.085025, -0.849239, 0.521104, -0.020692, 0.857875, 0.513413, -0.025056, 0.860653, 0.50853, -0.043428, 0.445296, 0.894314, -0.034822, -0.873287, 0.485916, -0.085025, -0.849239, 0.521104, -0.08948, -0.995972, 0.0, -0.028474, 0.473006, 0.880581, -0.043428, 0.445296, 0.894314, -0.063845, 0.000305, 0.997955, -0.034028, -0.03766, 0.998688, -0.063845, 0.000305, 0.997955, -0.075198, -0.474776, 0.876858, -0.015809, 0.999847, 0.0, -0.018494, 0.999817, 0.0, -0.025056, 0.860653, 0.50853, 0.00174, -0.999969, 0.0, 0.0, -0.999969, 0.0, 0.013489, -0.895077, 0.445631, 0.194922, 0.61092, 0.767296, 0.051119, 0.062471, 0.996734, 0.107059, 0.109531, 0.988189, 0.051119, 0.062471, 0.996734, 0.114444, -0.53206, 0.838893, 0.121464, -0.374584, 0.919187, 0.034944, -0.848476, 0.528031, 0.0, -0.866024, 0.499985, 0.0, -1.0, 0.0, 0.194922, 0.61092, 0.767296, 0.251289, 0.805139, 0.537187, 0.026276, 0.858425, 0.512223, 0.114444, -0.53206, 0.838893, 0.0, -0.499985, 0.866024, 0.0, -0.866024, 0.499985, 0.140873, 0.99002, 0.0, 0.0, 1.0, 0.0, 0.026276, 0.858425, 0.512223, 0.051119, 0.062471, 0.996734, 0.0, 0.0, 1.0, 0.0, -0.499985, 0.866024, 0.051119, 0.062471, 0.996734, 0.194922, 0.61092, 0.767296, 0.039216, 0.510758, 0.858821, 0.251289, 0.805139, 0.537187, 0.194922, 0.61092, 0.767296, 0.364513, 0.893338, 0.262703, 0.14127, 0.752068, 0.643757, 0.20484, 0.144047, 0.968108, 0.262276, 0.247383, 0.932707, 0.189001, -0.221473, 0.956664, 0.250984, 0.067873, 0.965606, 0.262276, 0.247383, 0.932707, 0.096042, 0.977996, 0.185156, 0.14127, 0.752068, 0.643757, 0.230506, 0.711386, 0.6639, 0.18659, 0.963927, 0.189703, 0.230506, 0.711386, 0.6639, 0.414838, 0.663503, 0.622608, 0.230506, 0.711386, 0.6639, 0.262276, 0.247383, 0.932707, 0.457106, 0.169012, 0.873165, 0.250984, 0.067873, 0.965606, 0.488571, -0.096469, 0.867153, 0.457106, 0.169012, 0.873165, 0.414838, 0.663503, 0.622608, 0.457106, 0.169012, 0.873165, 0.760063, 0.123569, 0.637959, 0.488571, -0.096469, 0.867153, 0.792566, -0.092013, 0.602771, 0.760063, 0.123569, 0.637959, 0.376324, 0.905545, 0.195685, 0.414838, 0.663503, 0.622608, 0.748802, 0.484725, 0.45201, 0.364513, 0.893338, 0.262703, 0.137883, 0.772881, 0.619373, 0.14127, 0.752068, 0.643757, 0.107059, 0.109531, 0.988189, 0.121464, -0.374584, 0.919187, 0.189001, -0.221473, 0.956664, 0.137883, 0.772881, 0.619373, 0.107059, 0.109531, 0.988189, 0.20484, 0.144047, 0.968108, -0.034028, -0.03766, -0.998688, -0.028474, 0.473006, -0.880581, 0.039216, 0.510758, -0.858821, -0.036103, -0.526536, -0.849361, -0.034028, -0.03766, -0.998688, 0.0, 0.0, -0.999969, -0.020692, 0.857875, -0.513413, -0.015809, 0.999847, 0.0, 0.0, 1.0, 0.0, -0.034822, -0.873287, -0.485916, -0.036103, -0.526536, -0.849361, 0.0, -0.499985, -0.866024, -0.028474, 0.473006, -0.880581, -0.020692, 0.857875, -0.513413, 0.026276, 0.858425, -0.512223, -0.032868, -0.999451, 0.0, -0.034822, -0.873287, -0.485916, 0.0, -0.866024, -0.499985, -0.085025, -0.849239, -0.521104, -0.075198, -0.474776, -0.876858, -0.036103, -0.526536, -0.849361, -0.043428, 0.445296, -0.894314, -0.025056, 0.860653, -0.50853, -0.020692, 0.857875, -0.513413, -0.08948, -0.995972, 0.0, -0.085025, -0.849239, -0.521104, -0.034822, -0.873287, -0.485916, -0.063845, 0.000305, -0.997955, -0.043428, 0.445296, -0.894314, -0.028474, 0.473006, -0.880581, -0.075198, -0.474776, -0.876858, -0.063845, 0.000305, -0.997955, -0.034028, -0.03766, -0.998688, -0.025056, 0.860653, -0.50853, -0.018494, 0.999817, 0.0, -0.015809, 0.999847, 0.0, 0.013489, -0.895077, -0.445631, 0.0, -0.999969, 0.0, 0.00174, -0.999969, 0.0, 0.194922, 0.61092, -0.767296, 0.137883, 0.772881, -0.619373, 0.107059, 0.109561, -0.988189, 0.051119, 0.062471, -0.996734, 0.107059, 0.109561, -0.988189, 0.121464, -0.374584, -0.919187, 0.0, -1.0, 0.0, 0.0, -0.866024, -0.499985, 0.034944, -0.848476, -0.528031, 0.194922, 0.61092, -0.767296, 0.039216, 0.510758, -0.858821, 0.026276, 0.858425, -0.512223, 0.0, -0.866024, -0.499985, 0.0, -0.499985, -0.866024, 0.114444, -0.53206, -0.838893, 0.026276, 0.858425, -0.512223, 0.0, 1.0, 0.0, 0.140873, 0.99002, 0.0, 0.0, -0.499985, -0.866024, 0.0, 0.0, -0.999969, 0.051119, 0.062471, -0.996734, 0.051119, 0.062471, -0.996734, 0.0, 0.0, -0.999969, 0.039216, 0.510758, -0.858821, 0.251289, 0.805139, -0.537187, 0.546831, 0.75634, -0.358959, 0.364513, 0.893338, -0.262703, 0.14127, 0.752068, -0.643757, 0.230506, 0.711386, -0.6639, 0.262276, 0.247383, -0.932707, 0.262276, 0.247383, -0.932707, 0.250984, 0.067873, -0.965606, 0.189001, -0.221473, -0.956664, 0.096042, 0.977996, -0.185156, 0.18659, 0.963927, -0.189703, 0.230506, 0.711386, -0.6639, 0.18659, 0.963927, -0.189703, 0.376324, 0.905545, -0.195685, 0.414838, 0.663503, -0.622608, 0.230506, 0.711386, -0.6639, 0.414838, 0.663503, -0.622608, 0.457106, 0.169012, -0.873165, 0.457106, 0.169012, -0.873165, 0.488571, -0.096469, -0.867153, 0.250984, 0.067873, -0.965606, 0.414838, 0.663503, -0.622608, 0.748802, 0.484725, -0.45201, 0.760063, 0.123569, -0.637959, 0.760063, 0.123569, -0.637959, 0.792566, -0.092013, -0.602771, 0.488571, -0.096469, -0.867153, 0.376324, 0.905545, -0.195685, 0.743431, 0.654103, -0.139439, 0.748802, 0.484725, -0.45201, 0.364513, 0.893338, -0.262703, 0.096042, 0.977996, -0.185156, 0.14127, 0.752068, -0.643757, 0.107059, 0.109561, -0.988189, 0.20484, 0.144047, -0.968108, 0.189001, -0.221473, -0.956664, 0.137883, 0.772881, -0.619373, 0.14127, 0.752068, -0.643757, 0.20484, 0.144047, -0.968108, 0.743431, 0.654103, -0.139439, 0.376324, 0.905545, -0.195685, 0.376324, 0.905545, 0.195685, 0.18659, 0.963927, 0.189703, 0.376324, 0.905545, 0.195685, 0.376324, 0.905545, -0.195685, 0.18659, 0.963927, -0.189703, 0.096042, 0.977996, -0.185156, 0.096042, 0.977996, 0.185156, 0.096042, 0.977996, -0.185156, 0.364513, 0.893338, -0.262703, 0.364513, 0.893338, 0.262703, 0.546831, 0.75634, 0.358959, 0.364513, 0.893338, 0.262703, 0.364513, 0.893338, -0.262703, -0.075198, -0.474776, 0.876858, -0.186529, -0.565722, 0.803186, -0.233741, -0.848659, 0.474441, -0.018494, 0.999817, 0.0, -0.025056, 0.860653, -0.50853, -0.245796, 0.834773, -0.49266, -0.025056, 0.860653, 0.50853, -0.245827, 0.834773, 0.49266, -0.175085, 0.523942, 0.833552, -0.075198, -0.474776, -0.876858, -0.085025, -0.849239, -0.521104, -0.233741, -0.848659, -0.474441, -0.085025, -0.849239, 0.521104, -0.233741, -0.848659, 0.474441, -0.12656, -0.991943, 0.0, -0.025056, 0.860653, -0.50853, -0.043428, 0.445296, -0.894314, -0.175085, 0.523942, -0.833552, -0.043428, 0.445296, 0.894314, -0.175085, 0.523942, 0.833552, -0.062532, 0.016541, 0.997894, -0.085025, -0.849239, -0.521104, -0.08948, -0.995972, 0.0, -0.12656, -0.991943, 0.0, -0.043428, 0.445296, -0.894314, -0.063845, 0.000305, -0.997955, -0.062532, 0.016541, -0.997894, -0.063845, 0.000305, 0.997955, -0.062532, 0.016541, 0.997894, -0.186529, -0.565722, 0.803186, -0.018494, 0.999817, 0.0, -0.159612, 0.987152, 0.0, -0.245827, 0.834773, 0.49266, -0.063845, 0.000305, -0.997955, -0.075198, -0.474776, -0.876858, -0.186529, -0.565722, -0.803186, -0.12656, -0.991943, 0.0, -0.233741, -0.848659, 0.474441, -0.729026, -0.553453, 0.402692, -0.245796, 0.834773, -0.49266, -0.806604, 0.510453, -0.297952, -0.479781, 0.877377, 0.0, -0.233741, -0.848659, -0.474441, -0.729026, -0.553453, -0.402692, -0.780084, -0.346934, -0.520646, -0.245827, 0.834773, 0.49266, -0.159612, 0.987152, 0.0, -0.479781, 0.877377, 0.0, -0.245796, 0.834773, -0.49266, -0.175085, 0.523942, -0.833552, -0.761711, 0.428266, -0.486129, -0.233741, -0.848659, 0.474441, -0.186529, -0.565722, 0.803186, -0.780084, -0.346934, 0.520646, -0.12656, -0.991943, 0.0, -0.483291, -0.875423, 0.0, -0.729026, -0.553453, -0.402692, -0.245827, 0.834773, 0.49266, -0.806604, 0.510483, 0.297952, -0.761711, 0.428297, 0.486129, -0.806604, 0.510453, -0.297952, -0.761711, 0.428266, -0.486129, -0.761711, 0.428297, 0.486129, -0.780084, -0.346934, -0.520646, -0.729026, -0.553453, -0.402692, -0.729026, -0.553453, 0.402692, -0.999969, 0.0, 0.0, -0.999969, 0.0, 0.0, -0.999969, 0.0, 0.0, -0.999969, 0.0, 0.0, -1.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.999969, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, -0.999969, 0.0, 0.0, -1.0, 0.0, 0.0, -1.0, 0.0, 0.177618, 0.984069, 0.0, 0.167974, 0.490493, -0.855068, 0.016297, 0.835932, -0.54857, 0.167974, 0.490493, -0.855068, 0.148717, -0.496658, -0.855068, 0.145543, -0.139439, -0.979461, 0.148717, -0.496658, -0.855068, 0.139103, -0.990265, 0.0, 0.636555, -0.771203, 0.0, 0.636555, -0.771203, 0.0, 0.139103, -0.990265, 0.0, 0.148717, -0.496658, 0.855068, 0.167974, 0.490493, 0.855068, 0.185461, 0.488662, 0.852504, 0.195074, 0.980773, 0.0, 0.145543, -0.139439, 0.979461, 0.148717, -0.496658, 0.855068, 0.167974, 0.490493, 0.855068, 0.016297, 0.835932, 0.54857, 0.167974, 0.490493, 0.855068, 0.177618, 0.984069, 0.0, 0.185461, 0.488662, 0.852504, 0.166265, -0.495529, 0.852504, 0.257241, -0.486984, 0.834651, 0.139103, -0.990265, 0.0, 0.156682, -0.98764, 0.0, 0.166265, -0.495529, 0.852504, 0.167974, 0.490493, -0.855068, 0.185461, 0.488662, -0.852504, 0.166265, -0.495529, -0.852504, 0.167974, 0.490493, 0.855068, 0.148717, -0.496658, 0.855068, 0.166265, -0.495529, 0.852504, 0.167974, 0.490493, -0.855068, 0.177618, 0.984069, 0.0, 0.195074, 0.980773, 0.0, 0.139103, -0.990265, 0.0, 0.148717, -0.496658, -0.855068, 0.166265, -0.495529, -0.852504, 0.27604, 0.476577, 0.834651, 0.327921, 0.467605, 0.820826, 0.337168, 0.941435, 0.0, 0.156682, -0.98764, 0.0, 0.166265, -0.495529, -0.852504, 0.257241, -0.486984, -0.834651, 0.185461, 0.488662, -0.852504, 0.195074, 0.980773, 0.0, 0.28544, 0.958373, 0.0, 0.185461, 0.488662, 0.852504, 0.27604, 0.476577, 0.834651, 0.28544, 0.958373, 0.0, 0.156682, -0.98764, 0.0, 0.247841, -0.96878, 0.0, 0.257241, -0.486984, 0.834651, 0.185461, 0.488662, -0.852504, 0.27604, 0.476577, -0.834651, 0.257241, -0.486984, -0.834651, 0.309458, -0.480026, 0.820826, 0.60213, -0.408002, 0.686239, 0.617573, 0.384259, 0.686209, 0.247841, -0.96878, 0.0, 0.300211, -0.953856, 0.0, 0.309458, -0.480026, 0.820826, 0.257241, -0.486984, -0.834651, 0.27604, 0.476577, -0.834651, 0.327921, 0.467605, -0.820826, 0.257241, -0.486984, 0.834651, 0.309458, -0.480026, 0.820826, 0.327921, 0.467605, 0.820826, 0.247841, -0.96878, 0.0, 0.257241, -0.486984, -0.834651, 0.309458, -0.480026, -0.820826, 0.27604, 0.476577, -0.834651, 0.28544, 0.958373, 0.0, 0.337168, 0.941435, 0.0, 0.60213, -0.408002, -0.686239, 0.617603, 0.384228, -0.686239, 0.625324, 0.780328, 0.0, 0.625324, 0.780328, 0.0, 0.617573, 0.384259, 0.686209, 0.60213, -0.408002, 0.686239, 0.60213, -0.408002, 0.686239, 0.59447, -0.804102, 0.0, 0.60213, -0.408002, -0.686239, 0.300211, -0.953856, 0.0, 0.309458, -0.480026, -0.820826, 0.60213, -0.408002, -0.686239, 0.327921, 0.467605, -0.820826, 0.337168, 0.941435, 0.0, 0.625324, 0.780328, 0.0, 0.327921, 0.467605, 0.820826, 0.617573, 0.384259, 0.686209, 0.625324, 0.780328, 0.0, 0.300211, -0.953856, 0.0, 0.59447, -0.804102, 0.0, 0.60213, -0.408002, 0.686239, 0.309458, -0.480026, -0.820826, 0.327921, 0.467605, -0.820826, 0.617603, 0.384228, -0.686239, 0.636555, -0.771203, 0.0, 0.145543, -0.139439, 0.979461, 0.473617, 0.0, 0.880703, 0.636555, -0.771203, 0.0, 0.999969, 0.0, 0.0, 0.473617, 0.0, -0.880703, -0.623463, -0.781823, 0.0, -0.801416, -0.598102, 0.0, -0.566668, -0.598071, -0.566668, -0.977355, 0.211585, 0.0, -0.691092, 0.211554, -0.691092, -0.691092, -0.211554, -0.691092, -0.623463, 0.781823, 0.0, -0.44084, 0.781823, -0.44087, -0.566668, 0.598071, -0.566668, -0.801416, -0.598102, 0.0, -0.977355, -0.211585, 0.0, -0.691092, -0.211554, -0.691092, -0.801416, 0.598102, 0.0, -0.566668, 0.598071, -0.566668, -0.691092, 0.211554, -0.691092, -0.44084, -0.781823, -0.44087, -0.566668, -0.598071, -0.566668, -0.315043, -0.567614, -0.760582, -0.691092, 0.211554, -0.691092, -0.375225, 0.196112, -0.905911, -0.375225, -0.196112, -0.905911, -0.44084, 0.781823, -0.44087, -0.250038, 0.756981, -0.603687, -0.315043, 0.567614, -0.760582, -0.691092, -0.211554, -0.691092, -0.375225, -0.196112, -0.905911, -0.315043, -0.567614, -0.760582, -0.691092, 0.211554, -0.691092, -0.566668, 0.598071, -0.566668, -0.315043, 0.567614, -0.760582, -0.315043, 0.567614, 0.760582, -0.566668, 0.598071, 0.566668, -0.691092, 0.211554, 0.691092, -0.315043, -0.567614, 0.760582, -0.566668, -0.598071, 0.566668, -0.44087, -0.781823, 0.44087, -0.375225, -0.196112, 0.905911, -0.375225, 0.196112, 0.905911, -0.691092, 0.211554, 0.691092, -0.315043, 0.567614, 0.760582, -0.250038, 0.756981, 0.603656, -0.44087, 0.781823, 0.44087, -0.315043, -0.567614, 0.760582, -0.375225, -0.196112, 0.905911, -0.691092, -0.211554, 0.691092, -0.566668, -0.598071, 0.566668, -0.801416, -0.598102, 0.0, -0.623463, -0.781823, 0.0, -0.691092, 0.211554, 0.691092, -0.977355, 0.211585, 0.0, -0.977355, -0.211585, 0.0, -0.566668, 0.598071, 0.566668, -0.44087, 0.781823, 0.44087, -0.623463, 0.781823, 0.0, -0.691092, -0.211554, 0.691092, -0.977355, -0.211585, 0.0, -0.801416, -0.598102, 0.0, -0.691092, 0.211554, 0.691092, -0.566668, 0.598071, 0.566668, -0.801416, 0.598102, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, -1.0, 0.0, 0.0, -1.0, 0.0, -1.0, 0.0, 0.0, -1.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, -1.0, -1.0, 0.0, 0.0, -1.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, -1.0, 0.0, 1.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, -1.0, 0.0, -1.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, -1.0, 0.0, 0.0, -1.0, 0.0, 0.0, -1.0, 0.0, 0.0};
+
+       // set UVs for TU-95 fusulage
+       static GLfloat tu_95_fusulage_UVs[] = {0.963683, 0.853563, 0.951782, 0.881953, 0.951768, 0.853739, 0.963683, 0.853563, 0.951777, 0.825898, 0.96369, 0.825506, 0.963733, 0.910408, 0.951897, 0.940889, 0.95182, 0.910796, 0.963721, 0.797873, 0.951777, 0.825898, 0.951812, 0.797992, 0.963733, 0.910408, 0.951782, 0.881953, 0.963697, 0.881897, 0.963784, 0.769933, 0.951812, 0.797992, 0.951882, 0.76941, 0.95182, 0.910796, 0.895559, 0.888387, 0.951782, 0.881953, 0.951812, 0.797992, 0.915023, 0.766229, 0.951882, 0.76941, 0.951782, 0.881953, 0.899471, 0.855568, 0.951768, 0.853739, 0.894709, 0.918705, 0.951897, 0.940869, 0.95182, 0.910788, 0.951768, 0.853739, 0.904194, 0.826868, 0.951777, 0.825898, 0.951777, 0.825898, 0.909565, 0.79758, 0.951812, 0.797992, 0.31103, 0.927546, 0.216479, 0.954684, 0.219547, 0.918294, 0.528612, 0.881902, 0.542014, 0.942122, 0.484592, 0.943827, 0.310636, 0.892959, 0.219477, 0.918247, 0.311008, 0.927531, 0.54067, 0.969537, 0.484592, 0.943827, 0.542014, 0.942122, 0.311008, 0.927531, 0.216445, 0.954661, 0.310589, 0.963332, 0.777412, 0.927462, 0.622866, 0.904221, 0.777207, 0.891986, 0.777339, 0.78326, 0.625915, 0.81486, 0.621623, 0.782693, 0.778971, 0.959521, 0.62195, 0.947917, 0.777412, 0.927462, 0.777449, 0.818998, 0.624533, 0.846492, 0.625915, 0.81486, 0.777207, 0.891986, 0.624533, 0.846492, 0.777359, 0.848605, 0.777407, 0.761233, 0.621623, 0.782693, 0.620331, 0.765839, 0.622866, 0.904221, 0.542014, 0.942122, 0.528612, 0.881902, 0.62195, 0.947917, 0.54067, 0.969537, 0.542014, 0.942122, 0.622866, 0.904221, 0.54879, 0.849922, 0.624533, 0.846492, 0.620331, 0.765839, 0.54365, 0.79985, 0.523867, 0.785803, 0.619367, 0.81339, 0.525913, 0.823334, 0.621623, 0.782693, 0.624533, 0.846492, 0.525913, 0.823334, 0.619367, 0.81339, 0.621623, 0.782693, 0.525913, 0.823334, 0.54365, 0.79985, 0.624533, 0.846492, 0.54879, 0.849922, 0.525913, 0.823334, 0.963683, 0.853568, 0.951781, 0.881955, 0.963696, 0.881915, 0.951777, 0.825897, 0.963683, 0.853568, 0.96369, 0.825507, 0.95182, 0.910788, 0.963804, 0.939757, 0.963733, 0.91041, 0.963721, 0.797864, 0.951777, 0.825897, 0.96369, 0.825507, 0.951781, 0.881955, 0.963733, 0.91041, 0.963696, 0.881915, 0.963785, 0.769883, 0.951812, 0.797983, 0.963721, 0.797864, 0.895544, 0.888381, 0.95182, 0.910788, 0.951781, 0.881955, 0.914993, 0.766206, 0.951812, 0.797983, 0.951882, 0.769368, 0.899447, 0.855558, 0.951781, 0.881955, 0.951768, 0.853739, 0.904183, 0.826863, 0.951768, 0.853739, 0.951777, 0.825897, 0.909533, 0.79756, 0.951777, 0.825897, 0.951812, 0.797983, 0.312254, 0.765538, 0.221559, 0.797812, 0.220514, 0.763504, 0.528592, 0.881889, 0.484513, 0.943774, 0.541978, 0.942098, 0.31051, 0.800688, 0.221743, 0.824119, 0.310075, 0.828288, 0.484513, 0.943774, 0.540608, 0.969495, 0.541978, 0.942098, 0.220927, 0.885288, 0.310075, 0.828288, 0.221743, 0.824119, 0.622893, 0.904239, 0.77738, 0.927442, 0.777172, 0.891964, 0.777316, 0.783245, 0.625897, 0.814848, 0.777426, 0.818984, 0.621837, 0.947842, 0.778913, 0.959483, 0.77738, 0.927442, 0.777426, 0.818984, 0.624494, 0.846467, 0.777336, 0.848591, 0.624494, 0.846467, 0.777172, 0.891964, 0.777336, 0.848591, 0.777374, 0.761211, 0.621601, 0.782679, 0.777316, 0.783245, 0.622893, 0.904239, 0.541978, 0.942098, 0.621837, 0.947842, 0.621837, 0.947842, 0.540608, 0.969495, 0.621578, 0.979236, 0.548764, 0.849904, 0.622893, 0.904239, 0.624494, 0.846467, 0.620232, 0.765775, 0.543629, 0.799837, 0.621601, 0.782679, 0.619352, 0.813381, 0.621601, 0.782679, 0.525893, 0.823321, 0.624494, 0.846467, 0.619352, 0.813381, 0.525893, 0.823321, 0.621601, 0.782679, 0.543629, 0.799837, 0.525893, 0.823321, 0.624494, 0.846467, 0.525893, 0.823321, 0.548764, 0.849904, 0.963721, 0.797864, 0.977966, 0.825011, 0.977971, 0.797531, 0.96369, 0.825506, 0.977965, 0.853306, 0.963683, 0.853563, 0.963696, 0.881915, 0.977973, 0.910312, 0.977967, 0.881912, 0.963804, 0.939764, 0.977973, 0.910312, 0.977984, 0.938719, 0.963785, 0.769883, 0.977971, 0.797531, 0.977981, 0.770494, 0.963721, 0.797873, 0.977966, 0.825009, 0.96369, 0.825506, 0.963697, 0.881897, 0.977973, 0.910312, 0.963733, 0.910408, 0.963696, 0.881915, 0.977965, 0.853316, 0.963683, 0.853568, 0.963784, 0.769933, 0.977971, 0.797534, 0.963721, 0.797873, 0.96369, 0.825507, 0.977965, 0.853316, 0.977966, 0.825011, 0.963697, 0.881897, 0.977965, 0.853306, 0.977967, 0.881902, 0.963804, 0.939757, 0.977973, 0.910312, 0.963733, 0.91041, 0.135302, 0.18692, 0.216441, 0.215949, 0.135574, 0.243225, 0.135574, 0.243225, 0.059014, 0.212941, 0.135302, 0.18692, 0.135302, 0.18692, 0.135574, 0.243225, 0.059014, 0.212941, 0.135574, 0.243225, 0.135302, 0.18692, 0.216441, 0.215949, 0.914993, 0.766206, 0.777316, 0.783245, 0.909533, 0.79756, 0.777336, 0.848591, 0.895544, 0.888381, 0.899447, 0.855558, 0.777426, 0.818984, 0.899447, 0.855558, 0.904183, 0.826863, 0.77738, 0.927442, 0.897576, 0.950007, 0.894709, 0.918705, 0.777316, 0.783245, 0.904183, 0.826863, 0.909533, 0.79756, 0.777172, 0.891964, 0.894709, 0.918705, 0.895544, 0.888381, 0.915023, 0.766229, 0.777339, 0.78326, 0.777407, 0.761233, 0.895559, 0.888387, 0.777359, 0.848605, 0.899471, 0.855568, 0.899471, 0.855568, 0.777449, 0.818998, 0.904194, 0.826868, 0.897611, 0.950027, 0.777412, 0.927462, 0.894768, 0.918731, 0.904194, 0.826868, 0.777339, 0.78326, 0.909565, 0.79758, 0.894768, 0.918731, 0.777207, 0.891986, 0.895559, 0.888387, 0.312206, 0.765507, 0.221545, 0.797803, 0.31051, 0.800688, 0.528592, 0.881889, 0.403256, 0.834752, 0.403207, 0.899369, 0.310661, 0.892976, 0.219547, 0.918294, 0.220942, 0.885298, 0.310501, 0.800682, 0.221746, 0.824121, 0.221559, 0.797812, 0.525913, 0.823334, 0.403772, 0.808492, 0.54365, 0.79985, 0.484592, 0.943827, 0.403239, 0.899389, 0.528612, 0.881902, 0.403277, 0.834766, 0.528612, 0.881902, 0.403239, 0.899389, 0.523829, 0.785778, 0.403771, 0.808492, 0.543629, 0.799837, 0.548764, 0.849904, 0.525893, 0.823321, 0.528592, 0.881889, 0.525893, 0.823321, 0.403771, 0.808492, 0.403256, 0.834752, 0.523867, 0.785803, 0.403772, 0.808492, 0.405324, 0.778821, 0.484513, 0.943774, 0.404162, 0.961325, 0.484087, 0.955985, 0.484513, 0.943774, 0.403207, 0.899369, 0.403186, 0.932047, 0.484592, 0.943827, 0.40417, 0.961331, 0.40326, 0.932097, 0.403772, 0.808492, 0.310096, 0.828302, 0.310501, 0.800682, 0.403239, 0.899389, 0.31103, 0.927546, 0.310661, 0.892976, 0.54879, 0.849922, 0.528612, 0.881902, 0.525913, 0.823334, 0.403771, 0.808492, 0.312206, 0.765507, 0.31051, 0.800688, 0.403277, 0.834766, 0.310661, 0.892976, 0.310096, 0.828302, 0.403771, 0.808492, 0.310075, 0.828288, 0.403256, 0.834752, 0.403772, 0.808492, 0.312254, 0.765538, 0.405324, 0.778821, 0.403186, 0.932047, 0.310589, 0.963332, 0.404162, 0.961325, 0.403207, 0.899369, 0.311008, 0.927531, 0.403186, 0.932047, 0.40326, 0.932097, 0.31066, 0.96338, 0.31103, 0.927546, 0.403256, 0.834752, 0.310636, 0.892959, 0.403207, 0.899369, 0.220927, 0.885288, 0.119153, 0.903574, 0.219477, 0.918247, 0.216445, 0.954661, 0.119153, 0.903574, 0.111944, 0.933547, 0.221746, 0.824121, 0.121373, 0.808542, 0.221559, 0.797812, 0.221743, 0.824119, 0.121329, 0.808513, 0.123102, 0.830074, 0.220942, 0.885298, 0.119164, 0.903582, 0.122362, 0.877419, 0.221559, 0.797812, 0.11596, 0.778254, 0.220514, 0.763504, 0.123102, 0.830074, 0.220927, 0.885288, 0.221743, 0.824119, 0.221545, 0.797803, 0.115941, 0.778241, 0.121329, 0.808513, 0.216479, 0.954684, 0.119164, 0.903582, 0.219547, 0.918294, 0.121373, 0.808542, 0.05365, 0.834244, 0.051025, 0.820422, 0.11596, 0.778254, 0.051025, 0.820422, 0.043338, 0.803927, 0.121329, 0.808513, 0.053611, 0.834219, 0.123102, 0.830074, 0.111944, 0.933547, 0.050101, 0.883472, 0.041342, 0.899409, 0.111986, 0.933575, 0.050144, 0.8835, 0.119164, 0.903582, 0.122362, 0.877419, 0.050144, 0.8835, 0.053758, 0.866539, 0.122355, 0.877415, 0.050101, 0.883472, 0.119153, 0.903574, 0.115941, 0.778241, 0.05099, 0.820399, 0.121329, 0.808513, 0.043275, 0.803885, 0.026024, 0.835312, 0.05099, 0.820399, 0.043338, 0.803927, 0.026028, 0.835315, 0.018285, 0.82819, 0.041342, 0.899409, 0.025805, 0.865802, 0.017038, 0.874367, 0.041466, 0.899492, 0.025812, 0.865806, 0.050144, 0.8835, 0.123102, 0.830074, 0.053757, 0.866539, 0.122355, 0.877415, 0.050144, 0.8835, 0.025812, 0.865806, 0.053758, 0.866539, 0.051025, 0.820422, 0.05365, 0.834244, 0.026028, 0.835315, 0.053758, 0.866539, 0.026028, 0.835315, 0.05365, 0.834244, 0.220942, 0.885298, 0.310096, 0.828302, 0.310661, 0.892976, 0.220942, 0.885298, 0.123188, 0.830131, 0.221746, 0.824121, 0.123188, 0.830131, 0.053758, 0.866539, 0.05365, 0.834244, 0.053757, 0.866539, 0.025805, 0.865802, 0.050101, 0.883472, 0.05099, 0.820399, 0.026024, 0.835312, 0.053611, 0.834219, 0.026024, 0.835312, 0.053757, 0.866539, 0.053611, 0.834219, 0.026028, 0.835315, 0.025812, 0.865806, 0.013536, 0.850695, 0.026024, 0.835312, 0.018277, 0.828185, 0.013512, 0.850679, 0.018285, 0.82819, 0.026028, 0.835315, 0.013536, 0.850695, 0.025812, 0.865806, 0.017049, 0.874375, 0.013536, 0.850695, 0.017038, 0.874367, 0.025805, 0.865802, 0.013512, 0.850679, 0.025805, 0.865802, 0.026024, 0.835312, 0.013512, 0.850679, 0.951897, 0.940889, 0.894768, 0.918731, 0.95182, 0.910796, 0.789658, 0.338562, 0.694425, 0.313037, 0.796496, 0.313042, 0.789662, 0.287517, 0.694425, 0.313037, 0.70126, 0.287524, 0.77098, 0.357238, 0.701262, 0.338556, 0.789658, 0.338562, 0.745459, 0.36408, 0.719944, 0.357236, 0.77098, 0.357238, 0.770981, 0.268837, 0.70126, 0.287524, 0.719942, 0.26884, 0.745463, 0.261999, 0.770981, 0.268837, 0.719942, 0.26884, 0.963683, 0.853637, 0.951782, 0.882005, 0.963697, 0.882031, 0.951777, 0.82591, 0.963683, 0.853637, 0.963691, 0.825593, 0.963734, 0.910539, 0.951897, 0.940957, 0.963804, 0.939792, 0.963721, 0.797954, 0.951777, 0.82591, 0.963691, 0.825593, 0.951782, 0.882005, 0.963734, 0.910539, 0.963697, 0.882031, 0.963785, 0.77005, 0.951812, 0.798036, 0.963721, 0.797954, 0.95182, 0.910895, 0.895565, 0.888412, 0.894788, 0.918822, 0.951812, 0.798036, 0.915036, 0.766289, 0.909579, 0.797647, 0.951782, 0.882005, 0.89948, 0.855609, 0.895565, 0.888412, 0.951897, 0.94086, 0.894808, 0.9187, 0.95182, 0.910777, 0.951769, 0.853848, 0.904198, 0.82689, 0.89948, 0.855609, 0.951777, 0.82591, 0.909579, 0.797647, 0.904198, 0.82689, 0.311039, 0.927586, 0.216493, 0.954747, 0.310688, 0.963509, 0.52862, 0.881938, 0.484623, 0.943967, 0.542027, 0.942185, 0.219607, 0.918266, 0.310683, 0.892965, 0.311049, 0.927536, 0.484623, 0.943967, 0.540694, 0.969647, 0.542027, 0.942185, 0.216509, 0.954671, 0.311049, 0.927536, 0.310722, 0.96335, 0.622856, 0.904174, 0.777424, 0.927516, 0.777221, 0.892046, 0.777347, 0.7833, 0.625921, 0.814891, 0.777457, 0.819038, 0.621992, 0.948115, 0.778993, 0.95962, 0.777424, 0.927516, 0.777457, 0.819038, 0.624548, 0.846561, 0.777368, 0.848646, 0.624548, 0.846561, 0.777221, 0.892046, 0.777368, 0.848646, 0.77742, 0.761292, 0.621631, 0.782731, 0.777347, 0.7833, 0.622856, 0.904174, 0.542027, 0.942185, 0.621992, 0.948115, 0.621992, 0.948115, 0.540694, 0.969647, 0.621687, 0.979428, 0.5488, 0.849968, 0.622856, 0.904174, 0.624548, 0.846561, 0.620367, 0.766012, 0.543657, 0.799887, 0.621631, 0.782731, 0.619372, 0.813416, 0.621631, 0.782731, 0.525921, 0.823369, 0.624548, 0.846561, 0.619372, 0.813416, 0.525921, 0.823369, 0.621631, 0.782731, 0.543657, 0.799887, 0.525921, 0.823369, 0.624548, 0.846561, 0.525921, 0.823369, 0.5488, 0.849968, 0.963684, 0.85356, 0.951782, 0.881949, 0.951769, 0.853729, 0.963684, 0.85356, 0.951777, 0.825896, 0.963691, 0.825499, 0.963734, 0.910393, 0.951897, 0.94086, 0.95182, 0.910777, 0.963722, 0.797864, 0.951777, 0.825896, 0.951813, 0.797984, 0.963734, 0.910393, 0.951782, 0.881949, 0.963697, 0.881898, 0.963722, 0.797864, 0.951883, 0.769385, 0.963785, 0.769899, 0.95182, 0.910777, 0.89557, 0.88838, 0.951782, 0.881949, 0.951813, 0.797984, 0.915058, 0.766206, 0.951883, 0.769385, 0.951782, 0.881949, 0.89949, 0.855557, 0.951769, 0.853729, 0.951769, 0.853729, 0.904205, 0.826862, 0.951777, 0.825896, 0.951777, 0.825896, 0.909601, 0.79756, 0.951813, 0.797984, 0.312273, 0.765624, 0.221564, 0.797836, 0.310498, 0.800666, 0.52863, 0.881891, 0.542044, 0.942103, 0.484661, 0.943786, 0.221748, 0.82412, 0.310494, 0.800687, 0.310113, 0.828293, 0.540725, 0.969503, 0.484661, 0.943786, 0.542044, 0.942103, 0.310113, 0.828293, 0.220955, 0.885292, 0.221748, 0.82412, 0.777439, 0.927442, 0.622843, 0.904237, 0.777237, 0.891964, 0.777358, 0.783245, 0.62593, 0.814849, 0.62164, 0.78268, 0.779021, 0.959483, 0.622048, 0.947852, 0.777439, 0.927442, 0.777468, 0.818984, 0.624566, 0.846469, 0.62593, 0.814849, 0.777237, 0.891964, 0.624566, 0.846469, 0.777379, 0.84859, 0.777436, 0.761211, 0.62164, 0.78268, 0.62041, 0.76578, 0.622843, 0.904237, 0.542044, 0.942103, 0.52863, 0.881891, 0.622048, 0.947852, 0.540725, 0.969503, 0.542044, 0.942103, 0.622843, 0.904237, 0.548812, 0.849907, 0.624566, 0.846469, 0.62041, 0.76578, 0.543666, 0.799839, 0.523898, 0.785782, 0.619379, 0.813382, 0.525929, 0.823323, 0.62164, 0.78268, 0.624566, 0.846469, 0.525929, 0.823323, 0.619379, 0.813382, 0.62164, 0.78268, 0.525929, 0.823323, 0.543666, 0.799839, 0.624566, 0.846469, 0.548812, 0.849907, 0.525929, 0.823323, 0.963722, 0.797864, 0.977966, 0.824991, 0.963691, 0.825499, 0.977965, 0.853436, 0.963691, 0.825593, 0.963683, 0.853637, 0.963697, 0.881898, 0.977973, 0.910305, 0.963734, 0.910393, 0.963804, 0.939792, 0.977973, 0.910365, 0.963734, 0.910539, 0.977981, 0.770494, 0.963722, 0.797864, 0.963785, 0.769899, 0.977966, 0.825153, 0.963721, 0.797954, 0.963691, 0.825593, 0.977973, 0.910365, 0.963697, 0.882031, 0.963734, 0.910539, 0.977965, 0.853298, 0.963697, 0.881898, 0.963684, 0.85356, 0.977971, 0.797645, 0.963785, 0.77005, 0.963721, 0.797954, 0.963691, 0.825499, 0.977965, 0.853298, 0.963684, 0.85356, 0.963697, 0.882031, 0.977965, 0.853436, 0.963683, 0.853637, 0.963734, 0.910393, 0.977984, 0.938704, 0.963804, 0.939753, 0.135302, 0.18692, 0.135574, 0.243225, 0.059014, 0.212941, 0.135574, 0.243225, 0.135302, 0.18692, 0.216441, 0.215949, 0.135302, 0.18692, 0.216441, 0.215949, 0.135574, 0.243225, 0.135574, 0.243225, 0.059014, 0.212941, 0.135302, 0.18692, 0.915058, 0.766206, 0.777358, 0.783245, 0.777436, 0.761211, 0.89557, 0.88838, 0.777379, 0.84859, 0.89949, 0.855557, 0.89949, 0.855557, 0.777468, 0.818984, 0.904205, 0.826862, 0.897635, 0.950005, 0.777439, 0.927442, 0.894808, 0.9187, 0.904205, 0.826862, 0.777358, 0.783245, 0.909601, 0.79756, 0.894808, 0.9187, 0.777237, 0.891964, 0.89557, 0.88838, 0.915036, 0.766289, 0.777347, 0.7833, 0.909579, 0.797647, 0.777368, 0.848646, 0.895565, 0.888412, 0.89948, 0.855609, 0.777457, 0.819038, 0.89948, 0.855609, 0.904198, 0.82689, 0.777424, 0.927516, 0.897623, 0.95008, 0.894788, 0.918822, 0.777347, 0.7833, 0.904198, 0.82689, 0.909579, 0.797647, 0.777221, 0.892046, 0.894788, 0.918822, 0.895565, 0.888412, 0.22157, 0.797806, 0.312292, 0.765516, 0.310494, 0.800687, 0.52863, 0.881891, 0.403295, 0.834756, 0.525929, 0.823323, 0.310671, 0.893022, 0.219575, 0.918422, 0.311039, 0.927586, 0.310498, 0.800666, 0.221747, 0.824126, 0.310104, 0.82834, 0.403773, 0.808494, 0.525921, 0.823369, 0.543657, 0.799887, 0.403251, 0.899446, 0.484623, 0.943967, 0.52862, 0.881938, 0.403286, 0.834805, 0.52862, 0.881938, 0.525921, 0.823369, 0.403773, 0.808492, 0.523898, 0.785782, 0.543666, 0.799839, 0.548812, 0.849907, 0.52863, 0.881891, 0.525929, 0.823323, 0.525929, 0.823323, 0.403773, 0.808492, 0.543666, 0.799839, 0.523882, 0.785871, 0.403773, 0.808494, 0.543657, 0.799887, 0.404177, 0.961327, 0.484661, 0.943786, 0.484174, 0.955992, 0.484661, 0.943786, 0.403265, 0.899374, 0.52863, 0.881891, 0.484623, 0.943967, 0.404173, 0.961345, 0.484151, 0.956099, 0.403773, 0.808494, 0.310104, 0.82834, 0.403286, 0.834805, 0.403251, 0.899446, 0.311039, 0.927586, 0.403289, 0.93223, 0.5488, 0.849968, 0.525921, 0.823369, 0.52862, 0.881938, 0.403773, 0.808492, 0.312292, 0.765516, 0.405361, 0.778798, 0.310671, 0.893022, 0.403286, 0.834805, 0.310104, 0.82834, 0.310113, 0.828293, 0.403773, 0.808492, 0.403295, 0.834756, 0.312273, 0.765624, 0.403773, 0.808494, 0.405342, 0.778901, 0.310722, 0.96335, 0.403324, 0.932061, 0.404177, 0.961327, 0.311049, 0.927536, 0.403265, 0.899374, 0.403324, 0.932061, 0.403289, 0.93223, 0.310688, 0.963509, 0.404173, 0.961345, 0.310683, 0.892965, 0.403295, 0.834756, 0.403265, 0.899374, 0.119174, 0.903578, 0.220955, 0.885292, 0.219607, 0.918266, 0.216509, 0.954671, 0.119174, 0.903578, 0.219607, 0.918266, 0.12139, 0.808622, 0.221747, 0.824126, 0.221564, 0.797836, 0.221748, 0.82412, 0.121408, 0.808526, 0.22157, 0.797806, 0.220948, 0.885326, 0.119169, 0.903603, 0.219575, 0.918422, 0.115968, 0.778289, 0.221564, 0.797836, 0.22052, 0.76353, 0.123256, 0.830101, 0.220955, 0.885292, 0.122367, 0.877417, 0.22157, 0.797806, 0.115975, 0.778247, 0.220525, 0.763499, 0.119169, 0.903603, 0.216493, 0.954747, 0.219575, 0.918422, 0.12139, 0.808622, 0.053665, 0.834315, 0.123221, 0.830287, 0.115968, 0.778289, 0.051038, 0.820485, 0.12139, 0.808622, 0.053681, 0.834232, 0.121408, 0.808526, 0.123256, 0.830101, 0.112021, 0.933561, 0.050179, 0.883487, 0.119174, 0.903578, 0.05016, 0.883578, 0.112003, 0.933652, 0.119169, 0.903603, 0.122364, 0.87743, 0.05016, 0.883578, 0.119169, 0.903603, 0.050179, 0.883487, 0.122367, 0.877417, 0.119174, 0.903578, 0.051052, 0.820411, 0.115975, 0.778247, 0.121408, 0.808526, 0.026032, 0.835313, 0.043388, 0.803908, 0.051052, 0.820411, 0.043363, 0.804043, 0.02603, 0.835323, 0.051038, 0.820485, 0.041567, 0.899454, 0.025817, 0.865804, 0.050179, 0.883487, 0.025814, 0.865819, 0.041514, 0.89972, 0.05016, 0.883578, 0.123256, 0.830101, 0.053759, 0.866539, 0.053681, 0.834232, 0.05016, 0.883578, 0.053758, 0.866541, 0.025814, 0.865819, 0.051038, 0.820485, 0.02603, 0.835323, 0.053665, 0.834315, 0.02603, 0.835323, 0.053758, 0.866541, 0.053665, 0.834315, 0.310104, 0.82834, 0.220948, 0.885326, 0.310671, 0.893022, 0.123221, 0.830287, 0.220948, 0.885326, 0.221747, 0.824126, 0.053758, 0.866541, 0.123221, 0.830287, 0.053665, 0.834315, 0.053759, 0.866539, 0.050179, 0.883487, 0.025817, 0.865804, 0.051052, 0.820411, 0.053681, 0.834232, 0.026032, 0.835313, 0.053759, 0.866539, 0.026032, 0.835313, 0.053681, 0.834232, 0.02603, 0.835323, 0.013546, 0.850739, 0.025814, 0.865819, 0.026032, 0.835313, 0.013556, 0.850688, 0.018291, 0.828188, 0.018287, 0.828204, 0.013546, 0.850739, 0.02603, 0.835323, 0.025814, 0.865819, 0.013546, 0.850739, 0.017054, 0.874395, 0.017058, 0.874372, 0.013556, 0.850688, 0.025817, 0.865804, 0.025817, 0.865804, 0.013556, 0.850688, 0.026032, 0.835313, 0.951897, 0.940957, 0.894788, 0.918822, 0.897623, 0.95008, 0.789664, 0.287515, 0.694427, 0.313032, 0.701269, 0.287508, 0.789668, 0.338544, 0.694427, 0.313032, 0.796505, 0.313027, 0.770983, 0.268833, 0.701269, 0.287508, 0.719948, 0.26883, 0.745465, 0.261996, 0.770983, 0.268833, 0.719948, 0.26883, 0.770984, 0.357231, 0.701265, 0.338551, 0.789668, 0.338544, 0.745469, 0.364064, 0.719946, 0.357233, 0.770984, 0.357231, 0.646147, 0.360877, 0.628022, 0.387578, 0.646132, 0.387994, 0.646132, 0.387994, 0.628024, 0.414855, 0.646134, 0.41498, 0.646249, 0.306793, 0.628058, 0.332003, 0.646183, 0.333623, 0.646134, 0.41498, 0.628043, 0.442396, 0.646159, 0.441753, 0.646183, 0.333623, 0.628032, 0.360084, 0.646147, 0.360877, 0.646213, 0.467731, 0.628043, 0.442396, 0.628083, 0.470647, 0.628107, 0.302735, 0.566712, 0.316965, 0.628058, 0.332003, 0.628024, 0.414855, 0.572479, 0.450791, 0.628043, 0.442396, 0.628058, 0.332003, 0.564963, 0.351191, 0.628032, 0.360084, 0.628043, 0.442396, 0.578032, 0.486854, 0.628083, 0.470647, 0.628032, 0.360084, 0.565837, 0.384292, 0.628022, 0.387578, 0.628022, 0.387578, 0.568463, 0.417026, 0.628024, 0.414855, 0.355272, 0.421834, 0.572479, 0.450791, 0.568463, 0.417026, 0.566712, 0.316965, 0.356482, 0.344178, 0.564963, 0.351191, 0.353971, 0.462497, 0.578032, 0.486854, 0.572479, 0.450791, 0.564963, 0.351191, 0.355902, 0.388143, 0.565837, 0.384292, 0.357031, 0.304606, 0.571512, 0.281297, 0.566711, 0.316966, 0.565837, 0.384292, 0.355272, 0.421834, 0.568463, 0.417026, 0.079921, 0.431854, 0.051629, 0.395883, 0.046951, 0.407021, 0.125395, 0.346221, 0.124724, 0.315507, 0.045873, 0.315467, 0.148554, 0.388219, 0.051629, 0.395883, 0.123663, 0.413244, 0.121677, 0.284998, 0.045873, 0.315467, 0.124724, 0.315507, 0.123663, 0.413244, 0.091246, 0.421885, 0.143638, 0.439595, 0.356482, 0.344178, 0.233199, 0.308376, 0.233846, 0.347776, 0.353971, 0.462497, 0.235634, 0.420996, 0.229069, 0.456569, 0.357026, 0.304658, 0.231682, 0.272685, 0.233199, 0.308376, 0.355272, 0.421834, 0.234288, 0.390886, 0.235634, 0.420996, 0.355902, 0.388143, 0.233846, 0.347776, 0.234288, 0.390886, 0.353082, 0.486869, 0.229069, 0.456569, 0.2268, 0.474936, 0.233199, 0.308376, 0.125395, 0.346221, 0.233846, 0.347776, 0.231682, 0.272685, 0.124724, 0.315507, 0.233199, 0.308376, 0.233846, 0.347776, 0.148554, 0.388219, 0.234288, 0.390886, 0.2268, 0.474936, 0.143638, 0.439595, 0.121206, 0.449893, 0.225374, 0.423253, 0.123663, 0.413244, 0.229069, 0.456569, 0.234288, 0.390886, 0.123663, 0.413244, 0.225374, 0.423253, 0.229069, 0.456569, 0.123663, 0.413244, 0.143638, 0.439595, 0.234288, 0.390886, 0.148554, 0.388219, 0.123663, 0.413244, 0.628022, 0.387577, 0.646147, 0.360877, 0.646132, 0.387993, 0.646134, 0.414982, 0.628022, 0.387577, 0.646132, 0.387993, 0.628058, 0.332019, 0.646249, 0.306797, 0.646183, 0.333623, 0.646159, 0.441753, 0.628024, 0.414867, 0.646134, 0.414982, 0.628032, 0.360087, 0.646183, 0.333623, 0.646147, 0.360877, 0.646213, 0.467743, 0.628043, 0.442425, 0.646159, 0.441753, 0.566711, 0.316966, 0.628107, 0.302748, 0.628058, 0.332019, 0.572488, 0.450826, 0.628024, 0.414867, 0.628043, 0.442425, 0.564949, 0.351248, 0.628058, 0.332019, 0.628032, 0.360087, 0.578049, 0.486932, 0.628043, 0.442425, 0.628083, 0.470671, 0.565836, 0.38432, 0.628032, 0.360087, 0.628022, 0.387577, 0.568469, 0.417054, 0.628022, 0.387577, 0.628024, 0.414867, 0.572488, 0.450826, 0.355271, 0.421889, 0.568469, 0.417054, 0.356478, 0.344235, 0.566711, 0.316966, 0.564949, 0.351248, 0.578049, 0.486932, 0.353971, 0.462549, 0.572488, 0.450826, 0.355902, 0.388136, 0.564949, 0.351248, 0.565836, 0.38432, 0.355271, 0.421889, 0.565836, 0.38432, 0.568469, 0.417054, 0.079922, 0.431939, 0.051629, 0.395888, 0.091246, 0.421932, 0.125395, 0.346186, 0.045873, 0.315508, 0.124722, 0.315564, 0.148553, 0.388269, 0.123663, 0.413292, 0.051629, 0.395888, 0.045873, 0.315508, 0.121675, 0.285042, 0.124722, 0.315564, 0.091246, 0.421932, 0.123663, 0.413292, 0.143638, 0.439711, 0.356478, 0.344235, 0.233198, 0.308406, 0.357031, 0.304606, 0.353971, 0.462549, 0.235633, 0.421041, 0.355271, 0.421889, 0.357031, 0.304606, 0.23168, 0.272722, 0.35743, 0.269557, 0.355271, 0.421889, 0.234288, 0.390902, 0.355902, 0.388136, 0.355902, 0.388136, 0.233845, 0.347814, 0.356478, 0.344235, 0.353082, 0.486899, 0.229069, 0.456634, 0.353971, 0.462549, 0.125395, 0.346186, 0.233198, 0.308406, 0.233845, 0.347814, 0.124722, 0.315564, 0.23168, 0.272722, 0.233198, 0.308406, 0.148553, 0.388269, 0.233845, 0.347814, 0.234288, 0.390902, 0.226801, 0.475005, 0.143638, 0.439711, 0.229069, 0.456634, 0.225374, 0.423257, 0.229069, 0.456634, 0.123663, 0.413292, 0.234288, 0.390902, 0.225374, 0.423257, 0.123663, 0.413292, 0.229069, 0.456634, 0.143638, 0.439711, 0.123663, 0.413292, 0.234288, 0.390902, 0.123663, 0.413292, 0.148553, 0.388269, 0.646159, 0.441753, 0.661616, 0.414862, 0.661659, 0.440871, 0.646132, 0.387994, 0.661616, 0.414864, 0.661611, 0.388396, 0.646183, 0.333623, 0.661641, 0.361737, 0.646147, 0.360877, 0.646183, 0.333623, 0.661823, 0.309902, 0.646249, 0.306793, 0.646213, 0.467743, 0.661659, 0.440871, 0.661753, 0.465429, 0.646134, 0.41498, 0.661659, 0.44087, 0.661616, 0.414864, 0.646147, 0.360877, 0.661708, 0.335247, 0.646183, 0.333623, 0.646132, 0.387993, 0.661641, 0.361737, 0.661611, 0.388392, 0.646159, 0.441753, 0.661753, 0.465427, 0.661659, 0.44087, 0.646132, 0.387993, 0.661616, 0.414862, 0.646134, 0.414982, 0.646132, 0.387994, 0.661641, 0.361738, 0.646147, 0.360877, 0.646249, 0.306797, 0.661708, 0.335248, 0.646183, 0.333623, 0.135302, 0.18692, 0.216441, 0.215949, 0.135574, 0.243225, 0.135574, 0.243225, 0.059014, 0.212941, 0.135302, 0.18692, 0.135302, 0.18692, 0.135574, 0.243226, 0.059014, 0.212941, 0.135574, 0.243226, 0.135302, 0.18692, 0.216427, 0.215933, 0.571531, 0.281246, 0.357026, 0.304658, 0.566712, 0.316965, 0.701264, 0.338551, 0.796501, 0.313028, 0.789663, 0.338546, 0.770982, 0.357231, 0.701264, 0.338551, 0.789663, 0.338546, 0.796501, 0.313028, 0.701264, 0.28751, 0.789663, 0.287515, 0.770982, 0.268834, 0.701264, 0.28751, 0.719945, 0.268831, 0.745464, 0.261996, 0.770982, 0.268834, 0.719945, 0.268831, 0.745464, 0.364065, 0.719945, 0.357233, 0.770982, 0.357231, 0.121207, 0.449981, 0.091246, 0.421932, 0.143638, 0.439711, 0.121206, 0.449893, 0.091246, 0.421885, 0.079921, 0.431854, 0.628022, 0.387575, 0.646147, 0.360879, 0.646132, 0.387999, 0.628024, 0.414877, 0.646132, 0.387999, 0.646134, 0.414984, 0.628058, 0.332016, 0.646249, 0.306795, 0.646183, 0.333623, 0.628043, 0.442413, 0.646134, 0.414984, 0.646159, 0.441753, 0.628033, 0.360089, 0.646183, 0.333623, 0.646147, 0.360879, 0.646213, 0.467736, 0.628043, 0.442413, 0.646159, 0.441753, 0.566713, 0.316966, 0.628107, 0.30274, 0.628058, 0.332016, 0.572528, 0.450807, 0.628024, 0.414877, 0.628043, 0.442413, 0.565047, 0.351221, 0.628058, 0.332016, 0.628033, 0.360089, 0.578116, 0.486881, 0.628043, 0.442413, 0.628083, 0.470654, 0.565882, 0.384308, 0.628033, 0.360089, 0.628022, 0.387575, 0.568508, 0.417041, 0.628022, 0.387575, 0.628024, 0.414877, 0.572528, 0.450807, 0.355323, 0.421858, 0.568508, 0.417041, 0.566713, 0.316966, 0.356532, 0.344203, 0.356982, 0.304636, 0.578116, 0.486881, 0.35402, 0.462519, 0.572528, 0.450807, 0.565047, 0.351221, 0.355896, 0.38814, 0.356532, 0.344203, 0.57152, 0.281323, 0.357023, 0.304578, 0.566711, 0.316966, 0.565882, 0.384308, 0.355323, 0.421858, 0.355896, 0.38814, 0.07999, 0.431899, 0.051633, 0.395885, 0.091284, 0.42191, 0.125367, 0.346203, 0.045904, 0.315489, 0.124767, 0.315535, 0.148594, 0.388244, 0.123703, 0.413268, 0.051633, 0.395885, 0.045904, 0.315489, 0.121709, 0.28502, 0.124767, 0.315535, 0.091284, 0.42191, 0.123703, 0.413268, 0.143735, 0.439654, 0.356532, 0.344203, 0.233223, 0.30839, 0.356982, 0.304636, 0.35402, 0.462519, 0.235673, 0.421017, 0.355323, 0.421858, 0.356982, 0.304636, 0.231711, 0.272702, 0.357432, 0.269556, 0.355323, 0.421858, 0.234302, 0.390894, 0.355896, 0.38814, 0.355896, 0.38814, 0.233878, 0.347794, 0.356532, 0.344203, 0.35311, 0.486882, 0.229126, 0.4566, 0.35402, 0.462519, 0.125367, 0.346203, 0.233223, 0.30839, 0.233878, 0.347794, 0.124767, 0.315535, 0.231711, 0.272702, 0.233223, 0.30839, 0.148594, 0.388244, 0.233878, 0.347794, 0.234302, 0.390894, 0.226861, 0.474969, 0.143735, 0.439654, 0.229126, 0.4566, 0.225378, 0.423255, 0.229126, 0.4566, 0.123703, 0.413268, 0.234302, 0.390894, 0.225378, 0.423255, 0.123703, 0.413268, 0.229126, 0.4566, 0.143735, 0.439654, 0.123703, 0.413268, 0.234302, 0.390894, 0.123703, 0.413268, 0.148594, 0.388244, 0.646147, 0.36088, 0.628022, 0.387573, 0.646132, 0.388001, 0.646134, 0.414988, 0.628022, 0.387573, 0.628024, 0.414902, 0.646249, 0.3068, 0.628058, 0.332039, 0.646183, 0.333624, 0.646159, 0.441754, 0.628024, 0.414902, 0.628043, 0.442452, 0.646183, 0.333624, 0.628032, 0.360095, 0.646147, 0.36088, 0.646213, 0.46775, 0.628043, 0.442452, 0.628083, 0.470681, 0.628107, 0.302757, 0.566711, 0.316966, 0.628058, 0.332039, 0.628024, 0.414902, 0.572499, 0.45085, 0.628043, 0.442452, 0.628058, 0.332039, 0.564965, 0.351292, 0.628032, 0.360095, 0.628043, 0.442452, 0.578067, 0.486972, 0.628083, 0.470681, 0.628032, 0.360095, 0.565845, 0.384343, 0.628022, 0.387573, 0.628022, 0.387573, 0.568478, 0.417076, 0.628024, 0.414902, 0.572499, 0.45085, 0.355281, 0.421919, 0.353982, 0.462576, 0.566711, 0.316966, 0.356488, 0.344265, 0.564965, 0.351292, 0.578067, 0.486972, 0.353982, 0.462576, 0.353088, 0.486915, 0.564965, 0.351292, 0.355901, 0.388133, 0.565845, 0.384343, 0.565845, 0.384343, 0.355281, 0.421919, 0.568478, 0.417076, 0.079936, 0.431987, 0.05163, 0.395891, 0.04696, 0.407104, 0.12539, 0.346167, 0.12473, 0.315594, 0.045879, 0.315531, 0.148561, 0.388296, 0.05163, 0.395891, 0.123671, 0.413319, 0.121681, 0.285065, 0.045879, 0.315531, 0.12473, 0.315594, 0.123671, 0.413319, 0.091254, 0.421958, 0.143659, 0.439775, 0.356488, 0.344265, 0.233202, 0.308422, 0.233851, 0.347835, 0.353982, 0.462576, 0.235641, 0.421065, 0.229081, 0.456669, 0.357023, 0.304578, 0.231685, 0.272741, 0.233202, 0.308422, 0.355281, 0.421919, 0.234291, 0.390911, 0.235641, 0.421065, 0.355901, 0.388133, 0.233851, 0.347835, 0.234291, 0.390911, 0.353088, 0.486915, 0.229081, 0.456669, 0.226814, 0.475043, 0.233202, 0.308422, 0.12539, 0.346167, 0.233851, 0.347835, 0.231685, 0.272741, 0.12473, 0.315594, 0.233202, 0.308422, 0.233851, 0.347835, 0.148561, 0.388296, 0.234291, 0.390911, 0.226814, 0.475043, 0.143659, 0.439775, 0.121222, 0.45003, 0.225375, 0.423259, 0.123671, 0.413319, 0.229081, 0.456669, 0.234291, 0.390911, 0.123671, 0.413319, 0.225375, 0.423259, 0.229081, 0.456669, 0.123671, 0.413319, 0.143659, 0.439775, 0.234291, 0.390911, 0.148561, 0.388296, 0.123671, 0.413319, 0.646159, 0.441754, 0.661616, 0.414871, 0.646134, 0.414988, 0.646132, 0.387999, 0.661616, 0.41487, 0.646134, 0.414984, 0.661641, 0.361745, 0.646183, 0.333624, 0.646147, 0.36088, 0.661823, 0.309906, 0.646183, 0.333623, 0.646249, 0.306795, 0.646213, 0.46775, 0.661659, 0.44088, 0.646159, 0.441754, 0.646134, 0.414984, 0.661659, 0.440876, 0.646159, 0.441753, 0.661708, 0.33525, 0.646147, 0.360879, 0.646183, 0.333623, 0.646132, 0.388001, 0.661641, 0.361745, 0.646147, 0.36088, 0.646159, 0.441753, 0.661753, 0.465429, 0.646213, 0.467736, 0.661616, 0.414871, 0.646132, 0.388001, 0.646134, 0.414988, 0.661641, 0.361744, 0.646132, 0.387999, 0.646147, 0.360879, 0.661708, 0.335254, 0.646249, 0.3068, 0.646183, 0.333624, 0.135302, 0.18692, 0.135574, 0.243226, 0.059014, 0.212941, 0.135574, 0.243226, 0.135302, 0.18692, 0.216427, 0.215933, 0.135302, 0.18692, 0.216441, 0.215949, 0.135574, 0.243225, 0.135574, 0.243225, 0.059014, 0.212941, 0.135302, 0.18692, 0.571581, 0.281264, 0.356982, 0.304636, 0.357432, 0.269556, 0.796504, 0.31304, 0.701268, 0.287521, 0.789664, 0.287517, 0.770983, 0.268837, 0.701268, 0.287521, 0.719947, 0.268839, 0.701265, 0.338555, 0.796504, 0.31304, 0.789667, 0.338559, 0.770984, 0.357236, 0.701265, 0.338555, 0.789667, 0.338559, 0.745468, 0.364077, 0.719946, 0.357235, 0.770984, 0.357236, 0.745465, 0.261998, 0.770983, 0.268837, 0.719947, 0.268839, 0.121222, 0.45003, 0.091254, 0.421958, 0.079936, 0.431987, 0.121279, 0.449939, 0.091284, 0.42191, 0.143735, 0.439654, 0.838183, 0.026335, 0.662094, 0.072539, 0.662097, 0.026473, 0.838183, 0.026335, 0.889511, 0.072535, 0.838172, 0.072529, 0.838172, 0.072529, 0.662095, 0.119024, 0.662094, 0.072539, 0.838172, 0.072529, 0.889563, 0.109459, 0.838185, 0.119078, 0.838183, 0.026327, 0.662094, 0.072538, 0.662097, 0.026473, 0.838183, 0.026327, 0.889511, 0.072533, 0.838172, 0.072528, 0.838172, 0.072528, 0.662095, 0.119016, 0.662094, 0.072538, 0.889511, 0.072533, 0.838185, 0.119068, 0.838172, 0.072528, 0.838183, 0.026331, 0.889511, 0.072534, 0.838172, 0.072529, 0.838183, 0.026331, 0.662094, 0.072539, 0.662097, 0.026473, 0.889511, 0.072534, 0.838185, 0.119073, 0.838172, 0.072529, 0.838172, 0.072529, 0.662095, 0.119024, 0.662094, 0.072539, 0.88956, 0.035718, 0.838172, 0.072529, 0.838183, 0.026333, 0.88956, 0.035718, 0.939242, 0.052424, 0.889511, 0.072535, 0.838183, 0.026333, 0.662094, 0.072539, 0.662097, 0.026474, 0.939279, 0.092524, 0.889511, 0.072535, 0.939242, 0.052424, 0.838172, 0.072529, 0.662095, 0.119026, 0.662094, 0.072539, 0.939242, 0.052424, 0.963124, 0.072506, 0.939279, 0.092524, 0.889511, 0.072535, 0.838185, 0.119076, 0.838172, 0.072529, 0.889564, 0.109451, 0.889511, 0.072535, 0.939279, 0.092524, 0.889563, 0.109443, 0.889511, 0.072534, 0.939275, 0.092519, 0.88956, 0.035713, 0.939242, 0.052423, 0.889511, 0.072534, 0.889511, 0.072534, 0.939242, 0.052423, 0.939275, 0.092519, 0.939242, 0.052423, 0.963119, 0.072505, 0.939275, 0.092519, 0.88956, 0.035723, 0.939241, 0.052426, 0.889511, 0.072535, 0.889563, 0.109459, 0.889511, 0.072535, 0.939273, 0.09253, 0.889511, 0.072535, 0.939241, 0.052426, 0.939273, 0.09253, 0.939241, 0.052426, 0.963115, 0.072506, 0.939273, 0.09253, 0.939242, 0.052422, 0.963118, 0.072505, 0.939274, 0.092514, 0.88956, 0.035707, 0.939242, 0.052422, 0.889511, 0.072533, 0.889563, 0.109431, 0.889511, 0.072533, 0.939274, 0.092514, 0.939274, 0.092514, 0.889511, 0.072533, 0.939242, 0.052422, 0.662094, 0.072539, 0.838185, 0.119066, 0.662095, 0.119017, 0.838185, 0.119066, 0.889511, 0.072532, 0.889563, 0.109428, 0.662097, 0.026473, 0.838172, 0.072528, 0.662094, 0.072539, 0.838172, 0.072528, 0.88956, 0.035705, 0.889511, 0.072532, 0.662094, 0.07254, 0.838185, 0.119074, 0.662095, 0.119025, 0.838185, 0.119074, 0.889511, 0.072534, 0.889564, 0.109453, 0.662097, 0.026474, 0.838172, 0.072529, 0.662094, 0.07254, 0.838183, 0.026332, 0.889511, 0.072534, 0.838172, 0.072529, 0.838185, 0.119074, 0.889511, 0.072534, 0.889564, 0.109453, 0.662094, 0.07254, 0.838185, 0.119074, 0.662095, 0.119025, 0.838183, 0.026332, 0.889511, 0.072534, 0.838172, 0.072529, 0.662097, 0.026474, 0.838172, 0.072529, 0.662094, 0.07254, 0.838172, 0.072529, 0.889563, 0.109455, 0.838185, 0.119075, 0.889563, 0.109455, 0.889511, 0.072534, 0.939274, 0.092527, 0.662094, 0.07254, 0.838185, 0.119075, 0.662095, 0.119025, 0.939242, 0.052425, 0.939274, 0.092527, 0.889511, 0.072534, 0.662097, 0.026474, 0.838172, 0.072529, 0.662094, 0.07254, 0.939274, 0.092527, 0.939242, 0.052425, 0.963117, 0.072506, 0.838183, 0.026332, 0.889511, 0.072534, 0.838172, 0.072529, 0.88956, 0.03572, 0.939242, 0.052425, 0.889511, 0.072534, 0.88956, 0.035719, 0.939242, 0.052425, 0.889511, 0.072534, 0.889564, 0.109453, 0.889511, 0.072534, 0.939278, 0.092526, 0.889511, 0.072534, 0.939242, 0.052425, 0.939278, 0.092526, 0.939278, 0.092526, 0.939242, 0.052425, 0.963123, 0.072506, 0.889563, 0.109428, 0.889511, 0.072532, 0.939274, 0.092512, 0.88956, 0.035705, 0.939242, 0.052421, 0.889511, 0.072532, 0.889511, 0.072532, 0.939242, 0.052421, 0.939274, 0.092512, 0.939274, 0.092512, 0.939242, 0.052421, 0.963118, 0.072505, 0.939277, 0.092526, 0.939242, 0.052425, 0.963122, 0.072506, 0.889564, 0.109453, 0.889511, 0.072534, 0.939277, 0.092526, 0.88956, 0.035719, 0.939242, 0.052425, 0.889511, 0.072534, 0.939242, 0.052425, 0.939277, 0.092526, 0.889511, 0.072534, 0.838183, 0.026332, 0.662094, 0.072539, 0.662097, 0.026473, 0.838183, 0.026332, 0.889511, 0.072534, 0.838172, 0.072529, 0.662094, 0.072539, 0.838185, 0.119074, 0.662095, 0.11902, 0.838172, 0.072529, 0.889563, 0.109447, 0.838185, 0.119074, 0.838183, 0.026331, 0.662094, 0.072539, 0.662097, 0.026473, 0.838183, 0.026331, 0.889511, 0.072534, 0.838172, 0.072529, 0.662094, 0.072539, 0.838185, 0.119073, 0.662095, 0.11902, 0.889511, 0.072534, 0.838185, 0.119073, 0.838172, 0.072529, 0.838183, 0.026338, 0.889511, 0.072536, 0.838172, 0.072529, 0.838183, 0.026338, 0.662094, 0.07254, 0.662097, 0.026474, 0.889511, 0.072536, 0.838185, 0.119081, 0.838172, 0.072529, 0.838172, 0.072529, 0.662095, 0.119031, 0.662094, 0.07254, 0.88956, 0.035716, 0.838172, 0.072529, 0.838183, 0.026332, 0.88956, 0.035716, 0.939242, 0.052424, 0.889511, 0.072534, 0.662097, 0.026473, 0.838172, 0.072529, 0.662094, 0.072539, 0.939277, 0.092523, 0.889511, 0.072534, 0.939242, 0.052424, 0.662094, 0.072539, 0.838185, 0.119074, 0.662095, 0.11902, 0.939242, 0.052424, 0.963122, 0.072506, 0.939277, 0.092523, 0.889511, 0.072534, 0.838185, 0.119074, 0.838172, 0.072529, 0.889564, 0.109447, 0.889511, 0.072534, 0.939277, 0.092523, 0.889564, 0.109467, 0.889511, 0.072536, 0.939277, 0.092533, 0.88956, 0.035727, 0.939242, 0.052426, 0.889511, 0.072536, 0.889511, 0.072536, 0.939242, 0.052426, 0.939277, 0.092533, 0.939242, 0.052426, 0.963121, 0.072506, 0.939277, 0.092533, 0.88956, 0.035716, 0.939242, 0.052424, 0.889511, 0.072534, 0.889563, 0.109447, 0.889511, 0.072534, 0.939275, 0.092523, 0.889511, 0.072534, 0.939242, 0.052424, 0.939275, 0.092523, 0.939242, 0.052424, 0.963118, 0.072506, 0.939275, 0.092523, 0.939242, 0.052424, 0.963118, 0.072506, 0.939274, 0.092522, 0.88956, 0.035715, 0.939242, 0.052424, 0.889511, 0.072534, 0.889563, 0.109446, 0.889511, 0.072534, 0.939274, 0.092522, 0.939274, 0.092522, 0.889511, 0.072534, 0.939242, 0.052424, 0.662095, 0.119021, 0.838172, 0.072529, 0.838185, 0.119071, 0.838185, 0.119071, 0.889511, 0.072533, 0.889563, 0.109441, 0.662097, 0.026473, 0.838172, 0.072529, 0.662094, 0.07254, 0.838172, 0.072529, 0.88956, 0.035712, 0.889511, 0.072533, 0.662095, 0.119023, 0.838172, 0.072529, 0.838185, 0.119072, 0.838185, 0.119072, 0.889511, 0.072533, 0.889563, 0.109445, 0.662097, 0.026473, 0.838172, 0.072529, 0.662094, 0.07254, 0.838183, 0.02633, 0.889511, 0.072533, 0.838172, 0.072529, 0.838185, 0.119076, 0.889511, 0.072534, 0.889563, 0.109458, 0.662095, 0.119026, 0.838172, 0.072529, 0.838185, 0.119076, 0.838183, 0.026333, 0.889511, 0.072534, 0.838172, 0.072529, 0.662097, 0.026474, 0.838172, 0.072529, 0.662094, 0.07254, 0.838172, 0.072529, 0.889563, 0.109453, 0.838185, 0.119074, 0.889563, 0.109453, 0.889511, 0.072534, 0.939274, 0.092526, 0.662094, 0.07254, 0.838185, 0.119074, 0.662095, 0.119025, 0.939242, 0.052425, 0.939274, 0.092526, 0.889511, 0.072534, 0.662097, 0.026473, 0.838172, 0.072529, 0.662094, 0.07254, 0.939274, 0.092526, 0.939242, 0.052425, 0.963118, 0.072506, 0.838183, 0.026332, 0.889511, 0.072534, 0.838172, 0.072529, 0.88956, 0.035719, 0.939242, 0.052425, 0.889511, 0.072534, 0.88956, 0.035722, 0.939242, 0.052425, 0.889511, 0.072534, 0.889563, 0.109458, 0.889511, 0.072534, 0.939276, 0.092528, 0.889511, 0.072534, 0.939242, 0.052425, 0.939276, 0.092528, 0.939276, 0.092528, 0.939242, 0.052425, 0.96312, 0.072506, 0.889563, 0.109441, 0.889511, 0.072533, 0.939276, 0.092519, 0.88956, 0.035712, 0.939242, 0.052423, 0.889511, 0.072533, 0.889511, 0.072533, 0.939242, 0.052423, 0.939276, 0.092519, 0.939276, 0.092519, 0.939242, 0.052423, 0.96312, 0.072505, 0.939276, 0.092522, 0.939242, 0.052424, 0.96312, 0.072506, 0.889563, 0.109445, 0.889511, 0.072533, 0.939276, 0.092522, 0.88956, 0.035715, 0.939242, 0.052424, 0.889511, 0.072533, 0.939242, 0.052424, 0.939276, 0.092522, 0.889511, 0.072533, 0.446542, 0.152045, 0.445222, 0.107657, 0.43459, 0.106312, 0.429009, 0.079148, 0.441707, 0.066151, 0.430633, 0.062562, 0.441703, 0.06616, 0.429005, 0.079154, 0.430625, 0.062579, 0.44522, 0.107662, 0.446538, 0.152058, 0.434588, 0.106315, 0.43459, 0.106312, 0.439034, 0.082491, 0.429009, 0.079148, 0.441707, 0.066151, 0.442818, 0.039591, 0.430633, 0.062562, 0.442811, 0.039605, 0.441703, 0.06616, 0.430625, 0.062579, 0.439031, 0.082496, 0.434588, 0.106315, 0.429005, 0.079154, 0.245539, 0.113125, 0.357615, 0.166078, 0.355304, 0.109382, 0.248676, 0.053333, 0.355139, 0.074142, 0.356039, 0.053276, 0.355138, 0.074144, 0.248672, 0.053342, 0.356039, 0.053277, 0.357614, 0.166084, 0.24553, 0.113156, 0.355304, 0.109379, 0.249084, 0.073693, 0.355304, 0.109382, 0.355139, 0.074142, 0.359293, 0.018605, 0.248676, 0.053333, 0.356039, 0.053276, 0.248672, 0.053342, 0.359291, 0.01861, 0.356039, 0.053277, 0.355304, 0.109379, 0.249082, 0.073699, 0.355138, 0.074144, 0.150048, 0.072787, 0.245539, 0.113125, 0.249084, 0.073693, 0.146068, 0.042477, 0.248676, 0.053333, 0.244963, 0.024333, 0.248672, 0.053342, 0.146066, 0.042482, 0.244962, 0.024338, 0.24553, 0.113156, 0.150047, 0.072791, 0.249082, 0.073699, 0.245539, 0.113125, 0.139284, 0.139179, 0.240426, 0.157586, 0.248676, 0.053333, 0.150048, 0.072787, 0.249084, 0.073693, 0.249082, 0.073699, 0.150047, 0.072791, 0.248672, 0.053342, 0.24042, 0.157616, 0.139284, 0.13918, 0.24553, 0.113156, 0.429005, 0.079154, 0.355304, 0.109379, 0.355138, 0.074144, 0.359291, 0.01861, 0.430625, 0.062579, 0.356039, 0.053277, 0.430633, 0.062562, 0.359293, 0.018605, 0.356039, 0.053276, 0.355304, 0.109382, 0.429009, 0.079148, 0.355139, 0.074142, 0.434588, 0.106315, 0.357614, 0.166084, 0.355304, 0.109379, 0.430625, 0.062579, 0.355138, 0.074144, 0.356039, 0.053277, 0.355139, 0.074142, 0.430633, 0.062562, 0.356039, 0.053276, 0.357615, 0.166078, 0.43459, 0.106312, 0.355304, 0.109382, 0.454967, 0.043212, 0.451588, 0.069428, 0.441703, 0.06616, 0.44522, 0.107662, 0.448552, 0.085067, 0.454611, 0.108672, 0.456255, 0.148752, 0.454614, 0.108665, 0.445222, 0.107657, 0.445222, 0.107657, 0.44856, 0.085048, 0.439034, 0.082491, 0.439031, 0.082496, 0.451588, 0.069428, 0.448552, 0.085067, 0.456249, 0.148769, 0.454611, 0.108672, 0.464552, 0.145757, 0.439034, 0.082491, 0.451599, 0.069406, 0.441707, 0.066151, 0.454977, 0.043195, 0.451599, 0.069406, 0.464676, 0.046137, 0.535819, 0.034494, 0.554781, 0.132566, 0.53582, 0.137717, 0.525167, 0.039295, 0.53582, 0.137717, 0.525167, 0.132915, 0.519528, 0.057024, 0.525167, 0.132915, 0.519528, 0.115181, 0.516095, 0.086103, 0.519528, 0.057024, 0.519528, 0.115181, 0.092268, 0.149795, 0.064658, 0.029739, 0.092266, 0.030508, 0.100802, 0.090151, 0.092268, 0.149795, 0.092266, 0.030508, 0.446547, 0.152062, 0.445224, 0.107664, 0.45626, 0.148775, 0.42901, 0.079156, 0.441708, 0.066162, 0.439035, 0.082498, 0.42901, 0.079148, 0.44171, 0.066151, 0.430638, 0.062563, 0.446547, 0.152045, 0.445224, 0.107657, 0.434591, 0.106312, 0.43459, 0.106316, 0.439035, 0.082498, 0.445224, 0.107664, 0.442819, 0.039609, 0.441708, 0.066162, 0.430634, 0.062584, 0.442822, 0.039591, 0.44171, 0.066151, 0.454981, 0.043195, 0.434591, 0.106312, 0.439036, 0.082491, 0.42901, 0.079148, 0.357617, 0.166085, 0.245543, 0.113161, 0.355303, 0.109378, 0.355139, 0.074145, 0.248676, 0.053343, 0.356039, 0.053278, 0.355139, 0.074142, 0.248677, 0.053333, 0.249085, 0.073693, 0.357617, 0.166078, 0.245545, 0.113126, 0.240432, 0.157587, 0.355303, 0.109378, 0.249084, 0.0737, 0.355139, 0.074145, 0.359293, 0.018611, 0.248676, 0.053343, 0.244963, 0.024338, 0.359294, 0.018605, 0.248677, 0.053333, 0.35604, 0.053276, 0.355303, 0.109382, 0.249085, 0.073693, 0.245545, 0.113126, 0.245543, 0.113161, 0.150049, 0.072791, 0.249084, 0.0737, 0.248676, 0.053343, 0.146068, 0.042484, 0.244963, 0.024338, 0.248677, 0.053333, 0.146068, 0.042477, 0.150049, 0.072787, 0.245545, 0.113126, 0.150049, 0.072787, 0.139284, 0.139179, 0.245543, 0.113161, 0.240432, 0.157622, 0.139284, 0.13918, 0.248676, 0.053343, 0.249084, 0.0737, 0.150049, 0.072791, 0.249085, 0.073693, 0.248677, 0.053333, 0.150049, 0.072787, 0.240432, 0.157587, 0.245545, 0.113126, 0.139284, 0.139179, 0.355303, 0.109382, 0.42901, 0.079148, 0.355139, 0.074142, 0.359294, 0.018605, 0.430638, 0.062563, 0.442822, 0.039591, 0.359293, 0.018611, 0.430634, 0.062584, 0.356039, 0.053278, 0.355303, 0.109378, 0.42901, 0.079156, 0.43459, 0.106316, 0.357617, 0.166078, 0.434591, 0.106312, 0.355303, 0.109382, 0.355139, 0.074142, 0.430638, 0.062563, 0.35604, 0.053276, 0.355139, 0.074145, 0.430634, 0.062584, 0.42901, 0.079156, 0.357617, 0.166085, 0.43459, 0.106316, 0.446547, 0.152062, 0.451605, 0.069407, 0.454981, 0.043195, 0.44171, 0.066151, 0.445224, 0.107657, 0.448566, 0.085048, 0.439036, 0.082491, 0.454615, 0.108673, 0.45626, 0.148775, 0.445224, 0.107664, 0.448564, 0.085073, 0.445224, 0.107664, 0.439035, 0.082498, 0.439036, 0.082491, 0.451605, 0.069407, 0.44171, 0.066151, 0.45626, 0.148752, 0.454615, 0.108665, 0.445224, 0.107657, 0.451601, 0.069434, 0.439035, 0.082498, 0.441708, 0.066162, 0.454977, 0.043217, 0.451601, 0.069434, 0.441708, 0.066162, 0.554803, 0.03962, 0.535827, 0.1377, 0.535833, 0.034463, 0.535833, 0.034463, 0.52518, 0.132891, 0.525177, 0.039274, 0.525177, 0.039274, 0.519538, 0.115161, 0.519533, 0.057014, 0.516103, 0.086085, 0.519533, 0.057014, 0.519538, 0.115161, 0.092255, 0.03051, 0.064646, 0.150567, 0.064652, 0.029739, 0.100789, 0.090153, 0.092252, 0.149797, 0.092255, 0.03051, 0.446547, 0.15204, 0.445225, 0.107656, 0.434591, 0.106312, 0.429011, 0.079145, 0.44171, 0.066148, 0.430639, 0.062557, 0.441693, 0.066174, 0.428999, 0.079164, 0.430609, 0.062603, 0.445215, 0.10767, 0.446524, 0.152078, 0.434586, 0.106319, 0.434591, 0.106312, 0.439036, 0.082489, 0.429011, 0.079145, 0.44171, 0.066148, 0.442823, 0.039586, 0.430639, 0.062557, 0.442796, 0.039626, 0.441693, 0.066174, 0.430609, 0.062603, 0.439025, 0.082505, 0.434586, 0.106319, 0.428999, 0.079164, 0.245546, 0.113118, 0.357617, 0.166077, 0.355303, 0.109382, 0.248677, 0.053332, 0.355139, 0.074141, 0.35604, 0.053276, 0.355135, 0.074147, 0.248666, 0.05335, 0.356038, 0.053279, 0.35761, 0.16609, 0.245507, 0.113188, 0.355307, 0.109375, 0.249085, 0.073692, 0.355303, 0.109382, 0.355139, 0.074141, 0.359294, 0.018603, 0.248677, 0.053332, 0.35604, 0.053276, 0.248666, 0.05335, 0.359286, 0.018616, 0.356038, 0.053279, 0.355307, 0.109375, 0.249078, 0.073705, 0.355135, 0.074147, 0.150049, 0.072786, 0.245546, 0.113118, 0.249085, 0.073692, 0.146069, 0.042476, 0.248677, 0.053332, 0.244964, 0.024333, 0.248666, 0.05335, 0.146062, 0.042488, 0.24496, 0.024341, 0.245507, 0.113188, 0.150044, 0.072794, 0.249078, 0.073705, 0.245546, 0.113118, 0.139284, 0.139179, 0.240433, 0.15758, 0.248677, 0.053332, 0.150049, 0.072786, 0.249085, 0.073692, 0.249078, 0.073705, 0.150044, 0.072794, 0.248666, 0.05335, 0.240398, 0.157647, 0.139283, 0.13918, 0.245507, 0.113188, 0.428999, 0.079164, 0.355307, 0.109375, 0.355135, 0.074147, 0.359286, 0.018616, 0.430609, 0.062603, 0.356038, 0.053279, 0.430639, 0.062557, 0.359294, 0.018603, 0.35604, 0.053276, 0.355303, 0.109382, 0.429011, 0.079145, 0.355139, 0.074141, 0.434586, 0.106319, 0.35761, 0.16609, 0.355307, 0.109375, 0.430609, 0.062603, 0.355135, 0.074147, 0.356038, 0.053279, 0.355139, 0.074141, 0.430639, 0.062557, 0.35604, 0.053276, 0.357617, 0.166077, 0.434591, 0.106312, 0.355303, 0.109382, 0.454949, 0.043237, 0.451566, 0.06946, 0.441693, 0.066174, 0.445215, 0.10767, 0.448532, 0.085097, 0.454604, 0.108681, 0.456261, 0.148746, 0.454616, 0.108663, 0.445225, 0.107656, 0.445225, 0.107656, 0.448567, 0.085041, 0.439036, 0.082489, 0.439025, 0.082505, 0.451566, 0.06946, 0.448532, 0.085097, 0.456231, 0.148796, 0.454604, 0.108681, 0.464535, 0.145781, 0.439036, 0.082489, 0.451606, 0.0694, 0.44171, 0.066148, 0.454982, 0.04319, 0.451606, 0.0694, 0.464696, 0.046119, 0.535807, 0.034463, 0.554762, 0.132516, 0.535813, 0.1377, 0.525159, 0.039274, 0.535813, 0.1377, 0.525158, 0.132891, 0.519525, 0.057014, 0.525158, 0.132891, 0.51952, 0.115161, 0.516088, 0.086085, 0.519525, 0.057014, 0.51952, 0.115161, 0.09226, 0.149791, 0.064655, 0.029737, 0.092261, 0.030503, 0.100796, 0.090147, 0.09226, 0.149791, 0.092261, 0.030503, 0.446524, 0.152052, 0.445215, 0.10766, 0.456231, 0.148762, 0.428999, 0.079152, 0.441693, 0.066156, 0.439025, 0.082494, 0.42901, 0.079148, 0.441709, 0.066152, 0.430636, 0.062564, 0.446545, 0.152046, 0.445224, 0.107658, 0.43459, 0.106313, 0.434586, 0.106314, 0.439025, 0.082494, 0.445215, 0.10766, 0.442796, 0.039599, 0.441693, 0.066156, 0.430609, 0.062572, 0.44282, 0.039592, 0.441709, 0.066152, 0.454979, 0.043198, 0.43459, 0.106313, 0.439035, 0.082492, 0.42901, 0.079148, 0.35761, 0.166082, 0.245507, 0.113146, 0.355307, 0.10938, 0.355135, 0.074143, 0.248666, 0.053339, 0.356038, 0.053277, 0.355139, 0.074142, 0.248677, 0.053335, 0.249084, 0.073694, 0.357617, 0.166079, 0.245543, 0.113128, 0.24043, 0.157589, 0.355307, 0.10938, 0.249078, 0.073697, 0.355135, 0.074143, 0.359286, 0.018608, 0.248666, 0.053339, 0.24496, 0.024336, 0.359294, 0.018605, 0.248677, 0.053335, 0.35604, 0.053276, 0.355303, 0.109381, 0.249084, 0.073694, 0.245543, 0.113128, 0.245507, 0.113146, 0.150044, 0.072789, 0.249078, 0.073697, 0.248666, 0.053339, 0.146062, 0.042481, 0.24496, 0.024336, 0.248677, 0.053335, 0.146068, 0.042478, 0.150049, 0.072787, 0.245543, 0.113128, 0.150049, 0.072787, 0.139284, 0.139179, 0.245507, 0.113146, 0.240398, 0.157607, 0.139283, 0.13918, 0.248666, 0.053339, 0.249078, 0.073697, 0.150044, 0.072789, 0.249084, 0.073694, 0.248677, 0.053335, 0.150049, 0.072787, 0.24043, 0.157589, 0.245543, 0.113128, 0.139284, 0.139179, 0.355303, 0.109381, 0.42901, 0.079148, 0.355139, 0.074142, 0.359294, 0.018605, 0.430636, 0.062564, 0.44282, 0.039592, 0.359286, 0.018608, 0.430609, 0.062572, 0.356038, 0.053277, 0.355307, 0.10938, 0.428999, 0.079152, 0.434586, 0.106314, 0.357617, 0.166079, 0.43459, 0.106313, 0.355303, 0.109381, 0.355139, 0.074142, 0.430636, 0.062564, 0.35604, 0.053276, 0.355135, 0.074143, 0.430609, 0.062572, 0.428999, 0.079152, 0.35761, 0.166082, 0.434586, 0.106314, 0.446524, 0.152052, 0.451602, 0.06941, 0.454979, 0.043198, 0.441709, 0.066152, 0.445224, 0.107658, 0.448564, 0.085051, 0.439035, 0.082492, 0.454604, 0.108669, 0.456231, 0.148762, 0.445215, 0.10766, 0.448532, 0.085059, 0.445215, 0.10766, 0.439025, 0.082494, 0.439035, 0.082492, 0.451602, 0.06941, 0.441709, 0.066152, 0.456257, 0.148755, 0.454615, 0.108666, 0.445224, 0.107658, 0.451566, 0.069419, 0.439025, 0.082494, 0.441693, 0.066156, 0.454949, 0.043205, 0.451566, 0.069419, 0.441693, 0.066156, 0.554805, 0.039671, 0.535829, 0.137721, 0.535836, 0.034502, 0.535836, 0.034502, 0.525181, 0.132921, 0.52518, 0.0393, 0.52518, 0.0393, 0.51954, 0.115187, 0.519534, 0.057026, 0.516104, 0.086108, 0.519534, 0.057026, 0.51954, 0.115187, 0.092264, 0.030507, 0.064662, 0.150563, 0.064657, 0.029738, 0.1008, 0.09015, 0.092265, 0.149795, 0.092264, 0.030507, 0.768723, 0.432766, 0.779257, 0.411724, 0.735137, 0.418864, 0.896226, 0.439509, 0.829828, 0.410341, 0.829727, 0.433986, 0.896222, 0.470481, 0.829671, 0.488589, 0.896259, 0.490813, 0.933979, 0.462149, 0.896226, 0.439509, 0.89626, 0.456567, 0.896217, 0.510254, 0.829671, 0.488589, 0.829746, 0.513535, 0.829659, 0.466449, 0.89626, 0.456567, 0.829675, 0.450991, 0.929559, 0.508098, 0.896259, 0.490813, 0.896217, 0.510254, 0.934323, 0.475532, 0.89626, 0.456567, 0.896222, 0.470481, 0.932264, 0.445731, 0.896228, 0.416267, 0.896226, 0.439509, 0.932779, 0.492631, 0.896222, 0.470481, 0.896259, 0.490813, 0.932264, 0.445731, 0.955463, 0.433, 0.924411, 0.422025, 0.934323, 0.475532, 0.955052, 0.49596, 0.96513, 0.48387, 0.932264, 0.445731, 0.968914, 0.469883, 0.968831, 0.45385, 0.933979, 0.462149, 0.96513, 0.48387, 0.968914, 0.469883, 0.764032, 0.448647, 0.829659, 0.466449, 0.829675, 0.450991, 0.764425, 0.486997, 0.829746, 0.513535, 0.829671, 0.488589, 0.89626, 0.456567, 0.829727, 0.433986, 0.829675, 0.450991, 0.76314, 0.466051, 0.829671, 0.488589, 0.829659, 0.466449, 0.779257, 0.411724, 0.829727, 0.433986, 0.829828, 0.410341, 0.768723, 0.432766, 0.829675, 0.450991, 0.829727, 0.433986, 0.764032, 0.448647, 0.735137, 0.418864, 0.706574, 0.445971, 0.689894, 0.46698, 0.764032, 0.448647, 0.706574, 0.445971, 0.764425, 0.486997, 0.689894, 0.46698, 0.717594, 0.495354, 0.764425, 0.486997, 0.717594, 0.495354, 0.77227, 0.513524, 0.768715, 0.432755, 0.735128, 0.418853, 0.779239, 0.411702, 0.829827, 0.41032, 0.896226, 0.439487, 0.829727, 0.433973, 0.82967, 0.488569, 0.896222, 0.470445, 0.896259, 0.490808, 0.896226, 0.439487, 0.933954, 0.462126, 0.89626, 0.45653, 0.82967, 0.488569, 0.896217, 0.510254, 0.829745, 0.513474, 0.829659, 0.466435, 0.89626, 0.45653, 0.896222, 0.470445, 0.896259, 0.490808, 0.929538, 0.508075, 0.896217, 0.510254, 0.934322, 0.475531, 0.89626, 0.45653, 0.933954, 0.462126, 0.896228, 0.41624, 0.932255, 0.445723, 0.896226, 0.439487, 0.896222, 0.470445, 0.932772, 0.492623, 0.896259, 0.490808, 0.955456, 0.43299, 0.932255, 0.445723, 0.924385, 0.42201, 0.934322, 0.475531, 0.955046, 0.495944, 0.932772, 0.492623, 0.932255, 0.445723, 0.968902, 0.469855, 0.933954, 0.462126, 0.933954, 0.462126, 0.965112, 0.483825, 0.934322, 0.475531, 0.764018, 0.448629, 0.829659, 0.466435, 0.763135, 0.466043, 0.764423, 0.486995, 0.829745, 0.513474, 0.772239, 0.513459, 0.89626, 0.45653, 0.829727, 0.433973, 0.896226, 0.439487, 0.82967, 0.488569, 0.763135, 0.466043, 0.829659, 0.466435, 0.829727, 0.433973, 0.779239, 0.411702, 0.829827, 0.41032, 0.768715, 0.432755, 0.829675, 0.45097, 0.764018, 0.448629, 0.735128, 0.418853, 0.764018, 0.448629, 0.706515, 0.445903, 0.764018, 0.448629, 0.689874, 0.466953, 0.706515, 0.445903, 0.689874, 0.466953, 0.764423, 0.486995, 0.717591, 0.495348, 0.764423, 0.486995, 0.772239, 0.513459, 0.717591, 0.495348, 0.932779, 0.492631, 0.929559, 0.508098, 0.955052, 0.49596, 0.932772, 0.492623, 0.955046, 0.495944, 0.929538, 0.508075, 0.882167, 0.658051, 0.327094, 0.634471, 0.882161, 0.634442, 0.882161, 0.634442, 0.343384, 0.611186, 0.882159, 0.611056, 0.882166, 0.703996, 0.298023, 0.680732, 0.882167, 0.680779, 0.882159, 0.611056, 0.35502, 0.587558, 0.882163, 0.587489, 0.882167, 0.680779, 0.310491, 0.658019, 0.882167, 0.658051, 0.882163, 0.587489, 0.35877, 0.564187, 0.882167, 0.564185, 0.343384, 0.611186, 0.096991, 0.619141, 0.35502, 0.587558, 0.298023, 0.680732, 0.097158, 0.656453, 0.310491, 0.658019, 0.35502, 0.587558, 0.096333, 0.607429, 0.35877, 0.564187, 0.310491, 0.658019, 0.097368, 0.6439, 0.327094, 0.634471, 0.327094, 0.634471, 0.09732, 0.631331, 0.343384, 0.611186, 0.293054, 0.703989, 0.096773, 0.669506, 0.298023, 0.680732, 0.917106, 0.680185, 0.902811, 0.658262, 0.914539, 0.65818, 0.911463, 0.615365, 0.902059, 0.611081, 0.905215, 0.600997, 0.902574, 0.56421, 0.911373, 0.587464, 0.902506, 0.587585, 0.902811, 0.658262, 0.914587, 0.634469, 0.914539, 0.65818, 0.902155, 0.634529, 0.911463, 0.615365, 0.914587, 0.634469, 0.902506, 0.587585, 0.882167, 0.564185, 0.902574, 0.56421, 0.914813, 0.165416, 0.837635, 0.198844, 0.837666, 0.144422, 0.902059, 0.611081, 0.882163, 0.587489, 0.902506, 0.587585, 0.884807, 0.255107, 0.837635, 0.198844, 0.897263, 0.212337, 0.902155, 0.634529, 0.882159, 0.611056, 0.902059, 0.611081, 0.902155, 0.634529, 0.882167, 0.658051, 0.882161, 0.634442, 0.897263, 0.212337, 0.946679, 0.228844, 0.916082, 0.231805, 0.884807, 0.255107, 0.897263, 0.212337, 0.916082, 0.231805, 0.933918, 0.658163, 0.951437, 0.634391, 0.951439, 0.65817, 0.933904, 0.623273, 0.951437, 0.634391, 0.933898, 0.634424, 0.93395, 0.680175, 0.951439, 0.65817, 0.951449, 0.68018, 0.951449, 0.68018, 0.971652, 0.658178, 0.97165, 0.680205, 0.951439, 0.65817, 0.971653, 0.634249, 0.971652, 0.658178, 0.951438, 0.62401, 0.971653, 0.634249, 0.951437, 0.634391, 0.971652, 0.658178, 0.984013, 0.634116, 0.984014, 0.658179, 0.971653, 0.623048, 0.984013, 0.634116, 0.971653, 0.634249, 0.97165, 0.680205, 0.984014, 0.658179, 0.984017, 0.680194, 0.984017, 0.680194, 0.984014, 0.658179, 0.998977, 0.655998, 0.984014, 0.658179, 0.984013, 0.634116, 0.998977, 0.655998, 0.984013, 0.634116, 0.984013, 0.621919, 0.998977, 0.655998, 0.984013, 0.621919, 0.989284, 0.621255, 0.998977, 0.655998, 0.917106, 0.680185, 0.933918, 0.658163, 0.93395, 0.680175, 0.914587, 0.634469, 0.933904, 0.623273, 0.933898, 0.634424, 0.914539, 0.65818, 0.933898, 0.634424, 0.933918, 0.658163, 0.911373, 0.587464, 0.905215, 0.600997, 0.902506, 0.587585, 0.902059, 0.611081, 0.902506, 0.587585, 0.905215, 0.600997, 0.327099, 0.63447, 0.882167, 0.658048, 0.88216, 0.634441, 0.343386, 0.611184, 0.88216, 0.634441, 0.882158, 0.611053, 0.298031, 0.680732, 0.882166, 0.703996, 0.882166, 0.680777, 0.355021, 0.587557, 0.882158, 0.611053, 0.882163, 0.587486, 0.310501, 0.658016, 0.882166, 0.680777, 0.882167, 0.658048, 0.35877, 0.564187, 0.882163, 0.587486, 0.882166, 0.564184, 0.09699, 0.61913, 0.343386, 0.611184, 0.355021, 0.587557, 0.097161, 0.656447, 0.298031, 0.680732, 0.310501, 0.658016, 0.096328, 0.607419, 0.355021, 0.587557, 0.35877, 0.564187, 0.097375, 0.64388, 0.310501, 0.658016, 0.327099, 0.63447, 0.097321, 0.631323, 0.327099, 0.63447, 0.343386, 0.611184, 0.096777, 0.669499, 0.293076, 0.703989, 0.298031, 0.680732, 0.917104, 0.680185, 0.914531, 0.65818, 0.902806, 0.658261, 0.911459, 0.615362, 0.905185, 0.600968, 0.902051, 0.611078, 0.911335, 0.587454, 0.902569, 0.56421, 0.902471, 0.587576, 0.902806, 0.658261, 0.914572, 0.634466, 0.902136, 0.634525, 0.902136, 0.634525, 0.911459, 0.615362, 0.902051, 0.611078, 0.882166, 0.564184, 0.902471, 0.587576, 0.902569, 0.56421, 0.914671, 0.342811, 0.837638, 0.311098, 0.897464, 0.297207, 0.882163, 0.587486, 0.902051, 0.611078, 0.902471, 0.587576, 0.837638, 0.311098, 0.884807, 0.255107, 0.897464, 0.297207, 0.882158, 0.611053, 0.902136, 0.634525, 0.902051, 0.611078, 0.902136, 0.634525, 0.882167, 0.658048, 0.902806, 0.658261, 0.897464, 0.297207, 0.946675, 0.281473, 0.914671, 0.342811, 0.884807, 0.255107, 0.916196, 0.278215, 0.897464, 0.297207, 0.933918, 0.658163, 0.951437, 0.634391, 0.933898, 0.634424, 0.951437, 0.634391, 0.933903, 0.623216, 0.933898, 0.634424, 0.93395, 0.680175, 0.951439, 0.65817, 0.933918, 0.658163, 0.951449, 0.68018, 0.971652, 0.658178, 0.951439, 0.65817, 0.951439, 0.65817, 0.971653, 0.634247, 0.951437, 0.634391, 0.971653, 0.634247, 0.951438, 0.624003, 0.951437, 0.634391, 0.971652, 0.658178, 0.984013, 0.634113, 0.971653, 0.634247, 0.984013, 0.634113, 0.971653, 0.623059, 0.971653, 0.634247, 0.97165, 0.680205, 0.984014, 0.658179, 0.971652, 0.658178, 0.984017, 0.680196, 0.998986, 0.656003, 0.984014, 0.658179, 0.984014, 0.658179, 0.998986, 0.656003, 0.984013, 0.634113, 0.984013, 0.634113, 0.998986, 0.656003, 0.984013, 0.621887, 0.984013, 0.621887, 0.998986, 0.656003, 0.989282, 0.621248, 0.917104, 0.680185, 0.933918, 0.658163, 0.914531, 0.65818, 0.914572, 0.634466, 0.933903, 0.623216, 0.911459, 0.615362, 0.914531, 0.65818, 0.933898, 0.634424, 0.914572, 0.634466, 0.911335, 0.587454, 0.902471, 0.587576, 0.905185, 0.600968, 0.902051, 0.611078, 0.905185, 0.600968, 0.902471, 0.587576, 0.984017, 0.680194, 0.998977, 0.655998, 0.984021, 0.699928, 0.984021, 0.699928, 0.97165, 0.680205, 0.984017, 0.680194, 0.951449, 0.68018, 0.971647, 0.699939, 0.951462, 0.699949, 0.951462, 0.699949, 0.93395, 0.680175, 0.951449, 0.68018, 0.93399, 0.699957, 0.917106, 0.680185, 0.93395, 0.680175, 0.916082, 0.231805, 0.946675, 0.281473, 0.916196, 0.278215, 0.916082, 0.231805, 0.916196, 0.278215, 0.884807, 0.255107, 0.09732, 0.631331, 0.030265, 0.627712, 0.096991, 0.619141, 0.0963, 0.681171, 0.030306, 0.667215, 0.029681, 0.675155, 0.096773, 0.669506, 0.030219, 0.65924, 0.097158, 0.656453, 0.097321, 0.631323, 0.030267, 0.627717, 0.030388, 0.634186, 0.096991, 0.619141, 0.029628, 0.619036, 0.096333, 0.607429, 0.096777, 0.669499, 0.030216, 0.659236, 0.030306, 0.667215, 0.097158, 0.656453, 0.030395, 0.647382, 0.097368, 0.6439, 0.09699, 0.61913, 0.029628, 0.619036, 0.030267, 0.627717, 0.097161, 0.656447, 0.03039, 0.647379, 0.030216, 0.659236, 0.097368, 0.6439, 0.030393, 0.634188, 0.09732, 0.631331, 0.096297, 0.681175, 0.030306, 0.667225, 0.096773, 0.669506, 0.097375, 0.64388, 0.030388, 0.634186, 0.03039, 0.647379, 0.029628, 0.619036, 0.02418, 0.624452, 0.024505, 0.619963, 0.030306, 0.667215, 0.025914, 0.674845, 0.029681, 0.675155, 0.030267, 0.627717, 0.023541, 0.628138, 0.030388, 0.634186, 0.030306, 0.667225, 0.025915, 0.674852, 0.023774, 0.668682, 0.030306, 0.667215, 0.02327, 0.665672, 0.023776, 0.668683, 0.030265, 0.627712, 0.023538, 0.628145, 0.02418, 0.624452, 0.029628, 0.619036, 0.024181, 0.62445, 0.030267, 0.627717, 0.030306, 0.667225, 0.023276, 0.665674, 0.030219, 0.65924, 0.025914, 0.674845, 0.023776, 0.668683, 0.021459, 0.674628, 0.023776, 0.668683, 0.019417, 0.674316, 0.021459, 0.674628, 0.02229, 0.620662, 0.024181, 0.62445, 0.024505, 0.619962, 0.023541, 0.628138, 0.02229, 0.620662, 0.019864, 0.621237, 0.034595, 0.709352, 0.050957, 0.771866, 0.034595, 0.767378, 0.050957, 0.704863, 0.069183, 0.767378, 0.050957, 0.771866, 0.072759, 0.710227, 0.084701, 0.748782, 0.072759, 0.765413, 0.031603, 0.710177, 0.019522, 0.749177, 0.019522, 0.726999, 0.56812, 0.205589, 0.316902, 0.215504, 0.316883, 0.20569, 0.568542, 0.214028, 0.534707, 0.223885, 0.316902, 0.215504, 0.56923, 0.221946, 0.54318, 0.23229, 0.534707, 0.223885, 0.542713, 0.178727, 0.569184, 0.189094, 0.534258, 0.187235, 0.568505, 0.197111, 0.5784, 0.205597, 0.56812, 0.205589, 0.534258, 0.187235, 0.568505, 0.197111, 0.316883, 0.195878, 0.316883, 0.195878, 0.56812, 0.205589, 0.316883, 0.20569, 0.57824, 0.19799, 0.746617, 0.194127, 0.745744, 0.200182, 0.570718, 0.180409, 0.579139, 0.190737, 0.569184, 0.189094, 0.568542, 0.214028, 0.579, 0.220412, 0.56923, 0.221946, 0.568505, 0.197111, 0.579139, 0.190737, 0.57824, 0.19799, 0.568542, 0.214028, 0.5784, 0.205597, 0.578189, 0.213192, 0.570771, 0.230401, 0.579, 0.220412, 0.579786, 0.22714, 0.745744, 0.200182, 0.753709, 0.20637, 0.745415, 0.206306, 0.579786, 0.22714, 0.746463, 0.218498, 0.748233, 0.225039, 0.578189, 0.213192, 0.745415, 0.206306, 0.745669, 0.212433, 0.57824, 0.19799, 0.745415, 0.206306, 0.5784, 0.205597, 0.579963, 0.183657, 0.746617, 0.194127, 0.579139, 0.190737, 0.578189, 0.213192, 0.746463, 0.218498, 0.579, 0.220412, 0.753685, 0.196204, 0.796018, 0.202488, 0.753455, 0.201213, 0.748522, 0.18745, 0.753685, 0.196204, 0.746617, 0.194127, 0.746463, 0.218498, 0.753396, 0.211508, 0.753527, 0.216522, 0.746617, 0.194127, 0.753455, 0.201213, 0.745744, 0.200182, 0.748233, 0.225039, 0.753527, 0.216522, 0.754341, 0.221144, 0.745669, 0.212433, 0.753709, 0.20637, 0.753396, 0.211508, 0.804476, 0.198353, 0.796162, 0.198026, 0.800601, 0.190955, 0.754341, 0.221144, 0.795915, 0.215854, 0.79597, 0.220665, 0.753396, 0.211508, 0.79593, 0.206951, 0.795894, 0.211403, 0.753455, 0.201213, 0.79593, 0.206951, 0.753709, 0.20637, 0.754627, 0.191563, 0.796162, 0.198026, 0.753685, 0.196204, 0.753527, 0.216522, 0.795894, 0.211403, 0.795915, 0.215854, 0.542713, 0.178727, 0.53151, 0.172808, 0.540238, 0.169352, 0.316902, 0.215504, 0.534707, 0.223885, 0.532037, 0.23829, 0.534258, 0.187235, 0.316883, 0.195878, 0.53151, 0.172808, 0.54318, 0.23229, 0.532037, 0.23829, 0.534707, 0.223885, 0.095294, 0.515181, 0.10984, 0.533528, 0.095294, 0.533523, 0.139361, 0.496857, 0.124286, 0.533529, 0.124278, 0.496845, 0.168626, 0.515202, 0.153957, 0.533543, 0.153996, 0.503251, 0.109833, 0.503127, 0.124286, 0.533529, 0.10984, 0.533528, 0.153996, 0.503251, 0.139355, 0.533536, 0.139361, 0.496857, 0.095294, 0.533523, 0.109832, 0.563651, 0.095294, 0.551781, 0.139355, 0.533536, 0.124264, 0.569812, 0.124286, 0.533529, 0.168624, 0.533552, 0.153982, 0.563616, 0.153957, 0.533543, 0.124286, 0.533529, 0.109832, 0.563651, 0.10984, 0.533528, 0.139355, 0.533536, 0.153982, 0.563616, 0.139356, 0.569822, 0.153982, 0.563616, 0.139355, 0.533535, 0.139356, 0.569822, 0.109832, 0.56365, 0.095294, 0.533523, 0.095294, 0.551781, 0.124264, 0.569812, 0.139355, 0.533535, 0.124286, 0.533529, 0.153982, 0.563616, 0.168624, 0.533552, 0.153957, 0.533543, 0.109832, 0.56365, 0.124286, 0.533529, 0.10984, 0.533528, 0.10984, 0.533528, 0.095294, 0.51518, 0.095294, 0.533523, 0.139355, 0.533535, 0.124278, 0.496844, 0.124286, 0.533529, 0.153957, 0.533543, 0.168626, 0.515202, 0.153996, 0.50325, 0.124286, 0.533529, 0.109833, 0.503126, 0.10984, 0.533528, 0.139355, 0.533535, 0.153996, 0.50325, 0.139361, 0.496857, 0.061135, 0.49686, 0.052529, 0.572646, 0.052529, 0.49686, 0.035319, 0.572646, 0.043924, 0.49686, 0.043924, 0.572646, 0.043924, 0.572646, 0.052529, 0.49686, 0.052529, 0.572646, 0.026714, 0.572646, 0.035319, 0.49686, 0.035319, 0.572646, 0.039385, 0.582025, 0.04799, 0.576414, 0.04799, 0.582025, 0.035285, 0.496889, 0.02668, 0.572675, 0.02668, 0.496889, 0.04389, 0.496889, 0.052495, 0.572675, 0.04389, 0.572675, 0.035285, 0.496889, 0.04389, 0.572675, 0.035285, 0.572675, 0.052495, 0.572675, 0.061101, 0.496889, 0.061101, 0.572675, 0.04799, 0.57641, 0.039385, 0.582021, 0.039385, 0.57641, 0.963683, 0.853563, 0.963697, 0.881897, 0.951782, 0.881953, 0.963683, 0.853563, 0.951768, 0.853739, 0.951777, 0.825898, 0.963733, 0.910408, 0.963804, 0.939764, 0.951897, 0.940889, 0.963721, 0.797873, 0.96369, 0.825506, 0.951777, 0.825898, 0.963733, 0.910408, 0.95182, 0.910796, 0.951782, 0.881953, 0.963784, 0.769933, 0.963721, 0.797873, 0.951812, 0.797992, 0.95182, 0.910796, 0.894768, 0.918731, 0.895559, 0.888387, 0.951812, 0.797992, 0.909565, 0.79758, 0.915023, 0.766229, 0.951782, 0.881953, 0.895559, 0.888387, 0.899471, 0.855568, 0.894709, 0.918705, 0.897576, 0.950007, 0.951897, 0.940869, 0.951768, 0.853739, 0.899471, 0.855568, 0.904194, 0.826868, 0.951777, 0.825898, 0.904194, 0.826868, 0.909565, 0.79758, 0.31103, 0.927546, 0.31066, 0.96338, 0.216479, 0.954684, 0.310636, 0.892959, 0.220927, 0.885288, 0.219477, 0.918247, 0.54067, 0.969537, 0.484133, 0.956016, 0.484592, 0.943827, 0.311008, 0.927531, 0.219477, 0.918247, 0.216445, 0.954661, 0.777412, 0.927462, 0.62195, 0.947917, 0.622866, 0.904221, 0.777339, 0.78326, 0.777449, 0.818998, 0.625915, 0.81486, 0.778971, 0.959521, 0.621658, 0.979289, 0.62195, 0.947917, 0.777449, 0.818998, 0.777359, 0.848605, 0.624533, 0.846492, 0.777207, 0.891986, 0.622866, 0.904221, 0.624533, 0.846492, 0.777407, 0.761233, 0.777339, 0.78326, 0.621623, 0.782693, 0.622866, 0.904221, 0.62195, 0.947917, 0.542014, 0.942122, 0.62195, 0.947917, 0.621658, 0.979289, 0.54067, 0.969537, 0.622866, 0.904221, 0.528612, 0.881902, 0.54879, 0.849922, 0.620331, 0.765839, 0.621623, 0.782693, 0.54365, 0.79985, 0.963683, 0.853568, 0.951768, 0.853739, 0.951781, 0.881955, 0.951777, 0.825897, 0.951768, 0.853739, 0.963683, 0.853568, 0.95182, 0.910788, 0.951897, 0.940869, 0.963804, 0.939757, 0.963721, 0.797864, 0.951812, 0.797983, 0.951777, 0.825897, 0.951781, 0.881955, 0.95182, 0.910788, 0.963733, 0.91041, 0.963785, 0.769883, 0.951882, 0.769368, 0.951812, 0.797983, 0.895544, 0.888381, 0.894709, 0.918705, 0.95182, 0.910788, 0.914993, 0.766206, 0.909533, 0.79756, 0.951812, 0.797983, 0.899447, 0.855558, 0.895544, 0.888381, 0.951781, 0.881955, 0.904183, 0.826863, 0.899447, 0.855558, 0.951768, 0.853739, 0.909533, 0.79756, 0.904183, 0.826863, 0.951777, 0.825897, 0.312254, 0.765538, 0.310501, 0.800682, 0.221559, 0.797812, 0.31051, 0.800688, 0.221545, 0.797803, 0.221743, 0.824119, 0.484513, 0.943774, 0.484087, 0.955985, 0.540608, 0.969495, 0.220927, 0.885288, 0.310636, 0.892959, 0.310075, 0.828288, 0.622893, 0.904239, 0.621837, 0.947842, 0.77738, 0.927442, 0.777316, 0.783245, 0.621601, 0.782679, 0.625897, 0.814848, 0.621837, 0.947842, 0.621578, 0.979236, 0.778913, 0.959483, 0.777426, 0.818984, 0.625897, 0.814848, 0.624494, 0.846467, 0.624494, 0.846467, 0.622893, 0.904239, 0.777172, 0.891964, 0.777374, 0.761211, 0.620232, 0.765775, 0.621601, 0.782679, 0.622893, 0.904239, 0.528592, 0.881889, 0.541978, 0.942098, 0.621837, 0.947842, 0.541978, 0.942098, 0.540608, 0.969495, 0.548764, 0.849904, 0.528592, 0.881889, 0.622893, 0.904239, 0.620232, 0.765775, 0.523829, 0.785778, 0.543629, 0.799837, 0.963721, 0.797864, 0.96369, 0.825507, 0.977966, 0.825011, 0.96369, 0.825506, 0.977966, 0.825009, 0.977965, 0.853306, 0.963696, 0.881915, 0.963733, 0.91041, 0.977973, 0.910312, 0.963804, 0.939764, 0.963733, 0.910408, 0.977973, 0.910312, 0.963785, 0.769883, 0.963721, 0.797864, 0.977971, 0.797531, 0.963721, 0.797873, 0.977971, 0.797534, 0.977966, 0.825009, 0.963697, 0.881897, 0.977967, 0.881902, 0.977973, 0.910312, 0.963696, 0.881915, 0.977967, 0.881912, 0.977965, 0.853316, 0.963784, 0.769933, 0.977981, 0.770518, 0.977971, 0.797534, 0.96369, 0.825507, 0.963683, 0.853568, 0.977965, 0.853316, 0.963697, 0.881897, 0.963683, 0.853563, 0.977965, 0.853306, 0.963804, 0.939757, 0.977984, 0.93871, 0.977973, 0.910312, 0.914993, 0.766206, 0.777374, 0.761211, 0.777316, 0.783245, 0.777336, 0.848591, 0.777172, 0.891964, 0.895544, 0.888381, 0.777426, 0.818984, 0.777336, 0.848591, 0.899447, 0.855558, 0.77738, 0.927442, 0.778913, 0.959483, 0.897576, 0.950007, 0.777316, 0.783245, 0.777426, 0.818984, 0.904183, 0.826863, 0.777172, 0.891964, 0.77738, 0.927442, 0.894709, 0.918705, 0.915023, 0.766229, 0.909565, 0.79758, 0.777339, 0.78326, 0.895559, 0.888387, 0.777207, 0.891986, 0.777359, 0.848605, 0.899471, 0.855568, 0.777359, 0.848605, 0.777449, 0.818998, 0.897611, 0.950027, 0.778971, 0.959521, 0.777412, 0.927462, 0.904194, 0.826868, 0.777449, 0.818998, 0.777339, 0.78326, 0.894768, 0.918731, 0.777412, 0.927462, 0.777207, 0.891986, 0.312206, 0.765507, 0.2205, 0.763495, 0.221545, 0.797803, 0.528592, 0.881889, 0.525893, 0.823321, 0.403256, 0.834752, 0.310661, 0.892976, 0.31103, 0.927546, 0.219547, 0.918294, 0.310501, 0.800682, 0.310096, 0.828302, 0.221746, 0.824121, 0.525913, 0.823334, 0.403277, 0.834766, 0.403772, 0.808492, 0.484592, 0.943827, 0.40326, 0.932097, 0.403239, 0.899389, 0.403277, 0.834766, 0.525913, 0.823334, 0.528612, 0.881902, 0.523829, 0.785778, 0.405279, 0.778791, 0.403771, 0.808492, 0.525893, 0.823321, 0.543629, 0.799837, 0.403771, 0.808492, 0.523867, 0.785803, 0.54365, 0.79985, 0.403772, 0.808492, 0.484513, 0.943774, 0.403186, 0.932047, 0.404162, 0.961325, 0.484513, 0.943774, 0.528592, 0.881889, 0.403207, 0.899369, 0.484592, 0.943827, 0.484133, 0.956016, 0.40417, 0.961331, 0.403772, 0.808492, 0.403277, 0.834766, 0.310096, 0.828302, 0.403239, 0.899389, 0.40326, 0.932097, 0.31103, 0.927546, 0.403771, 0.808492, 0.405279, 0.778791, 0.312206, 0.765507, 0.403277, 0.834766, 0.403239, 0.899389, 0.310661, 0.892976, 0.403771, 0.808492, 0.31051, 0.800688, 0.310075, 0.828288, 0.403772, 0.808492, 0.310501, 0.800682, 0.312254, 0.765538, 0.403186, 0.932047, 0.311008, 0.927531, 0.310589, 0.963332, 0.403207, 0.899369, 0.310636, 0.892959, 0.311008, 0.927531, 0.40326, 0.932097, 0.40417, 0.961331, 0.31066, 0.96338, 0.403256, 0.834752, 0.310075, 0.828288, 0.310636, 0.892959, 0.220927, 0.885288, 0.122355, 0.877415, 0.119153, 0.903574, 0.216445, 0.954661, 0.219477, 0.918247, 0.119153, 0.903574, 0.221746, 0.824121, 0.123188, 0.830131, 0.121373, 0.808542, 0.221743, 0.824119, 0.221545, 0.797803, 0.121329, 0.808513, 0.220942, 0.885298, 0.219547, 0.918294, 0.119164, 0.903582, 0.221559, 0.797812, 0.121373, 0.808542, 0.11596, 0.778254, 0.123102, 0.830074, 0.122355, 0.877415, 0.220927, 0.885288, 0.221545, 0.797803, 0.2205, 0.763495, 0.115941, 0.778241, 0.216479, 0.954684, 0.111986, 0.933575, 0.119164, 0.903582, 0.121373, 0.808542, 0.123188, 0.830131, 0.05365, 0.834244, 0.11596, 0.778254, 0.121373, 0.808542, 0.051025, 0.820422, 0.121329, 0.808513, 0.05099, 0.820399, 0.053611, 0.834219, 0.111944, 0.933547, 0.119153, 0.903574, 0.050101, 0.883472, 0.111986, 0.933575, 0.041466, 0.899492, 0.050144, 0.8835, 0.122362, 0.877419, 0.119164, 0.903582, 0.050144, 0.8835, 0.122355, 0.877415, 0.053757, 0.866539, 0.050101, 0.883472, 0.115941, 0.778241, 0.043275, 0.803885, 0.05099, 0.820399, 0.043275, 0.803885, 0.018277, 0.828185, 0.026024, 0.835312, 0.043338, 0.803927, 0.051025, 0.820422, 0.026028, 0.835315, 0.041342, 0.899409, 0.050101, 0.883472, 0.025805, 0.865802, 0.041466, 0.899492, 0.017049, 0.874375, 0.025812, 0.865806, 0.123102, 0.830074, 0.053611, 0.834219, 0.053757, 0.866539, 0.053758, 0.866539, 0.025812, 0.865806, 0.026028, 0.835315, 0.220942, 0.885298, 0.221746, 0.824121, 0.310096, 0.828302, 0.220942, 0.885298, 0.122362, 0.877419, 0.123188, 0.830131, 0.123188, 0.830131, 0.122362, 0.877419, 0.053758, 0.866539, 0.026024, 0.835312, 0.025805, 0.865802, 0.053757, 0.866539, 0.951897, 0.940889, 0.897611, 0.950027, 0.894768, 0.918731, 0.789658, 0.338562, 0.701262, 0.338556, 0.694425, 0.313037, 0.789662, 0.287517, 0.796496, 0.313042, 0.694425, 0.313037, 0.77098, 0.357238, 0.719944, 0.357236, 0.701262, 0.338556, 0.770981, 0.268837, 0.789662, 0.287517, 0.70126, 0.287524, 0.963683, 0.853637, 0.951769, 0.853848, 0.951782, 0.882005, 0.951777, 0.82591, 0.951769, 0.853848, 0.963683, 0.853637, 0.963734, 0.910539, 0.95182, 0.910895, 0.951897, 0.940957, 0.963721, 0.797954, 0.951812, 0.798036, 0.951777, 0.82591, 0.951782, 0.882005, 0.95182, 0.910895, 0.963734, 0.910539, 0.963785, 0.77005, 0.951883, 0.769485, 0.951812, 0.798036, 0.95182, 0.910895, 0.951782, 0.882005, 0.895565, 0.888412, 0.951812, 0.798036, 0.951883, 0.769485, 0.915036, 0.766289, 0.951782, 0.882005, 0.951769, 0.853848, 0.89948, 0.855609, 0.951897, 0.94086, 0.897635, 0.950005, 0.894808, 0.9187, 0.951769, 0.853848, 0.951777, 0.82591, 0.904198, 0.82689, 0.951777, 0.82591, 0.951812, 0.798036, 0.909579, 0.797647, 0.311039, 0.927586, 0.219575, 0.918422, 0.216493, 0.954747, 0.219607, 0.918266, 0.220955, 0.885292, 0.310683, 0.892965, 0.484623, 0.943967, 0.484151, 0.956099, 0.540694, 0.969647, 0.216509, 0.954671, 0.219607, 0.918266, 0.311049, 0.927536, 0.622856, 0.904174, 0.621992, 0.948115, 0.777424, 0.927516, 0.777347, 0.7833, 0.621631, 0.782731, 0.625921, 0.814891, 0.621992, 0.948115, 0.621687, 0.979428, 0.778993, 0.95962, 0.777457, 0.819038, 0.625921, 0.814891, 0.624548, 0.846561, 0.624548, 0.846561, 0.622856, 0.904174, 0.777221, 0.892046, 0.77742, 0.761292, 0.620367, 0.766012, 0.621631, 0.782731, 0.622856, 0.904174, 0.52862, 0.881938, 0.542027, 0.942185, 0.621992, 0.948115, 0.542027, 0.942185, 0.540694, 0.969647, 0.5488, 0.849968, 0.52862, 0.881938, 0.622856, 0.904174, 0.620367, 0.766012, 0.523882, 0.785871, 0.543657, 0.799887, 0.963684, 0.85356, 0.963697, 0.881898, 0.951782, 0.881949, 0.963684, 0.85356, 0.951769, 0.853729, 0.951777, 0.825896, 0.963734, 0.910393, 0.963804, 0.939753, 0.951897, 0.94086, 0.963722, 0.797864, 0.963691, 0.825499, 0.951777, 0.825896, 0.963734, 0.910393, 0.95182, 0.910777, 0.951782, 0.881949, 0.963722, 0.797864, 0.951813, 0.797984, 0.951883, 0.769385, 0.95182, 0.910777, 0.894808, 0.9187, 0.89557, 0.88838, 0.951813, 0.797984, 0.909601, 0.79756, 0.915058, 0.766206, 0.951782, 0.881949, 0.89557, 0.88838, 0.89949, 0.855557, 0.951769, 0.853729, 0.89949, 0.855557, 0.904205, 0.826862, 0.951777, 0.825896, 0.904205, 0.826862, 0.909601, 0.79756, 0.312273, 0.765624, 0.22052, 0.76353, 0.221564, 0.797836, 0.221748, 0.82412, 0.22157, 0.797806, 0.310494, 0.800687, 0.540725, 0.969503, 0.484174, 0.955992, 0.484661, 0.943786, 0.310113, 0.828293, 0.310683, 0.892965, 0.220955, 0.885292, 0.777439, 0.927442, 0.622048, 0.947852, 0.622843, 0.904237, 0.777358, 0.783245, 0.777468, 0.818984, 0.62593, 0.814849, 0.779021, 0.959483, 0.621727, 0.979243, 0.622048, 0.947852, 0.777468, 0.818984, 0.777379, 0.84859, 0.624566, 0.846469, 0.777237, 0.891964, 0.622843, 0.904237, 0.624566, 0.846469, 0.777436, 0.761211, 0.777358, 0.783245, 0.62164, 0.78268, 0.622843, 0.904237, 0.622048, 0.947852, 0.542044, 0.942103, 0.622048, 0.947852, 0.621727, 0.979243, 0.540725, 0.969503, 0.622843, 0.904237, 0.52863, 0.881891, 0.548812, 0.849907, 0.62041, 0.76578, 0.62164, 0.78268, 0.543666, 0.799839, 0.963722, 0.797864, 0.977971, 0.797518, 0.977966, 0.824991, 0.977965, 0.853436, 0.977966, 0.825153, 0.963691, 0.825593, 0.963697, 0.881898, 0.977967, 0.881899, 0.977973, 0.910305, 0.963804, 0.939792, 0.977984, 0.938758, 0.977973, 0.910365, 0.977981, 0.770494, 0.977971, 0.797518, 0.963722, 0.797864, 0.977966, 0.825153, 0.977971, 0.797645, 0.963721, 0.797954, 0.977973, 0.910365, 0.977967, 0.881993, 0.963697, 0.882031, 0.977965, 0.853298, 0.977967, 0.881899, 0.963697, 0.881898, 0.977971, 0.797645, 0.977981, 0.770603, 0.963785, 0.77005, 0.963691, 0.825499, 0.977966, 0.824991, 0.977965, 0.853298, 0.963697, 0.882031, 0.977967, 0.881993, 0.977965, 0.853436, 0.963734, 0.910393, 0.977973, 0.910305, 0.977984, 0.938704, 0.915058, 0.766206, 0.909601, 0.79756, 0.777358, 0.783245, 0.89557, 0.88838, 0.777237, 0.891964, 0.777379, 0.84859, 0.89949, 0.855557, 0.777379, 0.84859, 0.777468, 0.818984, 0.897635, 0.950005, 0.779021, 0.959483, 0.777439, 0.927442, 0.904205, 0.826862, 0.777468, 0.818984, 0.777358, 0.783245, 0.894808, 0.9187, 0.777439, 0.927442, 0.777237, 0.891964, 0.915036, 0.766289, 0.77742, 0.761292, 0.777347, 0.7833, 0.777368, 0.848646, 0.777221, 0.892046, 0.895565, 0.888412, 0.777457, 0.819038, 0.777368, 0.848646, 0.89948, 0.855609, 0.777424, 0.927516, 0.778993, 0.95962, 0.897623, 0.95008, 0.777347, 0.7833, 0.777457, 0.819038, 0.904198, 0.82689, 0.777221, 0.892046, 0.777424, 0.927516, 0.894788, 0.918822, 0.22157, 0.797806, 0.220525, 0.763499, 0.312292, 0.765516, 0.52863, 0.881891, 0.403265, 0.899374, 0.403295, 0.834756, 0.310671, 0.893022, 0.220948, 0.885326, 0.219575, 0.918422, 0.310498, 0.800666, 0.221564, 0.797836, 0.221747, 0.824126, 0.403773, 0.808494, 0.403286, 0.834805, 0.525921, 0.823369, 0.403251, 0.899446, 0.403289, 0.93223, 0.484623, 0.943967, 0.403286, 0.834805, 0.403251, 0.899446, 0.52862, 0.881938, 0.403773, 0.808492, 0.405361, 0.778798, 0.523898, 0.785782, 0.525929, 0.823323, 0.403295, 0.834756, 0.403773, 0.808492, 0.523882, 0.785871, 0.405342, 0.778901, 0.403773, 0.808494, 0.404177, 0.961327, 0.403324, 0.932061, 0.484661, 0.943786, 0.484661, 0.943786, 0.403324, 0.932061, 0.403265, 0.899374, 0.484623, 0.943967, 0.403289, 0.93223, 0.404173, 0.961345, 0.403773, 0.808494, 0.310498, 0.800666, 0.310104, 0.82834, 0.403251, 0.899446, 0.310671, 0.893022, 0.311039, 0.927586, 0.403773, 0.808492, 0.310494, 0.800687, 0.312292, 0.765516, 0.310671, 0.893022, 0.403251, 0.899446, 0.403286, 0.834805, 0.310113, 0.828293, 0.310494, 0.800687, 0.403773, 0.808492, 0.312273, 0.765624, 0.310498, 0.800666, 0.403773, 0.808494, 0.310722, 0.96335, 0.311049, 0.927536, 0.403324, 0.932061, 0.311049, 0.927536, 0.310683, 0.892965, 0.403265, 0.899374, 0.403289, 0.93223, 0.311039, 0.927586, 0.310688, 0.963509, 0.310683, 0.892965, 0.310113, 0.828293, 0.403295, 0.834756, 0.119174, 0.903578, 0.122367, 0.877417, 0.220955, 0.885292, 0.216509, 0.954671, 0.112021, 0.933561, 0.119174, 0.903578, 0.12139, 0.808622, 0.123221, 0.830287, 0.221747, 0.824126, 0.221748, 0.82412, 0.123256, 0.830101, 0.121408, 0.808526, 0.220948, 0.885326, 0.122364, 0.87743, 0.119169, 0.903603, 0.115968, 0.778289, 0.12139, 0.808622, 0.221564, 0.797836, 0.123256, 0.830101, 0.221748, 0.82412, 0.220955, 0.885292, 0.22157, 0.797806, 0.121408, 0.808526, 0.115975, 0.778247, 0.119169, 0.903603, 0.112003, 0.933652, 0.216493, 0.954747, 0.12139, 0.808622, 0.051038, 0.820485, 0.053665, 0.834315, 0.115968, 0.778289, 0.043363, 0.804043, 0.051038, 0.820485, 0.053681, 0.834232, 0.051052, 0.820411, 0.121408, 0.808526, 0.112021, 0.933561, 0.041567, 0.899454, 0.050179, 0.883487, 0.05016, 0.883578, 0.041514, 0.89972, 0.112003, 0.933652, 0.122364, 0.87743, 0.053758, 0.866541, 0.05016, 0.883578, 0.050179, 0.883487, 0.053759, 0.866539, 0.122367, 0.877417, 0.051052, 0.820411, 0.043388, 0.803908, 0.115975, 0.778247, 0.026032, 0.835313, 0.018291, 0.828188, 0.043388, 0.803908, 0.043363, 0.804043, 0.018287, 0.828204, 0.02603, 0.835323, 0.041567, 0.899454, 0.017058, 0.874372, 0.025817, 0.865804, 0.025814, 0.865819, 0.017054, 0.874395, 0.041514, 0.89972, 0.123256, 0.830101, 0.122367, 0.877417, 0.053759, 0.866539, 0.02603, 0.835323, 0.025814, 0.865819, 0.053758, 0.866541, 0.310104, 0.82834, 0.221747, 0.824126, 0.220948, 0.885326, 0.123221, 0.830287, 0.122364, 0.87743, 0.220948, 0.885326, 0.053758, 0.866541, 0.122364, 0.87743, 0.123221, 0.830287, 0.053759, 0.866539, 0.025817, 0.865804, 0.026032, 0.835313, 0.951897, 0.940957, 0.95182, 0.910895, 0.894788, 0.918822, 0.789664, 0.287515, 0.796505, 0.313027, 0.694427, 0.313032, 0.789668, 0.338544, 0.701265, 0.338551, 0.694427, 0.313032, 0.770983, 0.268833, 0.789664, 0.287515, 0.701269, 0.287508, 0.770984, 0.357231, 0.719946, 0.357233, 0.701265, 0.338551, 0.646147, 0.360877, 0.628032, 0.360084, 0.628022, 0.387578, 0.646132, 0.387994, 0.628022, 0.387578, 0.628024, 0.414855, 0.646249, 0.306793, 0.628107, 0.302735, 0.628058, 0.332003, 0.646134, 0.41498, 0.628024, 0.414855, 0.628043, 0.442396, 0.646183, 0.333623, 0.628058, 0.332003, 0.628032, 0.360084, 0.646213, 0.467731, 0.646159, 0.441753, 0.628043, 0.442396, 0.628107, 0.302735, 0.571531, 0.281246, 0.566712, 0.316965, 0.628024, 0.414855, 0.568463, 0.417026, 0.572479, 0.450791, 0.628058, 0.332003, 0.566712, 0.316965, 0.564963, 0.351191, 0.628043, 0.442396, 0.572479, 0.450791, 0.578032, 0.486854, 0.628032, 0.360084, 0.564963, 0.351191, 0.565837, 0.384292, 0.628022, 0.387578, 0.565837, 0.384292, 0.568463, 0.417026, 0.355272, 0.421834, 0.353971, 0.462497, 0.572479, 0.450791, 0.566712, 0.316965, 0.357026, 0.304658, 0.356482, 0.344178, 0.353971, 0.462497, 0.353082, 0.486869, 0.578032, 0.486854, 0.564963, 0.351191, 0.356482, 0.344178, 0.355902, 0.388143, 0.357031, 0.304606, 0.35743, 0.269557, 0.571512, 0.281297, 0.565837, 0.384292, 0.355902, 0.388143, 0.355272, 0.421834, 0.079921, 0.431854, 0.091246, 0.421885, 0.051629, 0.395883, 0.121677, 0.284998, 0.044282, 0.302589, 0.045873, 0.315467, 0.123663, 0.413244, 0.051629, 0.395883, 0.091246, 0.421885, 0.356482, 0.344178, 0.357026, 0.304658, 0.233199, 0.308376, 0.353971, 0.462497, 0.355272, 0.421834, 0.235634, 0.420996, 0.357026, 0.304658, 0.35743, 0.269554, 0.231682, 0.272685, 0.355272, 0.421834, 0.355902, 0.388143, 0.234288, 0.390886, 0.355902, 0.388143, 0.356482, 0.344178, 0.233846, 0.347776, 0.353082, 0.486869, 0.353971, 0.462497, 0.229069, 0.456569, 0.233199, 0.308376, 0.124724, 0.315507, 0.125395, 0.346221, 0.231682, 0.272685, 0.121677, 0.284998, 0.124724, 0.315507, 0.233846, 0.347776, 0.125395, 0.346221, 0.148554, 0.388219, 0.2268, 0.474936, 0.229069, 0.456569, 0.143638, 0.439595, 0.628022, 0.387577, 0.628032, 0.360087, 0.646147, 0.360877, 0.646134, 0.414982, 0.628024, 0.414867, 0.628022, 0.387577, 0.628058, 0.332019, 0.628107, 0.302748, 0.646249, 0.306797, 0.646159, 0.441753, 0.628043, 0.442425, 0.628024, 0.414867, 0.628032, 0.360087, 0.628058, 0.332019, 0.646183, 0.333623, 0.646213, 0.467743, 0.628083, 0.470671, 0.628043, 0.442425, 0.566711, 0.316966, 0.571512, 0.281297, 0.628107, 0.302748, 0.572488, 0.450826, 0.568469, 0.417054, 0.628024, 0.414867, 0.564949, 0.351248, 0.566711, 0.316966, 0.628058, 0.332019, 0.578049, 0.486932, 0.572488, 0.450826, 0.628043, 0.442425, 0.565836, 0.38432, 0.564949, 0.351248, 0.628032, 0.360087, 0.568469, 0.417054, 0.565836, 0.38432, 0.628022, 0.387577, 0.572488, 0.450826, 0.353971, 0.462549, 0.355271, 0.421889, 0.356478, 0.344235, 0.357031, 0.304606, 0.566711, 0.316966, 0.578049, 0.486932, 0.353082, 0.486899, 0.353971, 0.462549, 0.355902, 0.388136, 0.356478, 0.344235, 0.564949, 0.351248, 0.355271, 0.421889, 0.355902, 0.388136, 0.565836, 0.38432, 0.079922, 0.431939, 0.046952, 0.407074, 0.051629, 0.395888, 0.045873, 0.315508, 0.044282, 0.302591, 0.121675, 0.285042, 0.091246, 0.421932, 0.051629, 0.395888, 0.123663, 0.413292, 0.356478, 0.344235, 0.233845, 0.347814, 0.233198, 0.308406, 0.353971, 0.462549, 0.229069, 0.456634, 0.235633, 0.421041, 0.357031, 0.304606, 0.233198, 0.308406, 0.23168, 0.272722, 0.355271, 0.421889, 0.235633, 0.421041, 0.234288, 0.390902, 0.355902, 0.388136, 0.234288, 0.390902, 0.233845, 0.347814, 0.353082, 0.486899, 0.226801, 0.475005, 0.229069, 0.456634, 0.125395, 0.346186, 0.124722, 0.315564, 0.233198, 0.308406, 0.124722, 0.315564, 0.121675, 0.285042, 0.23168, 0.272722, 0.148553, 0.388269, 0.125395, 0.346186, 0.233845, 0.347814, 0.226801, 0.475005, 0.121207, 0.449981, 0.143638, 0.439711, 0.646159, 0.441753, 0.646134, 0.414982, 0.661616, 0.414862, 0.646132, 0.387994, 0.646134, 0.41498, 0.661616, 0.414864, 0.646183, 0.333623, 0.661708, 0.335248, 0.661641, 0.361737, 0.646183, 0.333623, 0.661708, 0.335247, 0.661823, 0.309902, 0.646213, 0.467743, 0.646159, 0.441753, 0.661659, 0.440871, 0.646134, 0.41498, 0.646159, 0.441753, 0.661659, 0.44087, 0.646147, 0.360877, 0.661641, 0.361738, 0.661708, 0.335247, 0.646132, 0.387993, 0.646147, 0.360877, 0.661641, 0.361737, 0.646159, 0.441753, 0.646213, 0.467731, 0.661753, 0.465427, 0.646132, 0.387993, 0.661611, 0.388392, 0.661616, 0.414862, 0.646132, 0.387994, 0.661611, 0.388396, 0.661641, 0.361738, 0.646249, 0.306797, 0.661823, 0.30991, 0.661708, 0.335248, 0.571531, 0.281246, 0.35743, 0.269554, 0.357026, 0.304658, 0.701264, 0.338551, 0.694426, 0.313033, 0.796501, 0.313028, 0.770982, 0.357231, 0.719945, 0.357233, 0.701264, 0.338551, 0.796501, 0.313028, 0.694426, 0.313033, 0.701264, 0.28751, 0.770982, 0.268834, 0.789663, 0.287515, 0.701264, 0.28751, 0.121207, 0.449981, 0.079922, 0.431939, 0.091246, 0.421932, 0.121206, 0.449893, 0.143638, 0.439595, 0.091246, 0.421885, 0.628022, 0.387575, 0.628033, 0.360089, 0.646147, 0.360879, 0.628024, 0.414877, 0.628022, 0.387575, 0.646132, 0.387999, 0.628058, 0.332016, 0.628107, 0.30274, 0.646249, 0.306795, 0.628043, 0.442413, 0.628024, 0.414877, 0.646134, 0.414984, 0.628033, 0.360089, 0.628058, 0.332016, 0.646183, 0.333623, 0.646213, 0.467736, 0.628083, 0.470654, 0.628043, 0.442413, 0.566713, 0.316966, 0.571581, 0.281264, 0.628107, 0.30274, 0.572528, 0.450807, 0.568508, 0.417041, 0.628024, 0.414877, 0.565047, 0.351221, 0.566713, 0.316966, 0.628058, 0.332016, 0.578116, 0.486881, 0.572528, 0.450807, 0.628043, 0.442413, 0.565882, 0.384308, 0.565047, 0.351221, 0.628033, 0.360089, 0.568508, 0.417041, 0.565882, 0.384308, 0.628022, 0.387575, 0.572528, 0.450807, 0.35402, 0.462519, 0.355323, 0.421858, 0.566713, 0.316966, 0.565047, 0.351221, 0.356532, 0.344203, 0.578116, 0.486881, 0.35311, 0.486882, 0.35402, 0.462519, 0.565047, 0.351221, 0.565882, 0.384308, 0.355896, 0.38814, 0.57152, 0.281323, 0.35743, 0.269558, 0.357023, 0.304578, 0.565882, 0.384308, 0.568508, 0.417041, 0.355323, 0.421858, 0.07999, 0.431899, 0.046993, 0.407049, 0.051633, 0.395885, 0.045904, 0.315489, 0.044284, 0.30259, 0.121709, 0.28502, 0.091284, 0.42191, 0.051633, 0.395885, 0.123703, 0.413268, 0.356532, 0.344203, 0.233878, 0.347794, 0.233223, 0.30839, 0.35402, 0.462519, 0.229126, 0.4566, 0.235673, 0.421017, 0.356982, 0.304636, 0.233223, 0.30839, 0.231711, 0.272702, 0.355323, 0.421858, 0.235673, 0.421017, 0.234302, 0.390894, 0.355896, 0.38814, 0.234302, 0.390894, 0.233878, 0.347794, 0.35311, 0.486882, 0.226861, 0.474969, 0.229126, 0.4566, 0.125367, 0.346203, 0.124767, 0.315535, 0.233223, 0.30839, 0.124767, 0.315535, 0.121709, 0.28502, 0.231711, 0.272702, 0.148594, 0.388244, 0.125367, 0.346203, 0.233878, 0.347794, 0.226861, 0.474969, 0.121279, 0.449939, 0.143735, 0.439654, 0.646147, 0.36088, 0.628032, 0.360095, 0.628022, 0.387573, 0.646134, 0.414988, 0.646132, 0.388001, 0.628022, 0.387573, 0.646249, 0.3068, 0.628107, 0.302757, 0.628058, 0.332039, 0.646159, 0.441754, 0.646134, 0.414988, 0.628024, 0.414902, 0.646183, 0.333624, 0.628058, 0.332039, 0.628032, 0.360095, 0.646213, 0.46775, 0.646159, 0.441754, 0.628043, 0.442452, 0.628107, 0.302757, 0.57152, 0.281323, 0.566711, 0.316966, 0.628024, 0.414902, 0.568478, 0.417076, 0.572499, 0.45085, 0.628058, 0.332039, 0.566711, 0.316966, 0.564965, 0.351292, 0.628043, 0.442452, 0.572499, 0.45085, 0.578067, 0.486972, 0.628032, 0.360095, 0.564965, 0.351292, 0.565845, 0.384343, 0.628022, 0.387573, 0.565845, 0.384343, 0.568478, 0.417076, 0.572499, 0.45085, 0.568478, 0.417076, 0.355281, 0.421919, 0.566711, 0.316966, 0.357023, 0.304578, 0.356488, 0.344265, 0.578067, 0.486972, 0.572499, 0.45085, 0.353982, 0.462576, 0.564965, 0.351292, 0.356488, 0.344265, 0.355901, 0.388133, 0.565845, 0.384343, 0.355901, 0.388133, 0.355281, 0.421919, 0.079936, 0.431987, 0.091254, 0.421958, 0.05163, 0.395891, 0.121681, 0.285065, 0.044282, 0.302592, 0.045879, 0.315531, 0.123671, 0.413319, 0.05163, 0.395891, 0.091254, 0.421958, 0.356488, 0.344265, 0.357023, 0.304578, 0.233202, 0.308422, 0.353982, 0.462576, 0.355281, 0.421919, 0.235641, 0.421065, 0.357023, 0.304578, 0.35743, 0.269558, 0.231685, 0.272741, 0.355281, 0.421919, 0.355901, 0.388133, 0.234291, 0.390911, 0.355901, 0.388133, 0.356488, 0.344265, 0.233851, 0.347835, 0.353088, 0.486915, 0.353982, 0.462576, 0.229081, 0.456669, 0.233202, 0.308422, 0.12473, 0.315594, 0.12539, 0.346167, 0.231685, 0.272741, 0.121681, 0.285065, 0.12473, 0.315594, 0.233851, 0.347835, 0.12539, 0.346167, 0.148561, 0.388296, 0.226814, 0.475043, 0.229081, 0.456669, 0.143659, 0.439775, 0.646159, 0.441754, 0.661659, 0.44088, 0.661616, 0.414871, 0.646132, 0.387999, 0.661611, 0.388404, 0.661616, 0.41487, 0.661641, 0.361745, 0.661708, 0.335254, 0.646183, 0.333624, 0.661823, 0.309906, 0.661708, 0.33525, 0.646183, 0.333623, 0.646213, 0.46775, 0.661753, 0.465432, 0.661659, 0.44088, 0.646134, 0.414984, 0.661616, 0.41487, 0.661659, 0.440876, 0.661708, 0.33525, 0.661641, 0.361744, 0.646147, 0.360879, 0.646132, 0.388001, 0.661611, 0.388405, 0.661641, 0.361745, 0.646159, 0.441753, 0.661659, 0.440876, 0.661753, 0.465429, 0.661616, 0.414871, 0.661611, 0.388405, 0.646132, 0.388001, 0.661641, 0.361744, 0.661611, 0.388404, 0.646132, 0.387999, 0.661708, 0.335254, 0.661823, 0.309917, 0.646249, 0.3068, 0.571581, 0.281264, 0.566713, 0.316966, 0.356982, 0.304636, 0.796504, 0.31304, 0.694427, 0.313036, 0.701268, 0.287521, 0.770983, 0.268837, 0.789664, 0.287517, 0.701268, 0.287521, 0.701265, 0.338555, 0.694427, 0.313036, 0.796504, 0.31304, 0.770984, 0.357236, 0.719946, 0.357235, 0.701265, 0.338555, 0.121222, 0.45003, 0.143659, 0.439775, 0.091254, 0.421958, 0.121279, 0.449939, 0.07999, 0.431899, 0.091284, 0.42191, 0.838183, 0.026335, 0.838172, 0.072529, 0.662094, 0.072539, 0.838183, 0.026335, 0.88956, 0.035723, 0.889511, 0.072535, 0.838172, 0.072529, 0.838185, 0.119078, 0.662095, 0.119024, 0.838172, 0.072529, 0.889511, 0.072535, 0.889563, 0.109459, 0.838183, 0.026327, 0.838172, 0.072528, 0.662094, 0.072538, 0.838183, 0.026327, 0.88956, 0.035707, 0.889511, 0.072533, 0.838172, 0.072528, 0.838185, 0.119068, 0.662095, 0.119016, 0.889511, 0.072533, 0.889563, 0.109431, 0.838185, 0.119068, 0.838183, 0.026331, 0.88956, 0.035713, 0.889511, 0.072534, 0.838183, 0.026331, 0.838172, 0.072529, 0.662094, 0.072539, 0.889511, 0.072534, 0.889563, 0.109443, 0.838185, 0.119073, 0.838172, 0.072529, 0.838185, 0.119073, 0.662095, 0.119024, 0.88956, 0.035718, 0.889511, 0.072535, 0.838172, 0.072529, 0.838183, 0.026333, 0.838172, 0.072529, 0.662094, 0.072539, 0.838172, 0.072529, 0.838185, 0.119076, 0.662095, 0.119026, 0.889511, 0.072535, 0.889564, 0.109451, 0.838185, 0.119076, 0.662094, 0.072539, 0.838172, 0.072528, 0.838185, 0.119066, 0.838185, 0.119066, 0.838172, 0.072528, 0.889511, 0.072532, 0.662097, 0.026473, 0.838183, 0.026326, 0.838172, 0.072528, 0.838172, 0.072528, 0.838183, 0.026326, 0.88956, 0.035705, 0.662094, 0.07254, 0.838172, 0.072529, 0.838185, 0.119074, 0.838185, 0.119074, 0.838172, 0.072529, 0.889511, 0.072534, 0.662097, 0.026474, 0.838183, 0.026332, 0.838172, 0.072529, 0.838183, 0.026332, 0.88956, 0.035719, 0.889511, 0.072534, 0.838185, 0.119074, 0.838172, 0.072529, 0.889511, 0.072534, 0.662094, 0.07254, 0.838172, 0.072529, 0.838185, 0.119074, 0.838183, 0.026332, 0.88956, 0.035719, 0.889511, 0.072534, 0.662097, 0.026474, 0.838183, 0.026332, 0.838172, 0.072529, 0.838172, 0.072529, 0.889511, 0.072534, 0.889563, 0.109455, 0.662094, 0.07254, 0.838172, 0.072529, 0.838185, 0.119075, 0.662097, 0.026474, 0.838183, 0.026332, 0.838172, 0.072529, 0.838183, 0.026332, 0.88956, 0.03572, 0.889511, 0.072534, 0.838183, 0.026332, 0.838172, 0.072529, 0.662094, 0.072539, 0.838183, 0.026332, 0.88956, 0.035716, 0.889511, 0.072534, 0.662094, 0.072539, 0.838172, 0.072529, 0.838185, 0.119074, 0.838172, 0.072529, 0.889511, 0.072534, 0.889563, 0.109447, 0.838183, 0.026331, 0.838172, 0.072529, 0.662094, 0.072539, 0.838183, 0.026331, 0.88956, 0.035715, 0.889511, 0.072534, 0.662094, 0.072539, 0.838172, 0.072529, 0.838185, 0.119073, 0.889511, 0.072534, 0.889563, 0.109446, 0.838185, 0.119073, 0.838183, 0.026338, 0.88956, 0.035727, 0.889511, 0.072536, 0.838183, 0.026338, 0.838172, 0.072529, 0.662094, 0.07254, 0.889511, 0.072536, 0.889564, 0.109467, 0.838185, 0.119081, 0.838172, 0.072529, 0.838185, 0.119081, 0.662095, 0.119031, 0.88956, 0.035716, 0.889511, 0.072534, 0.838172, 0.072529, 0.662097, 0.026473, 0.838183, 0.026332, 0.838172, 0.072529, 0.662094, 0.072539, 0.838172, 0.072529, 0.838185, 0.119074, 0.889511, 0.072534, 0.889564, 0.109447, 0.838185, 0.119074, 0.662095, 0.119021, 0.662094, 0.07254, 0.838172, 0.072529, 0.838185, 0.119071, 0.838172, 0.072529, 0.889511, 0.072533, 0.662097, 0.026473, 0.838183, 0.026329, 0.838172, 0.072529, 0.838172, 0.072529, 0.838183, 0.026329, 0.88956, 0.035712, 0.662095, 0.119023, 0.662094, 0.07254, 0.838172, 0.072529, 0.838185, 0.119072, 0.838172, 0.072529, 0.889511, 0.072533, 0.662097, 0.026473, 0.838183, 0.02633, 0.838172, 0.072529, 0.838183, 0.02633, 0.88956, 0.035715, 0.889511, 0.072533, 0.838185, 0.119076, 0.838172, 0.072529, 0.889511, 0.072534, 0.662095, 0.119026, 0.662094, 0.07254, 0.838172, 0.072529, 0.838183, 0.026333, 0.88956, 0.035722, 0.889511, 0.072534, 0.662097, 0.026474, 0.838183, 0.026333, 0.838172, 0.072529, 0.838172, 0.072529, 0.889511, 0.072534, 0.889563, 0.109453, 0.662094, 0.07254, 0.838172, 0.072529, 0.838185, 0.119074, 0.662097, 0.026473, 0.838183, 0.026332, 0.838172, 0.072529, 0.838183, 0.026332, 0.88956, 0.035719, 0.889511, 0.072534, 0.446542, 0.152045, 0.456255, 0.148752, 0.445222, 0.107657, 0.429009, 0.079148, 0.439034, 0.082491, 0.441707, 0.066151, 0.441703, 0.06616, 0.439031, 0.082496, 0.429005, 0.079154, 0.44522, 0.107662, 0.456249, 0.148769, 0.446538, 0.152058, 0.43459, 0.106312, 0.445222, 0.107657, 0.439034, 0.082491, 0.441707, 0.066151, 0.454977, 0.043195, 0.442818, 0.039591, 0.442811, 0.039605, 0.454967, 0.043212, 0.441703, 0.06616, 0.439031, 0.082496, 0.44522, 0.107662, 0.434588, 0.106315, 0.245539, 0.113125, 0.240426, 0.157586, 0.357615, 0.166078, 0.248676, 0.053333, 0.249084, 0.073693, 0.355139, 0.074142, 0.355138, 0.074144, 0.249082, 0.073699, 0.248672, 0.053342, 0.357614, 0.166084, 0.24042, 0.157616, 0.24553, 0.113156, 0.249084, 0.073693, 0.245539, 0.113125, 0.355304, 0.109382, 0.359293, 0.018605, 0.244963, 0.024333, 0.248676, 0.053333, 0.248672, 0.053342, 0.244962, 0.024338, 0.359291, 0.01861, 0.355304, 0.109379, 0.24553, 0.113156, 0.249082, 0.073699, 0.150048, 0.072787, 0.139284, 0.139179, 0.245539, 0.113125, 0.146068, 0.042477, 0.150048, 0.072787, 0.248676, 0.053333, 0.248672, 0.053342, 0.150047, 0.072791, 0.146066, 0.042482, 0.24553, 0.113156, 0.139284, 0.13918, 0.150047, 0.072791, 0.429005, 0.079154, 0.434588, 0.106315, 0.355304, 0.109379, 0.359291, 0.01861, 0.442811, 0.039605, 0.430625, 0.062579, 0.430633, 0.062562, 0.442818, 0.039591, 0.359293, 0.018605, 0.355304, 0.109382, 0.43459, 0.106312, 0.429009, 0.079148, 0.434588, 0.106315, 0.446538, 0.152058, 0.357614, 0.166084, 0.430625, 0.062579, 0.429005, 0.079154, 0.355138, 0.074144, 0.355139, 0.074142, 0.429009, 0.079148, 0.430633, 0.062562, 0.357615, 0.166078, 0.446542, 0.152045, 0.43459, 0.106312, 0.454967, 0.043212, 0.464648, 0.046191, 0.451588, 0.069428, 0.44522, 0.107662, 0.439031, 0.082496, 0.448552, 0.085067, 0.456255, 0.148752, 0.464557, 0.145741, 0.454614, 0.108665, 0.445222, 0.107657, 0.454614, 0.108665, 0.44856, 0.085048, 0.439031, 0.082496, 0.441703, 0.06616, 0.451588, 0.069428, 0.456249, 0.148769, 0.44522, 0.107662, 0.454611, 0.108672, 0.439034, 0.082491, 0.44856, 0.085048, 0.451599, 0.069406, 0.454977, 0.043195, 0.441707, 0.066151, 0.451599, 0.069406, 0.535819, 0.034494, 0.554782, 0.039661, 0.554781, 0.132566, 0.525167, 0.039295, 0.535819, 0.034494, 0.53582, 0.137717, 0.519528, 0.057024, 0.525167, 0.039295, 0.525167, 0.132915, 0.092268, 0.149795, 0.064664, 0.150564, 0.064658, 0.029739, 0.446547, 0.152062, 0.43459, 0.106316, 0.445224, 0.107664, 0.42901, 0.079156, 0.430634, 0.062584, 0.441708, 0.066162, 0.42901, 0.079148, 0.439036, 0.082491, 0.44171, 0.066151, 0.446547, 0.152045, 0.45626, 0.148752, 0.445224, 0.107657, 0.43459, 0.106316, 0.42901, 0.079156, 0.439035, 0.082498, 0.442819, 0.039609, 0.454977, 0.043217, 0.441708, 0.066162, 0.442822, 0.039591, 0.430638, 0.062563, 0.44171, 0.066151, 0.434591, 0.106312, 0.445224, 0.107657, 0.439036, 0.082491, 0.357617, 0.166085, 0.240432, 0.157622, 0.245543, 0.113161, 0.355139, 0.074145, 0.249084, 0.0737, 0.248676, 0.053343, 0.355139, 0.074142, 0.35604, 0.053276, 0.248677, 0.053333, 0.357617, 0.166078, 0.355303, 0.109382, 0.245545, 0.113126, 0.355303, 0.109378, 0.245543, 0.113161, 0.249084, 0.0737, 0.359293, 0.018611, 0.356039, 0.053278, 0.248676, 0.053343, 0.359294, 0.018605, 0.244964, 0.024333, 0.248677, 0.053333, 0.355303, 0.109382, 0.355139, 0.074142, 0.249085, 0.073693, 0.245543, 0.113161, 0.139284, 0.13918, 0.150049, 0.072791, 0.248676, 0.053343, 0.150049, 0.072791, 0.146068, 0.042484, 0.248677, 0.053333, 0.244964, 0.024333, 0.146068, 0.042477, 0.245545, 0.113126, 0.249085, 0.073693, 0.150049, 0.072787, 0.355303, 0.109382, 0.434591, 0.106312, 0.42901, 0.079148, 0.359294, 0.018605, 0.35604, 0.053276, 0.430638, 0.062563, 0.359293, 0.018611, 0.442819, 0.039609, 0.430634, 0.062584, 0.355303, 0.109378, 0.355139, 0.074145, 0.42901, 0.079156, 0.357617, 0.166078, 0.446547, 0.152045, 0.434591, 0.106312, 0.355139, 0.074142, 0.42901, 0.079148, 0.430638, 0.062563, 0.355139, 0.074145, 0.356039, 0.053278, 0.430634, 0.062584, 0.357617, 0.166085, 0.355303, 0.109378, 0.43459, 0.106316, 0.451605, 0.069407, 0.464692, 0.046138, 0.454981, 0.043195, 0.445224, 0.107657, 0.454615, 0.108665, 0.448566, 0.085048, 0.454615, 0.108673, 0.464561, 0.145761, 0.45626, 0.148775, 0.448564, 0.085073, 0.454615, 0.108673, 0.445224, 0.107664, 0.439036, 0.082491, 0.448566, 0.085048, 0.451605, 0.069407, 0.45626, 0.148752, 0.464561, 0.145741, 0.454615, 0.108665, 0.451601, 0.069434, 0.448564, 0.085073, 0.439035, 0.082498, 0.454977, 0.043217, 0.46468, 0.046207, 0.451601, 0.069434, 0.554803, 0.03962, 0.554805, 0.132516, 0.535827, 0.1377, 0.535833, 0.034463, 0.535827, 0.1377, 0.52518, 0.132891, 0.525177, 0.039274, 0.52518, 0.132891, 0.519538, 0.115161, 0.092255, 0.03051, 0.092252, 0.149797, 0.064646, 0.150567, 0.446547, 0.15204, 0.456261, 0.148746, 0.445225, 0.107656, 0.429011, 0.079145, 0.439036, 0.082489, 0.44171, 0.066148, 0.441693, 0.066174, 0.439025, 0.082505, 0.428999, 0.079164, 0.445215, 0.10767, 0.456231, 0.148796, 0.446524, 0.152078, 0.434591, 0.106312, 0.445225, 0.107656, 0.439036, 0.082489, 0.44171, 0.066148, 0.454982, 0.04319, 0.442823, 0.039586, 0.442796, 0.039626, 0.454949, 0.043237, 0.441693, 0.066174, 0.439025, 0.082505, 0.445215, 0.10767, 0.434586, 0.106319, 0.245546, 0.113118, 0.240433, 0.15758, 0.357617, 0.166077, 0.248677, 0.053332, 0.249085, 0.073692, 0.355139, 0.074141, 0.355135, 0.074147, 0.249078, 0.073705, 0.248666, 0.05335, 0.35761, 0.16609, 0.240398, 0.157647, 0.245507, 0.113188, 0.249085, 0.073692, 0.245546, 0.113118, 0.355303, 0.109382, 0.359294, 0.018603, 0.244964, 0.024333, 0.248677, 0.053332, 0.248666, 0.05335, 0.24496, 0.024341, 0.359286, 0.018616, 0.355307, 0.109375, 0.245507, 0.113188, 0.249078, 0.073705, 0.150049, 0.072786, 0.139284, 0.139179, 0.245546, 0.113118, 0.146069, 0.042476, 0.150049, 0.072786, 0.248677, 0.053332, 0.248666, 0.05335, 0.150044, 0.072794, 0.146062, 0.042488, 0.245507, 0.113188, 0.139283, 0.13918, 0.150044, 0.072794, 0.428999, 0.079164, 0.434586, 0.106319, 0.355307, 0.109375, 0.359286, 0.018616, 0.442796, 0.039626, 0.430609, 0.062603, 0.430639, 0.062557, 0.442823, 0.039586, 0.359294, 0.018603, 0.355303, 0.109382, 0.434591, 0.106312, 0.429011, 0.079145, 0.434586, 0.106319, 0.446524, 0.152078, 0.35761, 0.16609, 0.430609, 0.062603, 0.428999, 0.079164, 0.355135, 0.074147, 0.355139, 0.074141, 0.429011, 0.079145, 0.430639, 0.062557, 0.357617, 0.166077, 0.446547, 0.15204, 0.434591, 0.106312, 0.454949, 0.043237, 0.464589, 0.046274, 0.451566, 0.06946, 0.445215, 0.10767, 0.439025, 0.082505, 0.448532, 0.085097, 0.456261, 0.148746, 0.464562, 0.145736, 0.454616, 0.108663, 0.445225, 0.107656, 0.454616, 0.108663, 0.448567, 0.085041, 0.439025, 0.082505, 0.441693, 0.066174, 0.451566, 0.06946, 0.456231, 0.148796, 0.445215, 0.10767, 0.454604, 0.108681, 0.439036, 0.082489, 0.448567, 0.085041, 0.451606, 0.0694, 0.454982, 0.04319, 0.44171, 0.066148, 0.451606, 0.0694, 0.535807, 0.034463, 0.554766, 0.03962, 0.554762, 0.132516, 0.525159, 0.039274, 0.535807, 0.034463, 0.535813, 0.1377, 0.519525, 0.057014, 0.525159, 0.039274, 0.525158, 0.132891, 0.09226, 0.149791, 0.064655, 0.150558, 0.064655, 0.029737, 0.446524, 0.152052, 0.434586, 0.106314, 0.445215, 0.10766, 0.428999, 0.079152, 0.430609, 0.062572, 0.441693, 0.066156, 0.42901, 0.079148, 0.439035, 0.082492, 0.441709, 0.066152, 0.446545, 0.152046, 0.456257, 0.148755, 0.445224, 0.107658, 0.434586, 0.106314, 0.428999, 0.079152, 0.439025, 0.082494, 0.442796, 0.039599, 0.454949, 0.043205, 0.441693, 0.066156, 0.44282, 0.039592, 0.430636, 0.062564, 0.441709, 0.066152, 0.43459, 0.106313, 0.445224, 0.107658, 0.439035, 0.082492, 0.35761, 0.166082, 0.240398, 0.157607, 0.245507, 0.113146, 0.355135, 0.074143, 0.249078, 0.073697, 0.248666, 0.053339, 0.355139, 0.074142, 0.35604, 0.053276, 0.248677, 0.053335, 0.357617, 0.166079, 0.355303, 0.109381, 0.245543, 0.113128, 0.355307, 0.10938, 0.245507, 0.113146, 0.249078, 0.073697, 0.359286, 0.018608, 0.356038, 0.053277, 0.248666, 0.053339, 0.359294, 0.018605, 0.244964, 0.024334, 0.248677, 0.053335, 0.355303, 0.109381, 0.355139, 0.074142, 0.249084, 0.073694, 0.245507, 0.113146, 0.139283, 0.13918, 0.150044, 0.072789, 0.248666, 0.053339, 0.150044, 0.072789, 0.146062, 0.042481, 0.248677, 0.053335, 0.244964, 0.024334, 0.146068, 0.042478, 0.245543, 0.113128, 0.249084, 0.073694, 0.150049, 0.072787, 0.355303, 0.109381, 0.43459, 0.106313, 0.42901, 0.079148, 0.359294, 0.018605, 0.35604, 0.053276, 0.430636, 0.062564, 0.359286, 0.018608, 0.442796, 0.039599, 0.430609, 0.062572, 0.355307, 0.10938, 0.355135, 0.074143, 0.428999, 0.079152, 0.357617, 0.166079, 0.446545, 0.152046, 0.43459, 0.106313, 0.355139, 0.074142, 0.42901, 0.079148, 0.430636, 0.062564, 0.355135, 0.074143, 0.356038, 0.053277, 0.430609, 0.062572, 0.35761, 0.166082, 0.355307, 0.10938, 0.434586, 0.106314, 0.451602, 0.06941, 0.464686, 0.046145, 0.454979, 0.043198, 0.445224, 0.107658, 0.454615, 0.108666, 0.448564, 0.085051, 0.454604, 0.108669, 0.464535, 0.14575, 0.456231, 0.148762, 0.448532, 0.085059, 0.454604, 0.108669, 0.445215, 0.10766, 0.439035, 0.082492, 0.448564, 0.085051, 0.451602, 0.06941, 0.456257, 0.148755, 0.46456, 0.145744, 0.454615, 0.108666, 0.451566, 0.069419, 0.448532, 0.085059, 0.439025, 0.082494, 0.454949, 0.043205, 0.464589, 0.046167, 0.451566, 0.069419, 0.554805, 0.039671, 0.55481, 0.132579, 0.535829, 0.137721, 0.535836, 0.034502, 0.535829, 0.137721, 0.525181, 0.132921, 0.52518, 0.0393, 0.525181, 0.132921, 0.51954, 0.115187, 0.092264, 0.030507, 0.092265, 0.149795, 0.064662, 0.150563, 0.896226, 0.439509, 0.896228, 0.416267, 0.829828, 0.410341, 0.896222, 0.470481, 0.829659, 0.466449, 0.829671, 0.488589, 0.933979, 0.462149, 0.932264, 0.445731, 0.896226, 0.439509, 0.896217, 0.510254, 0.896259, 0.490813, 0.829671, 0.488589, 0.829659, 0.466449, 0.896222, 0.470481, 0.89626, 0.456567, 0.929559, 0.508098, 0.932779, 0.492631, 0.896259, 0.490813, 0.934323, 0.475532, 0.933979, 0.462149, 0.89626, 0.456567, 0.932264, 0.445731, 0.924411, 0.422025, 0.896228, 0.416267, 0.932779, 0.492631, 0.934323, 0.475532, 0.896222, 0.470481, 0.932264, 0.445731, 0.968831, 0.45385, 0.955463, 0.433, 0.934323, 0.475532, 0.932779, 0.492631, 0.955052, 0.49596, 0.932264, 0.445731, 0.933979, 0.462149, 0.968914, 0.469883, 0.933979, 0.462149, 0.934323, 0.475532, 0.96513, 0.48387, 0.764032, 0.448647, 0.76314, 0.466051, 0.829659, 0.466449, 0.764425, 0.486997, 0.77227, 0.513524, 0.829746, 0.513535, 0.89626, 0.456567, 0.896226, 0.439509, 0.829727, 0.433986, 0.76314, 0.466051, 0.764425, 0.486997, 0.829671, 0.488589, 0.779257, 0.411724, 0.768723, 0.432766, 0.829727, 0.433986, 0.768723, 0.432766, 0.764032, 0.448647, 0.829675, 0.450991, 0.764032, 0.448647, 0.768723, 0.432766, 0.735137, 0.418864, 0.689894, 0.46698, 0.76314, 0.466051, 0.764032, 0.448647, 0.764425, 0.486997, 0.76314, 0.466051, 0.689894, 0.46698, 0.829827, 0.41032, 0.896228, 0.41624, 0.896226, 0.439487, 0.82967, 0.488569, 0.829659, 0.466435, 0.896222, 0.470445, 0.896226, 0.439487, 0.932255, 0.445723, 0.933954, 0.462126, 0.82967, 0.488569, 0.896259, 0.490808, 0.896217, 0.510254, 0.829659, 0.466435, 0.829675, 0.45097, 0.89626, 0.45653, 0.896259, 0.490808, 0.932772, 0.492623, 0.929538, 0.508075, 0.934322, 0.475531, 0.896222, 0.470445, 0.89626, 0.45653, 0.896228, 0.41624, 0.924385, 0.42201, 0.932255, 0.445723, 0.896222, 0.470445, 0.934322, 0.475531, 0.932772, 0.492623, 0.955456, 0.43299, 0.968826, 0.453839, 0.932255, 0.445723, 0.934322, 0.475531, 0.965112, 0.483825, 0.955046, 0.495944, 0.932255, 0.445723, 0.968826, 0.453839, 0.968902, 0.469855, 0.933954, 0.462126, 0.968902, 0.469855, 0.965112, 0.483825, 0.764018, 0.448629, 0.829675, 0.45097, 0.829659, 0.466435, 0.764423, 0.486995, 0.82967, 0.488569, 0.829745, 0.513474, 0.89626, 0.45653, 0.829675, 0.45097, 0.829727, 0.433973, 0.82967, 0.488569, 0.764423, 0.486995, 0.763135, 0.466043, 0.829727, 0.433973, 0.768715, 0.432755, 0.779239, 0.411702, 0.768715, 0.432755, 0.829727, 0.433973, 0.829675, 0.45097, 0.735128, 0.418853, 0.768715, 0.432755, 0.764018, 0.448629, 0.764018, 0.448629, 0.763135, 0.466043, 0.689874, 0.466953, 0.689874, 0.466953, 0.763135, 0.466043, 0.764423, 0.486995, 0.882167, 0.658051, 0.310491, 0.658019, 0.327094, 0.634471, 0.882161, 0.634442, 0.327094, 0.634471, 0.343384, 0.611186, 0.882166, 0.703996, 0.293054, 0.703989, 0.298023, 0.680732, 0.882159, 0.611056, 0.343384, 0.611186, 0.35502, 0.587558, 0.882167, 0.680779, 0.298023, 0.680732, 0.310491, 0.658019, 0.882163, 0.587489, 0.35502, 0.587558, 0.35877, 0.564187, 0.343384, 0.611186, 0.09732, 0.631331, 0.096991, 0.619141, 0.298023, 0.680732, 0.096773, 0.669506, 0.097158, 0.656453, 0.35502, 0.587558, 0.096991, 0.619141, 0.096333, 0.607429, 0.310491, 0.658019, 0.097158, 0.656453, 0.097368, 0.6439, 0.327094, 0.634471, 0.097368, 0.6439, 0.09732, 0.631331, 0.293054, 0.703989, 0.096297, 0.681175, 0.096773, 0.669506, 0.902574, 0.56421, 0.92092, 0.564231, 0.911373, 0.587464, 0.902811, 0.658262, 0.902155, 0.634529, 0.914587, 0.634469, 0.902155, 0.634529, 0.902059, 0.611081, 0.911463, 0.615365, 0.902506, 0.587585, 0.882163, 0.587489, 0.882167, 0.564185, 0.914813, 0.165416, 0.897263, 0.212337, 0.837635, 0.198844, 0.902059, 0.611081, 0.882159, 0.611056, 0.882163, 0.587489, 0.884807, 0.255107, 0.837626, 0.255122, 0.837635, 0.198844, 0.902155, 0.634529, 0.882161, 0.634442, 0.882159, 0.611056, 0.902155, 0.634529, 0.902811, 0.658262, 0.882167, 0.658051, 0.897263, 0.212337, 0.914813, 0.165416, 0.946679, 0.228844, 0.933918, 0.658163, 0.933898, 0.634424, 0.951437, 0.634391, 0.933904, 0.623273, 0.951438, 0.62401, 0.951437, 0.634391, 0.93395, 0.680175, 0.933918, 0.658163, 0.951439, 0.65817, 0.951449, 0.68018, 0.951439, 0.65817, 0.971652, 0.658178, 0.951439, 0.65817, 0.951437, 0.634391, 0.971653, 0.634249, 0.951438, 0.62401, 0.971653, 0.623048, 0.971653, 0.634249, 0.971652, 0.658178, 0.971653, 0.634249, 0.984013, 0.634116, 0.971653, 0.623048, 0.984013, 0.621919, 0.984013, 0.634116, 0.97165, 0.680205, 0.971652, 0.658178, 0.984014, 0.658179, 0.917106, 0.680185, 0.914539, 0.65818, 0.933918, 0.658163, 0.914587, 0.634469, 0.911463, 0.615365, 0.933904, 0.623273, 0.914539, 0.65818, 0.914587, 0.634469, 0.933898, 0.634424, 0.327099, 0.63447, 0.310501, 0.658016, 0.882167, 0.658048, 0.343386, 0.611184, 0.327099, 0.63447, 0.88216, 0.634441, 0.298031, 0.680732, 0.293076, 0.703989, 0.882166, 0.703996, 0.355021, 0.587557, 0.343386, 0.611184, 0.882158, 0.611053, 0.310501, 0.658016, 0.298031, 0.680732, 0.882166, 0.680777, 0.35877, 0.564187, 0.355021, 0.587557, 0.882163, 0.587486, 0.09699, 0.61913, 0.097321, 0.631323, 0.343386, 0.611184, 0.097161, 0.656447, 0.096777, 0.669499, 0.298031, 0.680732, 0.096328, 0.607419, 0.09699, 0.61913, 0.355021, 0.587557, 0.097375, 0.64388, 0.097161, 0.656447, 0.310501, 0.658016, 0.097321, 0.631323, 0.097375, 0.64388, 0.327099, 0.63447, 0.096777, 0.669499, 0.0963, 0.681171, 0.293076, 0.703989, 0.911335, 0.587454, 0.920886, 0.564228, 0.902569, 0.56421, 0.902806, 0.658261, 0.914531, 0.65818, 0.914572, 0.634466, 0.902136, 0.634525, 0.914572, 0.634466, 0.911459, 0.615362, 0.882166, 0.564184, 0.882163, 0.587486, 0.902471, 0.587576, 0.914671, 0.342811, 0.83767, 0.364379, 0.837638, 0.311098, 0.882163, 0.587486, 0.882158, 0.611053, 0.902051, 0.611078, 0.837638, 0.311098, 0.837626, 0.255122, 0.884807, 0.255107, 0.882158, 0.611053, 0.88216, 0.634441, 0.902136, 0.634525, 0.902136, 0.634525, 0.88216, 0.634441, 0.882167, 0.658048, 0.897464, 0.297207, 0.916196, 0.278215, 0.946675, 0.281473, 0.933918, 0.658163, 0.951439, 0.65817, 0.951437, 0.634391, 0.951437, 0.634391, 0.951438, 0.624003, 0.933903, 0.623216, 0.93395, 0.680175, 0.951449, 0.68018, 0.951439, 0.65817, 0.951449, 0.68018, 0.97165, 0.680205, 0.971652, 0.658178, 0.951439, 0.65817, 0.971652, 0.658178, 0.971653, 0.634247, 0.971653, 0.634247, 0.971653, 0.623059, 0.951438, 0.624003, 0.971652, 0.658178, 0.984014, 0.658179, 0.984013, 0.634113, 0.984013, 0.634113, 0.984013, 0.621887, 0.971653, 0.623059, 0.97165, 0.680205, 0.984017, 0.680196, 0.984014, 0.658179, 0.917104, 0.680185, 0.93395, 0.680175, 0.933918, 0.658163, 0.914572, 0.634466, 0.933898, 0.634424, 0.933903, 0.623216, 0.914531, 0.65818, 0.933918, 0.658163, 0.933898, 0.634424, 0.984021, 0.699928, 0.971647, 0.699939, 0.97165, 0.680205, 0.951449, 0.68018, 0.97165, 0.680205, 0.971647, 0.699939, 0.951462, 0.699949, 0.93399, 0.699957, 0.93395, 0.680175, 0.93399, 0.699957, 0.920664, 0.699957, 0.917106, 0.680185, 0.916082, 0.231805, 0.946679, 0.228844, 0.946675, 0.281473, 0.09732, 0.631331, 0.030393, 0.634188, 0.030265, 0.627712, 0.0963, 0.681171, 0.096777, 0.669499, 0.030306, 0.667215, 0.096773, 0.669506, 0.030306, 0.667225, 0.030219, 0.65924, 0.097321, 0.631323, 0.09699, 0.61913, 0.030267, 0.627717, 0.096991, 0.619141, 0.030265, 0.627712, 0.029628, 0.619036, 0.096777, 0.669499, 0.097161, 0.656447, 0.030216, 0.659236, 0.097158, 0.656453, 0.030219, 0.65924, 0.030395, 0.647382, 0.09699, 0.61913, 0.096328, 0.607419, 0.029628, 0.619036, 0.097161, 0.656447, 0.097375, 0.64388, 0.03039, 0.647379, 0.097368, 0.6439, 0.030395, 0.647382, 0.030393, 0.634188, 0.096297, 0.681175, 0.029685, 0.675163, 0.030306, 0.667225, 0.097375, 0.64388, 0.097321, 0.631323, 0.030388, 0.634186, 0.029628, 0.619036, 0.030265, 0.627712, 0.02418, 0.624452, 0.030306, 0.667215, 0.023776, 0.668683, 0.025914, 0.674845, 0.030267, 0.627717, 0.024181, 0.62445, 0.023541, 0.628138, 0.030306, 0.667225, 0.029685, 0.675163, 0.025915, 0.674852, 0.030306, 0.667215, 0.030216, 0.659236, 0.02327, 0.665672, 0.030265, 0.627712, 0.030393, 0.634188, 0.023538, 0.628145, 0.029628, 0.619036, 0.024505, 0.619962, 0.024181, 0.62445, 0.030306, 0.667225, 0.023774, 0.668682, 0.023276, 0.665674, 0.023776, 0.668683, 0.02327, 0.665672, 0.019417, 0.674316, 0.023541, 0.628138, 0.024181, 0.62445, 0.02229, 0.620662, 0.034595, 0.709352, 0.050957, 0.704863, 0.050957, 0.771866, 0.050957, 0.704863, 0.069183, 0.709352, 0.069183, 0.767378, 0.072759, 0.710227, 0.084701, 0.726857, 0.084701, 0.748782, 0.031603, 0.710177, 0.031603, 0.765999, 0.019522, 0.749177, 0.56812, 0.205589, 0.568542, 0.214028, 0.316902, 0.215504, 0.568542, 0.214028, 0.56923, 0.221946, 0.534707, 0.223885, 0.56923, 0.221946, 0.570771, 0.230401, 0.54318, 0.23229, 0.542713, 0.178727, 0.570718, 0.180409, 0.569184, 0.189094, 0.568505, 0.197111, 0.57824, 0.19799, 0.5784, 0.205597, 0.534258, 0.187235, 0.569184, 0.189094, 0.568505, 0.197111, 0.316883, 0.195878, 0.568505, 0.197111, 0.56812, 0.205589, 0.57824, 0.19799, 0.579139, 0.190737, 0.746617, 0.194127, 0.570718, 0.180409, 0.579963, 0.183657, 0.579139, 0.190737, 0.568542, 0.214028, 0.578189, 0.213192, 0.579, 0.220412, 0.568505, 0.197111, 0.569184, 0.189094, 0.579139, 0.190737, 0.568542, 0.214028, 0.56812, 0.205589, 0.5784, 0.205597, 0.570771, 0.230401, 0.56923, 0.221946, 0.579, 0.220412, 0.745744, 0.200182, 0.753455, 0.201213, 0.753709, 0.20637, 0.579786, 0.22714, 0.579, 0.220412, 0.746463, 0.218498, 0.578189, 0.213192, 0.5784, 0.205597, 0.745415, 0.206306, 0.57824, 0.19799, 0.745744, 0.200182, 0.745415, 0.206306, 0.579963, 0.183657, 0.748522, 0.18745, 0.746617, 0.194127, 0.578189, 0.213192, 0.745669, 0.212433, 0.746463, 0.218498, 0.753685, 0.196204, 0.796162, 0.198026, 0.796018, 0.202488, 0.748522, 0.18745, 0.754627, 0.191563, 0.753685, 0.196204, 0.746463, 0.218498, 0.745669, 0.212433, 0.753396, 0.211508, 0.746617, 0.194127, 0.753685, 0.196204, 0.753455, 0.201213, 0.748233, 0.225039, 0.746463, 0.218498, 0.753527, 0.216522, 0.745669, 0.212433, 0.745415, 0.206306, 0.753709, 0.20637, 0.800601, 0.190955, 0.804664, 0.19353, 0.804476, 0.198353, 0.804476, 0.198353, 0.800225, 0.2006, 0.796162, 0.198026, 0.796162, 0.198026, 0.79635, 0.193203, 0.800601, 0.190955, 0.754341, 0.221144, 0.753527, 0.216522, 0.795915, 0.215854, 0.753396, 0.211508, 0.753709, 0.20637, 0.79593, 0.206951, 0.753455, 0.201213, 0.796018, 0.202488, 0.79593, 0.206951, 0.754627, 0.191563, 0.79635, 0.193203, 0.796162, 0.198026, 0.753527, 0.216522, 0.753396, 0.211508, 0.795894, 0.211403, 0.542713, 0.178727, 0.534258, 0.187235, 0.53151, 0.172808, 0.54318, 0.23229, 0.540781, 0.241673, 0.532037, 0.23829, 0.095294, 0.515181, 0.109833, 0.503127, 0.10984, 0.533528, 0.139361, 0.496857, 0.139355, 0.533536, 0.124286, 0.533529, 0.168626, 0.515202, 0.168624, 0.533552, 0.153957, 0.533543, 0.109833, 0.503127, 0.124278, 0.496845, 0.124286, 0.533529, 0.153996, 0.503251, 0.153957, 0.533543, 0.139355, 0.533536, 0.095294, 0.533523, 0.10984, 0.533528, 0.109832, 0.563651, 0.139355, 0.533536, 0.139356, 0.569822, 0.124264, 0.569812, 0.168624, 0.533552, 0.168622, 0.551822, 0.153982, 0.563616, 0.124286, 0.533529, 0.124264, 0.569812, 0.109832, 0.563651, 0.139355, 0.533536, 0.153957, 0.533543, 0.153982, 0.563616, 0.153982, 0.563616, 0.153957, 0.533543, 0.139355, 0.533535, 0.109832, 0.56365, 0.10984, 0.533528, 0.095294, 0.533523, 0.124264, 0.569812, 0.139356, 0.569822, 0.139355, 0.533535, 0.153982, 0.563616, 0.168622, 0.551822, 0.168624, 0.533552, 0.109832, 0.56365, 0.124264, 0.569812, 0.124286, 0.533529, 0.10984, 0.533528, 0.109833, 0.503126, 0.095294, 0.51518, 0.139355, 0.533535, 0.139361, 0.496857, 0.124278, 0.496844, 0.153957, 0.533543, 0.168624, 0.533552, 0.168626, 0.515202, 0.124286, 0.533529, 0.124278, 0.496844, 0.109833, 0.503126, 0.139355, 0.533535, 0.153957, 0.533543, 0.153996, 0.50325, 0.061135, 0.49686, 0.061135, 0.572646, 0.052529, 0.572646, 0.035319, 0.572646, 0.035319, 0.49686, 0.043924, 0.49686, 0.043924, 0.572646, 0.043924, 0.49686, 0.052529, 0.49686, 0.026714, 0.572646, 0.026714, 0.49686, 0.035319, 0.49686, 0.039385, 0.582025, 0.039385, 0.576414, 0.04799, 0.576414, 0.035285, 0.496889, 0.035285, 0.572675, 0.02668, 0.572675, 0.04389, 0.496889, 0.052495, 0.496889, 0.052495, 0.572675, 0.035285, 0.496889, 0.04389, 0.496889, 0.04389, 0.572675, 0.052495, 0.572675, 0.052495, 0.496889, 0.061101, 0.496889, 0.04799, 0.57641, 0.04799, 0.582021, 0.039385, 0.582021};
+
+       // Draw the Plane
+
+       // activate and specify pointer to vertex array
+       glEnableClientState(GL_VERTEX_ARRAY);
+       glVertexPointer(3, GL_FLOAT, 0, tu_95_fusulage_vertices);
+
+       // activate normal pointers
+       glEnableClientState(GL_NORMAL_ARRAY);
+       glNormalPointer(GL_FLOAT, 0, tu_95_fusulage_normals);
+
+       // activate UV pointers
+       glEnableClientState(GL_TEXTURE_COORD_ARRAY);
+       glTexCoordPointer(2, GL_FLOAT, 0, tu_95_fusulage_UVs);
+
+       // draw the TU-95
+       glDrawArrays(GL_TRIANGLES, 0, 5736); //tris in blender times 3x
+
+       glDisableClientState(GL_VERTEX_ARRAY);                  // deactivate vertex arrays after drawing
+       glDisableClientState(GL_NORMAL_ARRAY);                  // deactivate normal arrays after drawing
+       glDisableClientState(GL_TEXTURE_COORD_ARRAY);           // deactivate texture arrays after drawing
+
+       // disable blending
+       //      glDisable (GL_BLEND);
+
+       // disable texture
+       glDisable(GL_TEXTURE_2D);
+
+       //------------------------------------------------------------------------------------------------------------------------------------------------------------------//
+
+       // draw texture_tu_95_2
+       glBindTexture( GL_TEXTURE_2D, texture_tu_95_2 );
+       glEnable(GL_TEXTURE_2D);
+
+       // enable blending
+       //      glEnable(GL_BLEND);
+
+       // set vertices for TU-95
+       static GLfloat tu_95_wings_vertices[] = {-26.635376, 0.922241, -0.258979, -24.156675, 2.201297, -0.251961, -23.56094, 0.828724, -0.403434, -23.56094, 0.828724, 0.403425, -19.698975, 2.161567, 0.271102, -24.156675, 2.201297, 0.251951, -15.863181, 1.195286, -3e-06, -16.226295, 1.446053, 0.176174, -16.209761, 1.195286, 0.211956, -19.502092, 1.046692, -0.424726, -16.226295, 1.446053, -0.176181, -16.209761, 1.195286, -0.211962, -15.863181, 1.195286, -3e-06, -16.226295, 1.446053, -0.176181, -16.024403, 1.633553, -3e-06, -19.502092, 1.046692, 0.424718, -16.226295, 1.446053, 0.176174, -19.698975, 2.161567, 0.271102, -16.226295, 1.446053, 0.176174, -19.567144, 2.481358, -4e-06, -19.698975, 2.161567, 0.271102, -16.226295, 1.446053, -0.176181, -19.567144, 2.481358, -4e-06, -16.024403, 1.633553, -3e-06, -26.635374, 0.922241, 0.258968, -24.156675, 2.201297, 0.251951, -26.384953, 1.906321, 0.212356, -23.56094, 0.828724, -0.403434, -19.698975, 2.161567, -0.271109, -19.502092, 1.046692, -0.424726, -19.698975, 2.161567, -0.271109, -20.418043, 3.083907, -4e-06, -19.567144, 2.481358, -4e-06, -19.698975, 2.161567, 0.271102, -20.418043, 3.083907, -4e-06, -20.672432, 2.880975, 0.252644, -20.672432, 2.880975, -0.252652, -25.393353, 8.357282, -5e-06, -20.418043, 3.083907, -4e-06, -20.672432, 2.880975, 0.252644, -25.393353, 8.357282, -5e-06, -25.56789, 8.21805, 0.133177, -25.56789, 8.21805, -0.133187, -25.987509, 8.780056, -5e-06, -25.393353, 8.357282, -5e-06, -25.56789, 8.21805, 0.133177, -25.987509, 8.780056, -5e-06, -26.067688, 8.641713, 0.127473, -26.067688, 8.641713, -0.127484, -26.53056, 8.874966, -5e-06, -25.987509, 8.780056, -5e-06, -26.067688, 8.641713, 0.127473, -26.53056, 8.874966, -5e-06, -26.511158, 8.718605, 0.12136, -19.698975, 2.161567, 0.271102, -20.672432, 2.880975, 0.252644, -24.156675, 2.201297, 0.251951, -24.156675, 2.201297, -0.251961, -20.672432, 2.880975, -0.252652, -19.698975, 2.161567, -0.271109, -20.672432, 2.880975, 0.252644, -25.56789, 8.21805, 0.133177, -24.156675, 2.201297, 0.251951, -20.672432, 2.880975, -0.252652, -24.156675, 2.201297, -0.251961, -25.56789, 8.21805, -0.133187, -26.53056, 8.874966, -5e-06, -28.503284, 8.599457, -0.028412, -28.521965, 8.666121, -6e-06, -26.53056, 8.874966, -5e-06, -28.503284, 8.599457, 0.028401, -26.511158, 8.718605, 0.12136, -28.521965, 8.666121, -6e-06, -28.503284, 8.599457, -0.028412, -28.503284, 8.599457, 0.028401, -26.511158, 8.718605, 0.12136, -25.56789, 8.21805, 0.133177, -26.067688, 8.641713, 0.127473, -25.56789, 8.21805, -0.133187, -26.511158, 8.718605, -0.12137, -26.067688, 8.641713, -0.127484, -26.767605, 2.413756, -0.039678, -25.56789, 8.21805, -0.133187, -24.156675, 2.201297, -0.251961, -25.56789, 8.21805, 0.133177, -26.767605, 2.413756, 0.039668, -24.156675, 2.201297, 0.251951, -26.384954, 1.906321, -0.212366, -26.724674, 1.916362, 0.086905, -26.724676, 1.916362, -0.086915, -26.767605, 2.413756, 0.039668, -26.794382, 2.266927, -0.215146, -26.794382, 2.266927, 0.215135, -26.794382, 2.266927, -0.215146, -26.794382, 2.072794, 0.21514, -26.794382, 2.266927, 0.215135, -26.724676, 1.916362, -0.086915, -26.794382, 2.072794, 0.21514, -26.794382, 2.072794, -0.21515, -26.767605, 2.413756, 0.039668, -26.794382, 2.266927, 0.215135, -24.156675, 2.201297, 0.251951, -26.794382, 2.266927, 0.215135, -26.794382, 2.072794, 0.21514, -24.156675, 2.201297, 0.251951, -24.156675, 2.201297, -0.251961, -26.384954, 1.906321, -0.212366, -26.794382, 2.072794, -0.21515, -26.767605, 2.413756, -0.039678, -24.156675, 2.201297, -0.251961, -26.794382, 2.266927, -0.215146, -26.794382, 2.266927, -0.215146, -24.156675, 2.201297, -0.251961, -26.794382, 2.072794, -0.21515, -26.384954, 1.906321, -0.212366, -26.724676, 1.916362, -0.086915, -26.794382, 2.072794, -0.21515, -26.724674, 1.916362, 0.086905, -26.384953, 1.906321, 0.212356, -26.794382, 2.072794, 0.21514, -24.156675, 2.201297, 0.251951, -26.794382, 2.072794, 0.21514, -26.384953, 1.906321, 0.212356, -28.503284, 8.599457, -0.028412, -26.767605, 2.413756, 0.039668, -28.503284, 8.599457, 0.028401, -26.635374, 0.922241, 0.258968, -26.384954, 1.906321, -0.212366, -26.635376, 0.922241, -0.258979, -9.859406, -0.54379, 24.818542, -10.61688, -0.654314, 24.652508, -9.775682, -0.661239, 24.652508, -9.220181, -0.556715, 24.799047, -9.775682, -0.661239, 24.652508, -9.125428, -0.655243, 24.652508, -8.892906, -0.567737, 24.725777, -9.125428, -0.457832, 24.652508, -9.220181, -0.556715, 24.799047, -9.220181, -0.556715, 24.799047, -9.775682, -0.42554, 24.652508, -9.859406, -0.54379, 24.818542, -9.859406, -0.54379, 24.818542, -10.61688, -0.486717, 24.652508, -10.686336, -0.570456, 24.802946, -10.497221, -0.473118, 24.438431, -0.870567, 0.012027, 0.79266, -11.35156, -0.58873, 24.438431, -8.660788, -0.565425, 24.438431, 7.40672, 0.452353, 0.792661, -8.731346, -0.504107, 24.438431, -9.64288, -0.405355, 24.438431, 1.828301, 0.604657, 0.79266, -10.497221, -0.473118, 24.438431, -8.982469, -0.441123, 24.438431, 4.527172, 0.937692, 0.792661, -9.64288, -0.405355, 24.438431, -8.731346, -0.504107, 24.438431, 6.613423, 0.761902, 0.792661, -8.982469, -0.441123, 24.438431, -0.870567, -0.010413, 0.79266, -10.497221, -0.658757, 24.438431, -11.35156, -0.603237, 24.438431, 6.613423, -0.312762, 0.792661, -8.731347, -0.616418, 24.438431, -8.982469, -0.659786, 24.438431, 1.828301, -0.307706, 0.79266, -9.642881, -0.666427, 24.438431, -10.497221, -0.658757, 24.438431, 7.40672, -0.099625, 0.792661, -8.660788, -0.565425, 24.438431, -8.731347, -0.616418, 24.438431, 4.527172, -0.345404, 0.792661, -8.982469, -0.659786, 24.438431, -9.642881, -0.666427, 24.438431, -9.642881, -0.666427, 24.438431, -9.125428, -0.655243, 24.652508, -9.775682, -0.661239, 24.652508, -8.920363, -0.616091, 24.635134, -8.660788, -0.565425, 24.438431, -8.892906, -0.567737, 24.725777, -10.497221, -0.658757, 24.438431, -9.775682, -0.661239, 24.652508, -10.61688, -0.654314, 24.652508, -8.982469, -0.659786, 24.438431, -8.920363, -0.616091, 24.635134, -9.125428, -0.655243, 24.652508, -11.35156, -0.603237, 24.438431, -10.61688, -0.654314, 24.652508, -11.445082, -0.604532, 24.633013, -8.920363, -0.514695, 24.635134, -8.982469, -0.441123, 24.438431, -9.125428, -0.457832, 24.652508, -9.125428, -0.457832, 24.652508, -9.64288, -0.405355, 24.438431, -9.775682, -0.42554, 24.652508, -9.775682, -0.42554, 24.652508, -10.497221, -0.473118, 24.438431, -10.61688, -0.486717, 24.652508, -8.660788, -0.565425, 24.438431, -8.920363, -0.514695, 24.635134, -8.892906, -0.567737, 24.725777, -10.61688, -0.486717, 24.652508, -11.35156, -0.58873, 24.438431, -11.445082, -0.590751, 24.633013, -8.892906, -0.567737, 24.725777, -9.125428, -0.655243, 24.652508, -8.920363, -0.616091, 24.635134, -11.366331, -0.597642, 24.740948, -10.61688, -0.486717, 24.652508, -11.445082, -0.590751, 24.633013, -10.61688, -0.654314, 24.652508, -11.366331, -0.597642, 24.740948, -11.445082, -0.604532, 24.633013, -11.35156, -0.58873, 24.438431, -0.870567, -0.010413, 0.79266, -11.35156, -0.603237, 24.438431, -11.445082, -0.590751, 24.633013, -11.35156, -0.603237, 24.438431, -11.445082, -0.604532, 24.633013, -11.445082, -0.590751, 24.633013, -11.445082, -0.604532, 24.633013, -11.366331, -0.597642, 24.740948, -10.616871, -0.654314, -24.652508, -9.859397, -0.54379, -24.818542, -9.775673, -0.661239, -24.652508, -9.775673, -0.661239, -24.652508, -9.220172, -0.556715, -24.799047, -9.125419, -0.655243, -24.652508, -8.892897, -0.567737, -24.725777, -9.125419, -0.457832, -24.652508, -8.920354, -0.514695, -24.635134, -9.220172, -0.556715, -24.799047, -9.775673, -0.42554, -24.652508, -9.125419, -0.457832, -24.652508, -9.859397, -0.54379, -24.818542, -10.616871, -0.486717, -24.652508, -9.775673, -0.42554, -24.652508, -10.497211, -0.473118, -24.438431, -0.870566, 0.012027, -0.792658, 1.828302, 0.604657, -0.792658, -8.660778, -0.565425, -24.438431, 7.40672, 0.452353, -0.792656, 7.629619, 0.150995, -0.792656, -9.642871, -0.405355, -24.438431, 1.828302, 0.604657, -0.792658, 4.527172, 0.937692, -0.792657, -8.982459, -0.441123, -24.438431, 4.527172, 0.937692, -0.792657, 6.613423, 0.761902, -0.792657, -8.731337, -0.504107, -24.438431, 6.613423, 0.761902, -0.792657, 7.40672, 0.452353, -0.792656, -10.497211, -0.658757, -24.438431, -0.870566, -0.010413, -0.792658, -11.35155, -0.603237, -24.438431, -8.731338, -0.616418, -24.438431, 6.613423, -0.312762, -0.792657, -8.982459, -0.659786, -24.438431, -9.642872, -0.666427, -24.438431, 1.828302, -0.307706, -0.792658, -10.497211, -0.658757, -24.438431, -8.660778, -0.565425, -24.438431, 7.40672, -0.099625, -0.792656, -8.731338, -0.616418, -24.438431, -8.982459, -0.659786, -24.438431, 4.527172, -0.345404, -0.792657, -9.642872, -0.666427, -24.438431, -9.125419, -0.655243, -24.652508, -9.642872, -0.666427, -24.438431, -9.775673, -0.661239, -24.652508, -8.920354, -0.616091, -24.635134, -8.660778, -0.565425, -24.438431, -8.731338, -0.616418, -24.438431, -9.775673, -0.661239, -24.652508, -10.497211, -0.658757, -24.438431, -10.616871, -0.654314, -24.652508, -8.920354, -0.616091, -24.635134, -8.982459, -0.659786, -24.438431, -9.125419, -0.655243, -24.652508, -10.616871, -0.654314, -24.652508, -11.35155, -0.603237, -24.438431, -11.445072, -0.604532, -24.633013, -8.920354, -0.514695, -24.635134, -8.982459, -0.441123, -24.438431, -8.731337, -0.504107, -24.438431, -9.125419, -0.457832, -24.652508, -9.642871, -0.405355, -24.438431, -8.982459, -0.441123, -24.438431, -9.775673, -0.42554, -24.652508, -10.497211, -0.473118, -24.438431, -9.642871, -0.405355, -24.438431, -8.920354, -0.514695, -24.635134, -8.660778, -0.565425, -24.438431, -8.892897, -0.567737, -24.725777, -10.616871, -0.486717, -24.652508, -11.35155, -0.58873, -24.438431, -10.497211, -0.473118, -24.438431, -9.125419, -0.655243, -24.652508, -8.892897, -0.567737, -24.725777, -8.920354, -0.616091, -24.635134, -10.616871, -0.486717, -24.652508, -11.366322, -0.597642, -24.740948, -11.445072, -0.590751, -24.633013, -11.366322, -0.597642, -24.740948, -10.616871, -0.654314, -24.652508, -11.445072, -0.604532, -24.633013, -11.35155, -0.58873, -24.438431, -0.870566, -0.010413, -0.792658, -0.870566, 0.012027, -0.792658, -11.445072, -0.590751, -24.633013, -11.35155, -0.603237, -24.438431, -11.35155, -0.58873, -24.438431, -11.445072, -0.590751, -24.633013, -11.366322, -0.597642, -24.740948, -11.445072, -0.604532, -24.633013, -28.274685, 1.478212, 7.265555, -27.098145, 1.466417, 7.330986, -26.991869, 1.491546, 7.162221, -26.363295, 1.331404, 7.297313, -27.000042, 1.330686, 7.155626, -25.919161, 1.344226, 6.984553, -21.979153, 1.880747, 0.171558, -25.915442, 1.417477, 6.987556, -19.802904, 1.694552, 0.163925, -27.000042, 1.330686, 7.155626, -24.957844, 1.816927, 0.168941, -21.997915, 1.511403, 0.156417, -19.802904, 1.694552, 0.163925, -25.870932, 1.3785, 6.985958, -19.700712, 1.605059, 0.160256, -25.870932, 1.3785, 6.985958, -19.811449, 1.526364, 0.15703, -19.700712, 1.605059, 0.160256, -25.919161, 1.344226, 6.984553, -21.997915, 1.511403, 0.156417, -19.811449, 1.526364, 0.15703, -24.955662, 1.859894, 0.170703, -26.991869, 1.491546, 7.162221, -21.979153, 1.880747, 0.171558, -27.098145, 1.466417, 7.330986, -28.288097, 1.467436, 7.299789, -27.143579, 1.401581, 7.391494, -27.098145, 1.466417, 7.330986, -26.349113, 1.366453, 7.337262, -26.361048, 1.404533, 7.30328, -26.349113, 1.366453, 7.337262, -27.106318, 1.341916, 7.325882, -26.363295, 1.331404, 7.297313, -26.991869, 1.491546, 7.162221, -26.361048, 1.404533, 7.30328, -25.915442, 1.417477, 6.987556, -27.106318, 1.341916, 7.325882, -28.275635, 1.459499, 7.264788, -27.000042, 1.330686, 7.155626, -25.915442, 1.417477, 6.987556, -26.349113, 1.366453, 7.337262, -25.870932, 1.3785, 6.985958, -26.349113, 1.366453, 7.337262, -25.919161, 1.344226, 6.984553, -25.870932, 1.3785, 6.985958, -28.288097, 1.467436, 7.299789, -27.106318, 1.341916, 7.325882, -27.143579, 1.401581, 7.391494, -28.274681, 1.478212, -7.265566, -27.098141, 1.466417, -7.330997, -28.288094, 1.467436, -7.2998, -27.000038, 1.330686, -7.155637, -26.363291, 1.331404, -7.297323, -25.919157, 1.344226, -6.984563, -21.979153, 1.880747, -0.171567, -25.915438, 1.417477, -6.987566, -26.991865, 1.491546, -7.162231, -24.957844, 1.816927, -0.168951, -27.000038, 1.330686, -7.155637, -21.997915, 1.511403, -0.156425, -19.802904, 1.694552, -0.163933, -25.870928, 1.3785, -6.985969, -25.915438, 1.417477, -6.987566, -19.811449, 1.526364, -0.157038, -25.870928, 1.3785, -6.985969, -19.700712, 1.605059, -0.160264, -21.997915, 1.511403, -0.156425, -25.919157, 1.344226, -6.984563, -19.811449, 1.526364, -0.157038, -24.955662, 1.859894, -0.170713, -26.991865, 1.491546, -7.162231, -28.274681, 1.478212, -7.265566, -27.098141, 1.466417, -7.330997, -27.143576, 1.401581, -7.391504, -28.288094, 1.467436, -7.2998, -26.34911, 1.366453, -7.337273, -27.098141, 1.466417, -7.330997, -26.361044, 1.404533, -7.30329, -26.34911, 1.366453, -7.337273, -27.106314, 1.341916, -7.325893, -27.143576, 1.401581, -7.391504, -26.991865, 1.491546, -7.162231, -26.361044, 1.404533, -7.30329, -27.098141, 1.466417, -7.330997, -28.275631, 1.459499, -7.264799, -27.106314, 1.341916, -7.325893, -27.000038, 1.330686, -7.155637, -25.915438, 1.417477, -6.987566, -26.34911, 1.366453, -7.337273, -26.361044, 1.404533, -7.30329, -25.919157, 1.344226, -6.984563, -26.34911, 1.366453, -7.337273, -25.870928, 1.3785, -6.985969, -28.288094, 1.467436, -7.2998, -27.143576, 1.401581, -7.391504, -27.106314, 1.341916, -7.325893, -28.275635, 1.459499, 7.264788, -28.288097, 1.467436, 7.299789, -28.274685, 1.478212, 7.265555, -24.957844, 1.816927, 0.168941, -28.274685, 1.478212, 7.265555, -24.955662, 1.859894, 0.170703, -28.275631, 1.459499, -7.264799, -28.274681, 1.478212, -7.265566, -28.288094, 1.467436, -7.2998, -24.957844, 1.816927, -0.168951, -28.274681, 1.478212, -7.265566, -28.275631, 1.459499, -7.264799, -26.635376, 0.922241, -0.258979, -26.384954, 1.906321, -0.212366, -24.156675, 2.201297, -0.251961, -23.56094, 0.828724, 0.403425, -19.502092, 1.046692, 0.424718, -19.698975, 2.161567, 0.271102, -15.863181, 1.195286, -3e-06, -16.024403, 1.633553, -3e-06, -16.226295, 1.446053, 0.176174, -19.502092, 1.046692, -0.424726, -19.698975, 2.161567, -0.271109, -16.226295, 1.446053, -0.176181, -15.863181, 1.195286, -3e-06, -16.209761, 1.195286, -0.211962, -16.226295, 1.446053, -0.176181, -19.502092, 1.046692, 0.424718, -16.209761, 1.195286, 0.211956, -16.226295, 1.446053, 0.176174, -16.226295, 1.446053, 0.176174, -16.024403, 1.633553, -3e-06, -19.567144, 2.481358, -4e-06, -16.226295, 1.446053, -0.176181, -19.698975, 2.161567, -0.271109, -19.567144, 2.481358, -4e-06, -26.635374, 0.922241, 0.258968, -23.56094, 0.828724, 0.403425, -24.156675, 2.201297, 0.251951, -23.56094, 0.828724, -0.403434, -24.156675, 2.201297, -0.251961, -19.698975, 2.161567, -0.271109, -19.698975, 2.161567, -0.271109, -20.672432, 2.880975, -0.252652, -20.418043, 3.083907, -4e-06, -19.698975, 2.161567, 0.271102, -19.567144, 2.481358, -4e-06, -20.418043, 3.083907, -4e-06, -20.672432, 2.880975, -0.252652, -25.56789, 8.21805, -0.133187, -25.393353, 8.357282, -5e-06, -20.672432, 2.880975, 0.252644, -20.418043, 3.083907, -4e-06, -25.393353, 8.357282, -5e-06, -25.56789, 8.21805, -0.133187, -26.067688, 8.641713, -0.127484, -25.987509, 8.780056, -5e-06, -25.56789, 8.21805, 0.133177, -25.393353, 8.357282, -5e-06, -25.987509, 8.780056, -5e-06, -26.067688, 8.641713, -0.127484, -26.511158, 8.718605, -0.12137, -26.53056, 8.874966, -5e-06, -26.067688, 8.641713, 0.127473, -25.987509, 8.780056, -5e-06, -26.53056, 8.874966, -5e-06, -26.53056, 8.874966, -5e-06, -26.511158, 8.718605, -0.12137, -28.503284, 8.599457, -0.028412, -26.53056, 8.874966, -5e-06, -28.521965, 8.666121, -6e-06, -28.503284, 8.599457, 0.028401, -26.511158, 8.718605, 0.12136, -28.503284, 8.599457, 0.028401, -25.56789, 8.21805, 0.133177, -25.56789, 8.21805, -0.133187, -28.503284, 8.599457, -0.028412, -26.511158, 8.718605, -0.12137, -26.767605, 2.413756, -0.039678, -28.503284, 8.599457, -0.028412, -25.56789, 8.21805, -0.133187, -25.56789, 8.21805, 0.133177, -28.503284, 8.599457, 0.028401, -26.767605, 2.413756, 0.039668, -26.384954, 1.906321, -0.212366, -26.384953, 1.906321, 0.212356, -26.724674, 1.916362, 0.086905, -26.767605, 2.413756, 0.039668, -26.767605, 2.413756, -0.039678, -26.794382, 2.266927, -0.215146, -26.794382, 2.266927, -0.215146, -26.794382, 2.072794, -0.21515, -26.794382, 2.072794, 0.21514, -26.724676, 1.916362, -0.086915, -26.724674, 1.916362, 0.086905, -26.794382, 2.072794, 0.21514, -28.503284, 8.599457, -0.028412, -26.767605, 2.413756, -0.039678, -26.767605, 2.413756, 0.039668, -26.635374, 0.922241, 0.258968, -26.384953, 1.906321, 0.212356, -26.384954, 1.906321, -0.212366, -9.859406, -0.54379, 24.818542, -10.686336, -0.570456, 24.802946, -10.61688, -0.654314, 24.652508, -9.220181, -0.556715, 24.799047, -9.859406, -0.54379, 24.818542, -9.775682, -0.661239, 24.652508, -8.892906, -0.567737, 24.725777, -8.920363, -0.514695, 24.635134, -9.125428, -0.457832, 24.652508, -9.220181, -0.556715, 24.799047, -9.125428, -0.457832, 24.652508, -9.775682, -0.42554, 24.652508, -9.859406, -0.54379, 24.818542, -9.775682, -0.42554, 24.652508, -10.61688, -0.486717, 24.652508, -10.497221, -0.473118, 24.438431, 1.828301, 0.604657, 0.79266, -0.870567, 0.012027, 0.79266, -8.660788, -0.565425, 24.438431, 7.629619, 0.150995, 0.792661, 7.40672, 0.452353, 0.792661, -9.64288, -0.405355, 24.438431, 4.527172, 0.937692, 0.792661, 1.828301, 0.604657, 0.79266, -8.982469, -0.441123, 24.438431, 6.613423, 0.761902, 0.792661, 4.527172, 0.937692, 0.792661, -8.731346, -0.504107, 24.438431, 7.40672, 0.452353, 0.792661, 6.613423, 0.761902, 0.792661, -0.870567, -0.010413, 0.79266, 1.828301, -0.307706, 0.79266, -10.497221, -0.658757, 24.438431, 6.613423, -0.312762, 0.792661, 7.40672, -0.099625, 0.792661, -8.731347, -0.616418, 24.438431, 1.828301, -0.307706, 0.79266, 4.527172, -0.345404, 0.792661, -9.642881, -0.666427, 24.438431, 7.40672, -0.099625, 0.792661, 7.629619, 0.150995, 0.792661, -8.660788, -0.565425, 24.438431, 4.527172, -0.345404, 0.792661, 6.613423, -0.312762, 0.792661, -8.982469, -0.659786, 24.438431, -9.642881, -0.666427, 24.438431, -8.982469, -0.659786, 24.438431, -9.125428, -0.655243, 24.652508, -8.920363, -0.616091, 24.635134, -8.731347, -0.616418, 24.438431, -8.660788, -0.565425, 24.438431, -10.497221, -0.658757, 24.438431, -9.642881, -0.666427, 24.438431, -9.775682, -0.661239, 24.652508, -8.982469, -0.659786, 24.438431, -8.731347, -0.616418, 24.438431, -8.920363, -0.616091, 24.635134, -11.35156, -0.603237, 24.438431, -10.497221, -0.658757, 24.438431, -10.61688, -0.654314, 24.652508, -8.920363, -0.514695, 24.635134, -8.731346, -0.504107, 24.438431, -8.982469, -0.441123, 24.438431, -9.125428, -0.457832, 24.652508, -8.982469, -0.441123, 24.438431, -9.64288, -0.405355, 24.438431, -9.775682, -0.42554, 24.652508, -9.64288, -0.405355, 24.438431, -10.497221, -0.473118, 24.438431, -8.660788, -0.565425, 24.438431, -8.731346, -0.504107, 24.438431, -8.920363, -0.514695, 24.635134, -10.61688, -0.486717, 24.652508, -10.497221, -0.473118, 24.438431, -11.35156, -0.58873, 24.438431, -8.892906, -0.567737, 24.725777, -9.220181, -0.556715, 24.799047, -9.125428, -0.655243, 24.652508, -11.366331, -0.597642, 24.740948, -10.686336, -0.570456, 24.802946, -10.61688, -0.486717, 24.652508, -10.61688, -0.654314, 24.652508, -10.686336, -0.570456, 24.802946, -11.366331, -0.597642, 24.740948, -11.35156, -0.58873, 24.438431, -0.870567, 0.012027, 0.79266, -0.870567, -0.010413, 0.79266, -11.445082, -0.590751, 24.633013, -11.35156, -0.58873, 24.438431, -11.35156, -0.603237, 24.438431, -10.616871, -0.654314, -24.652508, -10.686326, -0.570456, -24.802946, -9.859397, -0.54379, -24.818542, -9.775673, -0.661239, -24.652508, -9.859397, -0.54379, -24.818542, -9.220172, -0.556715, -24.799047, -8.892897, -0.567737, -24.725777, -9.220172, -0.556715, -24.799047, -9.125419, -0.457832, -24.652508, -9.220172, -0.556715, -24.799047, -9.859397, -0.54379, -24.818542, -9.775673, -0.42554, -24.652508, -9.859397, -0.54379, -24.818542, -10.686326, -0.570456, -24.802946, -10.616871, -0.486717, -24.652508, -10.497211, -0.473118, -24.438431, -11.35155, -0.58873, -24.438431, -0.870566, 0.012027, -0.792658, -8.660778, -0.565425, -24.438431, -8.731337, -0.504107, -24.438431, 7.40672, 0.452353, -0.792656, -9.642871, -0.405355, -24.438431, -10.497211, -0.473118, -24.438431, 1.828302, 0.604657, -0.792658, -8.982459, -0.441123, -24.438431, -9.642871, -0.405355, -24.438431, 4.527172, 0.937692, -0.792657, -8.731337, -0.504107, -24.438431, -8.982459, -0.441123, -24.438431, 6.613423, 0.761902, -0.792657, -10.497211, -0.658757, -24.438431, 1.828302, -0.307706, -0.792658, -0.870566, -0.010413, -0.792658, -8.731338, -0.616418, -24.438431, 7.40672, -0.099625, -0.792656, 6.613423, -0.312762, -0.792657, -9.642872, -0.666427, -24.438431, 4.527172, -0.345404, -0.792657, 1.828302, -0.307706, -0.792658, -8.660778, -0.565425, -24.438431, 7.629619, 0.150995, -0.792656, 7.40672, -0.099625, -0.792656, -8.982459, -0.659786, -24.438431, 6.613423, -0.312762, -0.792657, 4.527172, -0.345404, -0.792657, -9.125419, -0.655243, -24.652508, -8.982459, -0.659786, -24.438431, -9.642872, -0.666427, -24.438431, -8.920354, -0.616091, -24.635134, -8.892897, -0.567737, -24.725777, -8.660778, -0.565425, -24.438431, -9.775673, -0.661239, -24.652508, -9.642872, -0.666427, -24.438431, -10.497211, -0.658757, -24.438431, -8.920354, -0.616091, -24.635134, -8.731338, -0.616418, -24.438431, -8.982459, -0.659786, -24.438431, -10.616871, -0.654314, -24.652508, -10.497211, -0.658757, -24.438431, -11.35155, -0.603237, -24.438431, -8.920354, -0.514695, -24.635134, -9.125419, -0.457832, -24.652508, -8.982459, -0.441123, -24.438431, -9.125419, -0.457832, -24.652508, -9.775673, -0.42554, -24.652508, -9.642871, -0.405355, -24.438431, -9.775673, -0.42554, -24.652508, -10.616871, -0.486717, -24.652508, -10.497211, -0.473118, -24.438431, -8.920354, -0.514695, -24.635134, -8.731337, -0.504107, -24.438431, -8.660778, -0.565425, -24.438431, -10.616871, -0.486717, -24.652508, -11.445072, -0.590751, -24.633013, -11.35155, -0.58873, -24.438431, -9.125419, -0.655243, -24.652508, -9.220172, -0.556715, -24.799047, -8.892897, -0.567737, -24.725777, -10.616871, -0.486717, -24.652508, -10.686326, -0.570456, -24.802946, -11.366322, -0.597642, -24.740948, -11.366322, -0.597642, -24.740948, -10.686326, -0.570456, -24.802946, -10.616871, -0.654314, -24.652508, -11.35155, -0.58873, -24.438431, -11.35155, -0.603237, -24.438431, -0.870566, -0.010413, -0.792658, -11.445072, -0.590751, -24.633013, -11.445072, -0.604532, -24.633013, -11.35155, -0.603237, -24.438431, -28.274685, 1.478212, 7.265555, -28.288097, 1.467436, 7.299789, -27.098145, 1.466417, 7.330986, -26.363295, 1.331404, 7.297313, -27.106318, 1.341916, 7.325882, -27.000042, 1.330686, 7.155626, -21.979153, 1.880747, 0.171558, -26.991869, 1.491546, 7.162221, -25.915442, 1.417477, 6.987556, -27.000042, 1.330686, 7.155626, -28.275635, 1.459499, 7.264788, -24.957844, 1.816927, 0.168941, -19.802904, 1.694552, 0.163925, -25.915442, 1.417477, 6.987556, -25.870932, 1.3785, 6.985958, -25.870932, 1.3785, 6.985958, -25.919161, 1.344226, 6.984553, -19.811449, 1.526364, 0.15703, -25.919161, 1.344226, 6.984553, -27.000042, 1.330686, 7.155626, -21.997915, 1.511403, 0.156417, -24.955662, 1.859894, 0.170703, -28.274685, 1.478212, 7.265555, -26.991869, 1.491546, 7.162221, -27.098145, 1.466417, 7.330986, -27.143579, 1.401581, 7.391494, -26.349113, 1.366453, 7.337262, -26.349113, 1.366453, 7.337262, -27.143579, 1.401581, 7.391494, -27.106318, 1.341916, 7.325882, -26.991869, 1.491546, 7.162221, -27.098145, 1.466417, 7.330986, -26.361048, 1.404533, 7.30328, -27.106318, 1.341916, 7.325882, -28.288097, 1.467436, 7.299789, -28.275635, 1.459499, 7.264788, -25.915442, 1.417477, 6.987556, -26.361048, 1.404533, 7.30328, -26.349113, 1.366453, 7.337262, -26.349113, 1.366453, 7.337262, -26.363295, 1.331404, 7.297313, -25.919161, 1.344226, 6.984553, -28.274681, 1.478212, -7.265566, -26.991865, 1.491546, -7.162231, -27.098141, 1.466417, -7.330997, -27.000038, 1.330686, -7.155637, -27.106314, 1.341916, -7.325893, -26.363291, 1.331404, -7.297323, -21.979153, 1.880747, -0.171567, -19.802904, 1.694552, -0.163933, -25.915438, 1.417477, -6.987566, -24.957844, 1.816927, -0.168951, -28.275631, 1.459499, -7.264799, -27.000038, 1.330686, -7.155637, -19.802904, 1.694552, -0.163933, -19.700712, 1.605059, -0.160264, -25.870928, 1.3785, -6.985969, -19.811449, 1.526364, -0.157038, -25.919157, 1.344226, -6.984563, -25.870928, 1.3785, -6.985969, -21.997915, 1.511403, -0.156425, -27.000038, 1.330686, -7.155637, -25.919157, 1.344226, -6.984563, -24.955662, 1.859894, -0.170713, -21.979153, 1.880747, -0.171567, -26.991865, 1.491546, -7.162231, -26.34911, 1.366453, -7.337273, -27.143576, 1.401581, -7.391504, -27.098141, 1.466417, -7.330997, -26.34911, 1.366453, -7.337273, -26.363291, 1.331404, -7.297323, -27.106314, 1.341916, -7.325893, -26.991865, 1.491546, -7.162231, -25.915438, 1.417477, -6.987566, -26.361044, 1.404533, -7.30329, -28.275631, 1.459499, -7.264799, -28.288094, 1.467436, -7.2998, -27.106314, 1.341916, -7.325893, -25.915438, 1.417477, -6.987566, -25.870928, 1.3785, -6.985969, -26.34911, 1.366453, -7.337273, -25.919157, 1.344226, -6.984563, -26.363291, 1.331404, -7.297323, -26.34911, 1.366453, -7.337273, -24.957844, 1.816927, 0.168941, -28.275635, 1.459499, 7.264788, -28.274685, 1.478212, 7.265555, -24.957844, 1.816927, -0.168951, -24.955662, 1.859894, -0.170713, -28.274681, 1.478212, -7.265566};
+
+       // set normals for TU-95
+       static GLfloat tu_95_wings_normals[] = {-0.032014, 0.067537, -0.997192, -0.03003, 0.060213, -0.997711, -0.019166, 0.10419, -0.994354, -0.019166, 0.10419, 0.994354, 0.122868, 0.322367, 0.938597, -0.03003, 0.060213, 0.997711, 0.947295, 0.320261, 0.0, 0.267678, 0.324625, 0.907163, 0.294534, 0.153996, 0.943144, 0.025025, 0.140751, -0.989715, 0.267678, 0.324625, -0.907163, 0.294534, 0.153996, -0.943144, 0.947295, 0.320261, 0.0, 0.267678, 0.324625, -0.907163, 0.67745, 0.735527, 0.0, 0.025025, 0.140751, 0.989715, 0.267678, 0.324625, 0.907163, 0.122868, 0.322367, 0.938597, 0.267678, 0.324625, 0.907163, 0.417219, 0.90878, 0.0, 0.122868, 0.322367, 0.938597, 0.267678, 0.324625, -0.907163, 0.417219, 0.90878, 0.0, 0.67745, 0.735527, 0.0, -0.032014, 0.067537, 0.997192, -0.03003, 0.060213, 0.997711, -0.048708, -0.304666, 0.951201, -0.019166, 0.10419, -0.994354, 0.122868, 0.322367, -0.938597, 0.025025, 0.140751, -0.989715, 0.122868, 0.322367, -0.938597, 0.648946, 0.760796, 0.0, 0.417219, 0.90878, 0.0, 0.122868, 0.322367, 0.938597, 0.648946, 0.760796, 0.0, 0.201544, 0.242134, 0.949065, 0.201544, 0.242134, -0.949065, 0.658406, 0.752617, 0.0, 0.648946, 0.760796, 0.0, 0.201544, 0.242134, 0.949065, 0.658406, 0.752617, 0.0, 0.168096, 0.213507, 0.96234, 0.168096, 0.213507, -0.96234, 0.421125, 0.90698, 0.0, 0.658406, 0.752617, 0.0, 0.168096, 0.213507, 0.96234, 0.421125, 0.90698, 0.0, 0.147313, 0.343974, 0.927335, 0.147313, 0.343974, -0.927335, 0.010956, 0.999939, 0.0, 0.421125, 0.90698, 0.0, 0.147313, 0.343974, 0.927335, 0.010956, 0.999939, 0.0, -0.008759, 0.322336, 0.946562, 0.122868, 0.322367, 0.938597, 0.201544, 0.242134, 0.949065, -0.03003, 0.060213, 0.997711, -0.03003, 0.060213, -0.997711, 0.201544, 0.242134, -0.949065, 0.122868, 0.322367, -0.938597, 0.201544, 0.242134, 0.949065, 0.168096, 0.213507, 0.96234, -0.03003, 0.060213, 0.997711, 0.201544, 0.242134, -0.949065, -0.03003, 0.060213, -0.997711, 0.168096, 0.213507, -0.96234, 0.010956, 0.999939, 0.0, -0.386303, 0.112033, -0.915525, -0.703818, 0.710349, 0.0, 0.010956, 0.999939, 0.0, -0.386303, 0.112033, 0.915525, -0.008759, 0.322336, 0.946562, -0.703818, 0.710349, 0.0, -0.386303, 0.112033, -0.915525, -0.386303, 0.112033, 0.915525, -0.008759, 0.322336, 0.946562, 0.168096, 0.213507, 0.96234, 0.147313, 0.343974, 0.927335, 0.168096, 0.213507, -0.96234, -0.008759, 0.322336, -0.946562, 0.147313, 0.343974, -0.927335, -0.599597, 0.390667, -0.698447, 0.168096, 0.213507, -0.96234, -0.03003, 0.060213, -0.997711, 0.168096, 0.213507, 0.96234, -0.599597, 0.390667, 0.698447, -0.03003, 0.060213, 0.997711, -0.048708, -0.304666, -0.951201, -0.522935, -0.818659, 0.23719, -0.522965, -0.818659, -0.23719, -0.599597, 0.390667, 0.698447, -0.630177, 0.349956, -0.693075, -0.630177, 0.349956, 0.693075, -0.630177, 0.349956, -0.693075, -0.693777, -0.267891, 0.668477, -0.630177, 0.349956, 0.693075, -0.522965, -0.818659, -0.23719, -0.693777, -0.267891, 0.668477, -0.693777, -0.267861, -0.668477, -0.599597, 0.390667, 0.698447, -0.630177, 0.349956, 0.693075, -0.03003, 0.060213, 0.997711, -0.630177, 0.349956, 0.693075, -0.693777, -0.267891, 0.668477, -0.03003, 0.060213, 0.997711, -0.03003, 0.060213, -0.997711, -0.048708, -0.304666, -0.951201, -0.693777, -0.267861, -0.668477, -0.599597, 0.390667, -0.698447, -0.03003, 0.060213, -0.997711, -0.630177, 0.349956, -0.693075, -0.630177, 0.349956, -0.693075, -0.03003, 0.060213, -0.997711, -0.693777, -0.267861, -0.668477, -0.048708, -0.304666, -0.951201, -0.522965, -0.818659, -0.23719, -0.693777, -0.267861, -0.668477, -0.522935, -0.818659, 0.23719, -0.048708, -0.304666, 0.951201, -0.693777, -0.267891, 0.668477, -0.03003, 0.060213, 0.997711, -0.693777, -0.267891, 0.668477, -0.048708, -0.304666, 0.951201, -0.962798, -0.27015, 0.0, -0.962798, -0.27015, 0.0, -0.962798, -0.27015, 0.0, -0.969085, 0.24659, 0.0, -0.969085, 0.24659, 0.0, -0.969085, 0.24659, 0.0, -0.022401, 0.0159, 0.999603, -0.021302, -0.968902, 0.246406, -0.002197, -0.950163, 0.311716, 0.097812, -0.009766, 0.995148, -0.002197, -0.950163, 0.311716, 0.079043, -0.941008, 0.328959, 0.553148, -0.029695, 0.832545, 0.132664, 0.91464, 0.381817, 0.097812, -0.009766, 0.995148, 0.097812, -0.009766, 0.995148, -0.01944, 0.942747, 0.332865, -0.022401, 0.0159, 0.999603, -0.022401, 0.0159, 0.999603, -0.086734, 0.967559, 0.237159, -0.062838, 0.013215, 0.997925, -0.105716, 0.994385, -0.004395, -0.212745, 0.974822, -0.066591, -0.128178, 0.990905, -0.040315, 0.789727, -0.054994, 0.61095, 0.596301, 0.675436, 0.43379, 0.421827, 0.818842, 0.389264, -0.014222, 0.997803, 0.064364, -0.154057, 0.987457, -0.034272, -0.105716, 0.994385, -0.004395, 0.152623, 0.9729, 0.17362, 0.015717, 0.997711, 0.065523, -0.014222, 0.997803, 0.064364, 0.421827, 0.818842, 0.389264, 0.26664, 0.937712, 0.222663, 0.152623, 0.9729, 0.17362, -0.108524, -0.991516, -0.071352, -0.03708, -0.999115, -0.018342, -0.061678, -0.997284, -0.040101, 0.181677, -0.977722, 0.104801, 0.368236, -0.87994, 0.30015, 0.094211, -0.99292, 0.071902, -0.047121, -0.998108, -0.039247, 0.000275, -0.999969, 0.005188, -0.03708, -0.999115, -0.018342, 0.555589, -0.748314, 0.362316, 0.789727, -0.054994, 0.61095, 0.368236, -0.87994, 0.30015, 0.00589, -0.999908, -0.010132, 0.094211, -0.99292, 0.071902, 0.000275, -0.999969, 0.005188, 0.000275, -0.999969, 0.005188, 0.079043, -0.941008, 0.328959, -0.002197, -0.950163, 0.311716, 0.271889, -0.91525, 0.29722, 0.789727, -0.054994, 0.61095, 0.553148, -0.029695, 0.832545, -0.03708, -0.999115, -0.018342, -0.002197, -0.950163, 0.311716, -0.021302, -0.968902, 0.246406, 0.094211, -0.99292, 0.071902, 0.271889, -0.91525, 0.29722, 0.079043, -0.941008, 0.328959, -0.061678, -0.997284, -0.040101, -0.021302, -0.968902, 0.246406, -0.06064, -0.997711, 0.029084, 0.326792, 0.876827, 0.352611, 0.152623, 0.9729, 0.17362, 0.132664, 0.91464, 0.381817, 0.132664, 0.91464, 0.381817, -0.014222, 0.997803, 0.064364, -0.01944, 0.942747, 0.332865, -0.01944, 0.942747, 0.332865, -0.105716, 0.994385, -0.004395, -0.086734, 0.967559, 0.237159, 0.789727, -0.054994, 0.61095, 0.326792, 0.876827, 0.352611, 0.553148, -0.029695, 0.832545, -0.086734, 0.967559, 0.237159, -0.128178, 0.990905, -0.040315, -0.125492, 0.99115, 0.042604, 0.553148, -0.029695, 0.832545, 0.079043, -0.941008, 0.328959, 0.271889, -0.91525, 0.29722, -0.471786, -0.040986, 0.880734, -0.086734, 0.967559, 0.237159, -0.125492, 0.99115, 0.042604, -0.021302, -0.968902, 0.246406, -0.471786, -0.040986, 0.880734, -0.06064, -0.997711, 0.029084, -0.907926, 0.0, -0.419111, -0.914212, 0.0, -0.405225, -0.907804, 0.0, -0.419385, -0.996826, 0.0, 0.079287, -0.907804, 0.0, -0.419385, -0.996612, 0.0, 0.082217, -0.996826, 0.0, 0.079287, -0.996612, 0.0, 0.082217, -0.807825, 0.0, 0.589373, -0.021302, -0.968902, -0.246406, -0.022401, 0.0159, -0.999603, -0.002197, -0.950163, -0.311716, -0.002197, -0.950163, -0.311716, 0.097812, -0.009766, -0.995148, 0.079043, -0.941008, -0.328959, 0.553148, -0.029695, -0.832545, 0.132664, 0.91464, -0.381817, 0.326792, 0.876827, -0.352611, 0.097812, -0.009766, -0.995148, -0.01944, 0.942747, -0.332865, 0.132664, 0.91464, -0.381817, -0.022401, 0.0159, -0.999603, -0.086734, 0.967559, -0.237159, -0.01944, 0.942747, -0.332865, -0.105716, 0.994385, 0.004395, -0.212745, 0.974822, 0.066591, -0.154057, 0.987457, 0.034272, 0.789727, -0.054994, -0.61095, 0.596301, 0.675436, -0.43379, 0.823573, -0.024537, -0.566637, -0.014222, 0.997803, -0.064364, -0.154057, 0.987457, 0.034272, 0.015717, 0.997711, -0.065523, 0.152623, 0.9729, -0.17362, 0.015717, 0.997711, -0.065523, 0.26664, 0.937712, -0.222663, 0.421827, 0.818842, -0.389264, 0.26664, 0.937712, -0.222663, 0.596301, 0.675436, -0.43379, -0.03708, -0.999115, 0.018342, -0.108524, -0.991516, 0.071352, -0.061678, -0.997284, 0.040101, 0.368236, -0.87994, -0.30015, 0.181677, -0.977722, -0.104801, 0.094211, -0.99292, -0.071902, 0.000275, -0.999969, -0.005188, -0.047121, -0.998108, 0.039247, -0.03708, -0.999115, 0.018342, 0.789727, -0.054994, -0.61095, 0.555589, -0.748314, -0.362316, 0.368236, -0.87994, -0.30015, 0.094211, -0.99292, -0.071902, 0.00589, -0.999908, 0.010132, 0.000275, -0.999969, -0.005188, 0.079043, -0.941008, -0.328959, 0.000275, -0.999969, -0.005188, -0.002197, -0.950163, -0.311716, 0.271889, -0.91525, -0.29722, 0.789727, -0.054994, -0.61095, 0.368236, -0.87994, -0.30015, -0.002197, -0.950163, -0.311716, -0.03708, -0.999115, 0.018342, -0.021302, -0.968902, -0.246406, 0.271889, -0.91525, -0.29722, 0.094211, -0.99292, -0.071902, 0.079043, -0.941008, -0.328959, -0.021302, -0.968902, -0.246406, -0.061678, -0.997284, 0.040101, -0.06064, -0.997711, -0.029084, 0.326792, 0.876827, -0.352611, 0.152623, 0.9729, -0.17362, 0.421827, 0.818842, -0.389264, 0.132664, 0.91464, -0.381817, -0.014222, 0.997803, -0.064364, 0.152623, 0.9729, -0.17362, -0.01944, 0.942747, -0.332865, -0.105716, 0.994385, 0.004395, -0.014222, 0.997803, -0.064364, 0.326792, 0.876827, -0.352611, 0.789727, -0.054994, -0.61095, 0.553148, -0.029695, -0.832545, -0.086734, 0.967559, -0.237159, -0.128178, 0.990905, 0.040315, -0.105716, 0.994385, 0.004395, 0.079043, -0.941008, -0.328959, 0.553148, -0.029695, -0.832545, 0.271889, -0.91525, -0.29722, -0.086734, 0.967559, -0.237159, -0.471786, -0.040986, -0.880734, -0.125492, 0.99115, -0.042604, -0.471786, -0.040986, -0.880734, -0.021302, -0.968902, -0.246406, -0.06064, -0.997711, -0.029084, -0.907926, 0.0, 0.419111, -0.914212, 0.0, 0.405225, -0.914212, 0.0, 0.405225, -0.996826, 0.0, -0.079287, -0.907804, 0.0, 0.419385, -0.907926, 0.0, 0.419111, -0.996826, 0.0, -0.079287, -0.807825, 0.0, -0.589373, -0.996612, 0.0, -0.082217, -0.006378, 0.978179, 0.207587, 0.039735, 0.873684, 0.484817, 0.041902, 0.990966, 0.127171, 0.128636, -0.923856, 0.360393, -0.055818, -0.998169, -0.022309, 0.277108, -0.910886, 0.305704, 0.057344, 0.993652, 0.096622, 0.341746, 0.834468, 0.432234, 0.455061, 0.774621, 0.4391, -0.055818, -0.998169, -0.022309, -0.10303, -0.989715, -0.098972, -0.026276, -0.998657, -0.044313, 0.455061, 0.774621, 0.4391, 0.696982, -0.076907, 0.712943, 0.741508, -0.058016, 0.668386, 0.696982, -0.076907, 0.712943, 0.391186, -0.860225, 0.326975, 0.741508, -0.058016, 0.668386, 0.277108, -0.910886, 0.305704, -0.026276, -0.998657, -0.044313, 0.391186, -0.860225, 0.326975, -0.006928, 0.998688, 0.050569, 0.041902, 0.990966, 0.127171, 0.057344, 0.993652, 0.096622, 0.039735, 0.873684, 0.484817, -0.21015, -0.04181, 0.976745, -0.028138, -0.057344, 0.997955, 0.039735, 0.873684, 0.484817, 0.336039, -0.067873, 0.93936, 0.194189, 0.847468, 0.493973, 0.336039, -0.067873, 0.93936, -0.051912, -0.928343, 0.368023, 0.128636, -0.923856, 0.360393, 0.041902, 0.990966, 0.127171, 0.194189, 0.847468, 0.493973, 0.341746, 0.834468, 0.432234, -0.051912, -0.928343, 0.368023, -0.108676, -0.990997, 0.078127, -0.055818, -0.998169, -0.022309, 0.341746, 0.834468, 0.432234, 0.336039, -0.067873, 0.93936, 0.696982, -0.076907, 0.712943, 0.336039, -0.067873, 0.93936, 0.277108, -0.910886, 0.305704, 0.696982, -0.076907, 0.712943, -0.21015, -0.04181, 0.976745, -0.051912, -0.928343, 0.368023, -0.028138, -0.057344, 0.997955, -0.006378, 0.978179, -0.207587, 0.039735, 0.873684, -0.484817, -0.21015, -0.04181, -0.976745, -0.055818, -0.998169, 0.022309, 0.128636, -0.923856, -0.360393, 0.277078, -0.910886, -0.305704, 0.057344, 0.993652, -0.096622, 0.341777, 0.834437, -0.432264, 0.041902, 0.990966, -0.127171, -0.10303, -0.989715, 0.098972, -0.055818, -0.998169, 0.022309, -0.026276, -0.998657, 0.044313, 0.455061, 0.774621, -0.4391, 0.696982, -0.076937, -0.712912, 0.341777, 0.834437, -0.432264, 0.391186, -0.860225, -0.327006, 0.696982, -0.076937, -0.712912, 0.741508, -0.058016, -0.668386, -0.026276, -0.998657, 0.044313, 0.277078, -0.910886, -0.305704, 0.391186, -0.860225, -0.327006, -0.006928, 0.998688, -0.050569, 0.041902, 0.990966, -0.127171, -0.006378, 0.978179, -0.207587, 0.039735, 0.873684, -0.484817, -0.028138, -0.057344, -0.997955, -0.21015, -0.04181, -0.976745, 0.336039, -0.067873, -0.93936, 0.039735, 0.873684, -0.484817, 0.194189, 0.847499, -0.493973, 0.336039, -0.067873, -0.93936, -0.051912, -0.928343, -0.368023, -0.028138, -0.057344, -0.997955, 0.041902, 0.990966, -0.127171, 0.194189, 0.847499, -0.493973, 0.039735, 0.873684, -0.484817, -0.108676, -0.990997, -0.078127, -0.051912, -0.928343, -0.368023, -0.055818, -0.998169, 0.022309, 0.341777, 0.834437, -0.432264, 0.336039, -0.067873, -0.93936, 0.194189, 0.847499, -0.493973, 0.277078, -0.910886, -0.305704, 0.336039, -0.067873, -0.93936, 0.696982, -0.076937, -0.712912, -0.21015, -0.04181, -0.976745, -0.028138, -0.057344, -0.997955, -0.051912, -0.928343, -0.368023, -0.920164, 0.062471, -0.386486, -0.935759, 0.061708, -0.347179, -0.919645, 0.062502, -0.387646, -0.905271, 0.063204, -0.420087, -0.919645, 0.062502, -0.387646, -0.905271, 0.063204, -0.420087, -0.920164, 0.062563, 0.386486, -0.919645, 0.062593, 0.387646, -0.935759, 0.061708, 0.347179, -0.905271, 0.063295, 0.420087, -0.919645, 0.062593, 0.387646, -0.920164, 0.062563, 0.386486, -0.032014, 0.067537, -0.997192, -0.048708, -0.304666, -0.951201, -0.03003, 0.060213, -0.997711, -0.019166, 0.10419, 0.994354, 0.025025, 0.140751, 0.989715, 0.122868, 0.322367, 0.938597, 0.947295, 0.320261, 0.0, 0.67745, 0.735527, 0.0, 0.267678, 0.324625, 0.907163, 0.025025, 0.140751, -0.989715, 0.122868, 0.322367, -0.938597, 0.267678, 0.324625, -0.907163, 0.947295, 0.320261, 0.0, 0.294534, 0.153996, -0.943144, 0.267678, 0.324625, -0.907163, 0.025025, 0.140751, 0.989715, 0.294534, 0.153996, 0.943144, 0.267678, 0.324625, 0.907163, 0.267678, 0.324625, 0.907163, 0.67745, 0.735527, 0.0, 0.417219, 0.90878, 0.0, 0.267678, 0.324625, -0.907163, 0.122868, 0.322367, -0.938597, 0.417219, 0.90878, 0.0, -0.032014, 0.067537, 0.997192, -0.019166, 0.10419, 0.994354, -0.03003, 0.060213, 0.997711, -0.019166, 0.10419, -0.994354, -0.03003, 0.060213, -0.997711, 0.122868, 0.322367, -0.938597, 0.122868, 0.322367, -0.938597, 0.201544, 0.242134, -0.949065, 0.648946, 0.760796, 0.0, 0.122868, 0.322367, 0.938597, 0.417219, 0.90878, 0.0, 0.648946, 0.760796, 0.0, 0.201544, 0.242134, -0.949065, 0.168096, 0.213507, -0.96234, 0.658406, 0.752617, 0.0, 0.201544, 0.242134, 0.949065, 0.648946, 0.760796, 0.0, 0.658406, 0.752617, 0.0, 0.168096, 0.213507, -0.96234, 0.147313, 0.343974, -0.927335, 0.421125, 0.90698, 0.0, 0.168096, 0.213507, 0.96234, 0.658406, 0.752617, 0.0, 0.421125, 0.90698, 0.0, 0.147313, 0.343974, -0.927335, -0.008759, 0.322336, -0.946562, 0.010956, 0.999939, 0.0, 0.147313, 0.343974, 0.927335, 0.421125, 0.90698, 0.0, 0.010956, 0.999939, 0.0, 0.010956, 0.999939, 0.0, -0.008759, 0.322336, -0.946562, -0.386303, 0.112033, -0.915525, 0.010956, 0.999939, 0.0, -0.703818, 0.710349, 0.0, -0.386303, 0.112033, 0.915525, -0.008759, 0.322336, 0.946562, -0.386303, 0.112033, 0.915525, 0.168096, 0.213507, 0.96234, 0.168096, 0.213507, -0.96234, -0.386303, 0.112033, -0.915525, -0.008759, 0.322336, -0.946562, -0.599597, 0.390667, -0.698447, -0.386303, 0.112033, -0.915525, 0.168096, 0.213507, -0.96234, 0.168096, 0.213507, 0.96234, -0.386303, 0.112033, 0.915525, -0.599597, 0.390667, 0.698447, -0.048708, -0.304666, -0.951201, -0.048708, -0.304666, 0.951201, -0.522935, -0.818659, 0.23719, -0.599597, 0.390667, 0.698447, -0.599597, 0.390667, -0.698447, -0.630177, 0.349956, -0.693075, -0.630177, 0.349956, -0.693075, -0.693777, -0.267861, -0.668477, -0.693777, -0.267891, 0.668477, -0.522965, -0.818659, -0.23719, -0.522935, -0.818659, 0.23719, -0.693777, -0.267891, 0.668477, -0.962798, -0.27015, 0.0, -0.962798, -0.27015, 0.0, -0.962798, -0.27015, 0.0, -0.969085, 0.24659, 0.0, -0.969085, 0.24659, 0.0, -0.969085, 0.24659, 0.0, -0.022401, 0.0159, 0.999603, -0.062838, 0.013215, 0.997925, -0.021302, -0.968902, 0.246406, 0.097812, -0.009766, 0.995148, -0.022401, 0.0159, 0.999603, -0.002197, -0.950163, 0.311716, 0.553148, -0.029695, 0.832545, 0.326792, 0.876827, 0.352611, 0.132664, 0.91464, 0.381817, 0.097812, -0.009766, 0.995148, 0.132664, 0.91464, 0.381817, -0.01944, 0.942747, 0.332865, -0.022401, 0.0159, 0.999603, -0.01944, 0.942747, 0.332865, -0.086734, 0.967559, 0.237159, -0.105716, 0.994385, -0.004395, -0.154057, 0.987457, -0.034272, -0.212745, 0.974822, -0.066591, 0.789727, -0.054994, 0.61095, 0.823573, -0.024537, 0.566637, 0.596301, 0.675436, 0.43379, -0.014222, 0.997803, 0.064364, 0.015717, 0.997711, 0.065523, -0.154057, 0.987457, -0.034272, 0.152623, 0.9729, 0.17362, 0.26664, 0.937712, 0.222663, 0.015717, 0.997711, 0.065523, 0.421827, 0.818842, 0.389264, 0.596301, 0.675436, 0.43379, 0.26664, 0.937712, 0.222663, -0.108524, -0.991516, -0.071352, -0.047121, -0.998108, -0.039247, -0.03708, -0.999115, -0.018342, 0.181677, -0.977722, 0.104801, 0.555589, -0.748314, 0.362316, 0.368236, -0.87994, 0.30015, -0.047121, -0.998108, -0.039247, 0.00589, -0.999908, -0.010132, 0.000275, -0.999969, 0.005188, 0.555589, -0.748314, 0.362316, 0.823573, -0.024537, 0.566637, 0.789727, -0.054994, 0.61095, 0.00589, -0.999908, -0.010132, 0.181677, -0.977722, 0.104801, 0.094211, -0.99292, 0.071902, 0.000275, -0.999969, 0.005188, 0.094211, -0.99292, 0.071902, 0.079043, -0.941008, 0.328959, 0.271889, -0.91525, 0.29722, 0.368236, -0.87994, 0.30015, 0.789727, -0.054994, 0.61095, -0.03708, -0.999115, -0.018342, 0.000275, -0.999969, 0.005188, -0.002197, -0.950163, 0.311716, 0.094211, -0.99292, 0.071902, 0.368236, -0.87994, 0.30015, 0.271889, -0.91525, 0.29722, -0.061678, -0.997284, -0.040101, -0.03708, -0.999115, -0.018342, -0.021302, -0.968902, 0.246406, 0.326792, 0.876827, 0.352611, 0.421827, 0.818842, 0.389264, 0.152623, 0.9729, 0.17362, 0.132664, 0.91464, 0.381817, 0.152623, 0.9729, 0.17362, -0.014222, 0.997803, 0.064364, -0.01944, 0.942747, 0.332865, -0.014222, 0.997803, 0.064364, -0.105716, 0.994385, -0.004395, 0.789727, -0.054994, 0.61095, 0.421827, 0.818842, 0.389264, 0.326792, 0.876827, 0.352611, -0.086734, 0.967559, 0.237159, -0.105716, 0.994385, -0.004395, -0.128178, 0.990905, -0.040315, 0.553148, -0.029695, 0.832545, 0.097812, -0.009766, 0.995148, 0.079043, -0.941008, 0.328959, -0.471786, -0.040986, 0.880734, -0.062838, 0.013215, 0.997925, -0.086734, 0.967559, 0.237159, -0.021302, -0.968902, 0.246406, -0.062838, 0.013215, 0.997925, -0.471786, -0.040986, 0.880734, -0.907926, 0.0, -0.419111, -0.914212, 0.0, -0.405225, -0.914212, 0.0, -0.405225, -0.996826, 0.0, 0.079287, -0.907926, 0.0, -0.419111, -0.907804, 0.0, -0.419385, -0.021302, -0.968902, -0.246406, -0.062838, 0.013215, -0.997925, -0.022401, 0.0159, -0.999603, -0.002197, -0.950163, -0.311716, -0.022401, 0.0159, -0.999603, 0.097812, -0.009766, -0.995148, 0.553148, -0.029695, -0.832545, 0.097812, -0.009766, -0.995148, 0.132664, 0.91464, -0.381817, 0.097812, -0.009766, -0.995148, -0.022401, 0.0159, -0.999603, -0.01944, 0.942747, -0.332865, -0.022401, 0.0159, -0.999603, -0.062838, 0.013215, -0.997925, -0.086734, 0.967559, -0.237159, -0.105716, 0.994385, 0.004395, -0.128178, 0.990905, 0.040315, -0.212745, 0.974822, 0.066591, 0.789727, -0.054994, -0.61095, 0.421827, 0.818842, -0.389264, 0.596301, 0.675436, -0.43379, -0.014222, 0.997803, -0.064364, -0.105716, 0.994385, 0.004395, -0.154057, 0.987457, 0.034272, 0.152623, 0.9729, -0.17362, -0.014222, 0.997803, -0.064364, 0.015717, 0.997711, -0.065523, 0.421827, 0.818842, -0.389264, 0.152623, 0.9729, -0.17362, 0.26664, 0.937712, -0.222663, -0.03708, -0.999115, 0.018342, -0.047121, -0.998108, 0.039247, -0.108524, -0.991516, 0.071352, 0.368236, -0.87994, -0.30015, 0.555589, -0.748314, -0.362316, 0.181677, -0.977722, -0.104801, 0.000275, -0.999969, -0.005188, 0.00589, -0.999908, 0.010132, -0.047121, -0.998108, 0.039247, 0.789727, -0.054994, -0.61095, 0.823573, -0.024537, -0.566637, 0.555589, -0.748314, -0.362316, 0.094211, -0.99292, -0.071902, 0.181677, -0.977722, -0.104801, 0.00589, -0.999908, 0.010132, 0.079043, -0.941008, -0.328959, 0.094211, -0.99292, -0.071902, 0.000275, -0.999969, -0.005188, 0.271889, -0.91525, -0.29722, 0.553148, -0.029695, -0.832545, 0.789727, -0.054994, -0.61095, -0.002197, -0.950163, -0.311716, 0.000275, -0.999969, -0.005188, -0.03708, -0.999115, 0.018342, 0.271889, -0.91525, -0.29722, 0.368236, -0.87994, -0.30015, 0.094211, -0.99292, -0.071902, -0.021302, -0.968902, -0.246406, -0.03708, -0.999115, 0.018342, -0.061678, -0.997284, 0.040101, 0.326792, 0.876827, -0.352611, 0.132664, 0.91464, -0.381817, 0.152623, 0.9729, -0.17362, 0.132664, 0.91464, -0.381817, -0.01944, 0.942747, -0.332865, -0.014222, 0.997803, -0.064364, -0.01944, 0.942747, -0.332865, -0.086734, 0.967559, -0.237159, -0.105716, 0.994385, 0.004395, 0.326792, 0.876827, -0.352611, 0.421827, 0.818842, -0.389264, 0.789727, -0.054994, -0.61095, -0.086734, 0.967559, -0.237159, -0.125492, 0.99115, -0.042604, -0.128178, 0.990905, 0.040315, 0.079043, -0.941008, -0.328959, 0.097812, -0.009766, -0.995148, 0.553148, -0.029695, -0.832545, -0.086734, 0.967559, -0.237159, -0.062838, 0.013215, -0.997925, -0.471786, -0.040986, -0.880734, -0.471786, -0.040986, -0.880734, -0.062838, 0.013215, -0.997925, -0.021302, -0.968902, -0.246406, -0.907926, 0.0, 0.419111, -0.907804, 0.0, 0.419385, -0.914212, 0.0, 0.405225, -0.996826, 0.0, -0.079287, -0.996612, 0.0, -0.082217, -0.907804, 0.0, 0.419385, -0.006378, 0.978179, 0.207587, -0.21015, -0.04181, 0.976745, 0.039735, 0.873684, 0.484817, 0.128636, -0.923856, 0.360393, -0.051912, -0.928343, 0.368023, -0.055818, -0.998169, -0.022309, 0.057344, 0.993652, 0.096622, 0.041902, 0.990966, 0.127171, 0.341746, 0.834468, 0.432234, -0.055818, -0.998169, -0.022309, -0.108676, -0.990997, 0.078127, -0.10303, -0.989715, -0.098972, 0.455061, 0.774621, 0.4391, 0.341746, 0.834468, 0.432234, 0.696982, -0.076907, 0.712943, 0.696982, -0.076907, 0.712943, 0.277108, -0.910886, 0.305704, 0.391186, -0.860225, 0.326975, 0.277108, -0.910886, 0.305704, -0.055818, -0.998169, -0.022309, -0.026276, -0.998657, -0.044313, -0.006928, 0.998688, 0.050569, -0.006378, 0.978179, 0.207587, 0.041902, 0.990966, 0.127171, 0.039735, 0.873684, 0.484817, -0.028138, -0.057344, 0.997955, 0.336039, -0.067873, 0.93936, 0.336039, -0.067873, 0.93936, -0.028138, -0.057344, 0.997955, -0.051912, -0.928343, 0.368023, 0.041902, 0.990966, 0.127171, 0.039735, 0.873684, 0.484817, 0.194189, 0.847468, 0.493973, -0.051912, -0.928343, 0.368023, -0.21015, -0.04181, 0.976745, -0.108676, -0.990997, 0.078127, 0.341746, 0.834468, 0.432234, 0.194189, 0.847468, 0.493973, 0.336039, -0.067873, 0.93936, 0.336039, -0.067873, 0.93936, 0.128636, -0.923856, 0.360393, 0.277108, -0.910886, 0.305704, -0.006378, 0.978179, -0.207587, 0.041902, 0.990966, -0.127171, 0.039735, 0.873684, -0.484817, -0.055818, -0.998169, 0.022309, -0.051912, -0.928343, -0.368023, 0.128636, -0.923856, -0.360393, 0.057344, 0.993652, -0.096622, 0.455061, 0.774621, -0.4391, 0.341777, 0.834437, -0.432264, -0.10303, -0.989715, 0.098972, -0.108676, -0.990997, -0.078127, -0.055818, -0.998169, 0.022309, 0.455061, 0.774621, -0.4391, 0.741508, -0.058016, -0.668386, 0.696982, -0.076937, -0.712912, 0.391186, -0.860225, -0.327006, 0.277078, -0.910886, -0.305704, 0.696982, -0.076937, -0.712912, -0.026276, -0.998657, 0.044313, -0.055818, -0.998169, 0.022309, 0.277078, -0.910886, -0.305704, -0.006928, 0.998688, -0.050569, 0.057344, 0.993652, -0.096622, 0.041902, 0.990966, -0.127171, 0.336039, -0.067873, -0.93936, -0.028138, -0.057344, -0.997955, 0.039735, 0.873684, -0.484817, 0.336039, -0.067873, -0.93936, 0.128636, -0.923856, -0.360393, -0.051912, -0.928343, -0.368023, 0.041902, 0.990966, -0.127171, 0.341777, 0.834437, -0.432264, 0.194189, 0.847499, -0.493973, -0.108676, -0.990997, -0.078127, -0.21015, -0.04181, -0.976745, -0.051912, -0.928343, -0.368023, 0.341777, 0.834437, -0.432264, 0.696982, -0.076937, -0.712912, 0.336039, -0.067873, -0.93936, 0.277078, -0.910886, -0.305704, 0.128636, -0.923856, -0.360393, 0.336039, -0.067873, -0.93936, -0.905271, 0.063204, -0.420087, -0.920164, 0.062471, -0.386486, -0.919645, 0.062502, -0.387646, -0.905271, 0.063295, 0.420087, -0.905271, 0.063295, 0.420087, -0.919645, 0.062593, 0.387646};
+
+       // set UVs for TU-95
+       static GLfloat tu_95_wings_UVs[] = {0.150421, 0.45731, 0.291652, 0.536421, 0.328317, 0.457217, 0.328307, 0.457229, 0.553173, 0.538509, 0.29165, 0.536423, 0.775642, 0.483986, 0.750855, 0.495136, 0.752193, 0.480768, 0.564668, 0.472488, 0.750858, 0.495134, 0.7522, 0.480763, 0.775685, 0.48396, 0.750858, 0.495134, 0.76394, 0.508587, 0.564616, 0.472534, 0.750855, 0.495136, 0.553173, 0.538509, 0.750855, 0.495136, 0.563188, 0.56218, 0.553173, 0.538509, 0.750858, 0.495134, 0.563216, 0.562153, 0.76394, 0.508587, 0.150408, 0.457327, 0.29165, 0.536423, 0.162862, 0.514603, 0.328317, 0.457217, 0.553296, 0.53839, 0.564668, 0.472488, 0.553296, 0.53839, 0.512874, 0.595696, 0.563216, 0.562153, 0.553173, 0.538509, 0.512853, 0.595719, 0.495235, 0.57956, 0.495263, 0.579529, 0.214627, 0.892739, 0.512874, 0.595696, 0.495235, 0.57956, 0.214595, 0.892827, 0.203293, 0.882886, 0.203303, 0.882859, 0.179935, 0.917026, 0.214627, 0.892739, 0.203293, 0.882886, 0.17992, 0.91707, 0.174372, 0.906642, 0.174377, 0.906627, 0.14813, 0.922145, 0.179935, 0.917026, 0.174372, 0.906642, 0.14813, 0.922145, 0.149325, 0.910614, 0.553173, 0.538509, 0.495235, 0.57956, 0.29165, 0.536423, 0.291652, 0.536421, 0.495263, 0.579529, 0.553296, 0.53839, 0.495235, 0.57956, 0.203293, 0.882886, 0.29165, 0.536423, 0.495263, 0.579529, 0.291652, 0.536421, 0.203303, 0.882859, 0.14813, 0.922145, 0.03426, 0.902547, 0.033022, 0.906705, 0.14813, 0.922145, 0.034252, 0.902573, 0.149325, 0.910614, 0.016634, 0.828352, 0.015022, 0.82441, 0.018255, 0.824414, 0.149325, 0.910614, 0.203293, 0.882886, 0.174372, 0.906642, 0.203303, 0.882859, 0.149324, 0.910617, 0.174377, 0.906627, 0.139491, 0.547807, 0.203303, 0.882859, 0.291652, 0.536421, 0.203293, 0.882886, 0.139489, 0.54781, 0.29165, 0.536423, 0.151973, 0.490026, 0.142176, 0.511446, 0.138458, 0.503396, 0.128216, 0.543308, 0.11335, 0.5343, 0.138462, 0.534304, 0.11335, 0.5343, 0.138879, 0.523105, 0.138462, 0.534304, 0.12142, 0.513619, 0.138879, 0.523105, 0.113759, 0.523103, 0.139489, 0.54781, 0.138462, 0.534304, 0.29165, 0.536423, 0.138462, 0.534304, 0.138879, 0.523105, 0.29165, 0.536423, 0.291652, 0.536421, 0.162863, 0.514601, 0.138883, 0.523105, 0.139491, 0.547807, 0.291652, 0.536421, 0.138467, 0.534304, 0.138467, 0.534304, 0.291652, 0.536421, 0.138883, 0.523105, 0.162863, 0.514601, 0.142177, 0.511445, 0.138883, 0.523105, 0.142176, 0.511446, 0.162862, 0.514603, 0.138879, 0.523105, 0.29165, 0.536423, 0.138879, 0.523105, 0.162862, 0.514603, 0.018216, 0.637221, 0.014976, 0.822831, 0.014976, 0.637199, 0.086953, 0.463637, 0.029686, 0.587015, 0.024022, 0.463637, 0.951911, 0.385895, 0.960389, 0.361515, 0.944491, 0.38441, 0.938933, 0.404728, 0.944491, 0.38441, 0.930744, 0.404203, 0.083805, 0.043853, 0.082851, 0.056758, 0.07462, 0.056155, 0.07462, 0.056155, 0.069424, 0.076689, 0.061999, 0.07527, 0.061999, 0.07527, 0.053258, 0.099476, 0.047298, 0.098368, 0.061286, 0.100335, 0.835644, 0.267059, 0.04506, 0.123036, 0.105995, 0.036505, 0.976751, 0.052029, 0.103421, 0.043701, 0.078298, 0.077188, 0.883241, 0.196007, 0.061286, 0.100335, 0.094635, 0.056977, 0.929658, 0.126708, 0.078298, 0.077188, 0.103421, 0.043701, 0.963372, 0.074282, 0.094635, 0.056977, 0.179401, 0.196518, 0.952436, 0.360716, 0.968247, 0.338183, 0.053404, 0.386798, 0.909876, 0.417045, 0.918908, 0.403933, 0.132974, 0.266321, 0.935614, 0.383867, 0.952436, 0.360716, 0.039597, 0.407591, 0.906989, 0.423713, 0.909876, 0.417045, 0.087281, 0.33496, 0.918908, 0.403933, 0.935614, 0.383867, 0.935614, 0.383867, 0.930744, 0.404203, 0.944491, 0.38441, 0.925578, 0.412497, 0.906989, 0.423713, 0.929432, 0.416628, 0.952436, 0.360716, 0.944491, 0.38441, 0.960389, 0.361515, 0.918908, 0.403933, 0.925578, 0.412497, 0.930744, 0.404203, 0.968247, 0.338183, 0.960389, 0.361515, 0.975137, 0.339273, 0.087773, 0.048032, 0.094635, 0.056977, 0.082851, 0.056758, 0.082851, 0.056758, 0.078298, 0.077188, 0.069424, 0.076689, 0.069424, 0.076689, 0.061286, 0.100335, 0.053258, 0.099476, 0.105995, 0.036505, 0.087773, 0.048032, 0.083805, 0.043853, 0.053258, 0.099476, 0.04506, 0.123036, 0.038135, 0.121857, 0.929432, 0.416628, 0.930744, 0.404203, 0.925578, 0.412497, 0.036701, 0.117762, 0.053258, 0.099476, 0.038135, 0.121857, 0.960389, 0.361515, 0.976572, 0.343333, 0.975137, 0.339273, 0.346513, 0.015583, 0.96457, 0.011165, 0.346479, 0.011165, 0.185944, 0.015583, 0.346479, 0.011165, 0.185911, 0.011171, 0.181807, 0.01162, 0.181747, 0.015537, 0.091242, 0.013394, 0.960386, 0.361555, 0.951907, 0.385937, 0.944487, 0.38445, 0.944487, 0.38445, 0.93893, 0.404758, 0.930737, 0.404255, 0.083816, 0.043846, 0.082877, 0.056743, 0.087788, 0.048023, 0.074643, 0.056141, 0.069454, 0.07667, 0.082877, 0.056743, 0.062023, 0.075254, 0.053292, 0.099453, 0.069454, 0.07667, 0.061297, 0.100327, 0.835673, 0.267064, 0.883243, 0.196007, 0.106001, 0.036501, 0.976794, 0.05204, 0.981897, 0.036839, 0.07831, 0.077181, 0.883243, 0.196007, 0.929666, 0.12671, 0.09465, 0.056969, 0.929666, 0.12671, 0.963455, 0.074303, 0.103433, 0.043694, 0.963455, 0.074303, 0.976794, 0.05204, 0.952435, 0.360743, 0.179438, 0.19654, 0.968248, 0.338182, 0.90987, 0.417094, 0.053353, 0.386758, 0.918901, 0.403988, 0.935607, 0.383949, 0.132982, 0.266324, 0.952435, 0.360743, 0.906982, 0.423761, 0.03958, 0.407579, 0.90987, 0.417094, 0.918901, 0.403988, 0.087271, 0.33495, 0.935607, 0.383949, 0.930737, 0.404255, 0.935607, 0.383949, 0.944487, 0.38445, 0.925569, 0.412562, 0.906982, 0.423761, 0.90987, 0.417094, 0.944487, 0.38445, 0.952435, 0.360743, 0.960386, 0.361555, 0.925569, 0.412562, 0.918901, 0.403988, 0.930737, 0.404255, 0.960386, 0.361555, 0.968248, 0.338182, 0.975136, 0.339293, 0.087788, 0.048023, 0.09465, 0.056969, 0.103433, 0.043694, 0.082877, 0.056743, 0.07831, 0.077181, 0.09465, 0.056969, 0.069454, 0.07667, 0.061297, 0.100327, 0.07831, 0.077181, 0.087788, 0.048023, 0.106001, 0.036501, 0.083816, 0.043846, 0.053292, 0.099453, 0.045069, 0.12303, 0.061297, 0.100327, 0.930737, 0.404255, 0.929428, 0.416658, 0.925569, 0.412562, 0.053292, 0.099453, 0.036692, 0.117768, 0.038144, 0.121852, 0.976571, 0.343354, 0.960386, 0.361555, 0.975136, 0.339293, 0.346616, 0.015582, 0.964691, 0.011184, 0.964851, 0.015602, 0.186045, 0.015602, 0.346544, 0.011164, 0.346616, 0.015582, 0.181814, 0.011622, 0.091242, 0.013393, 0.181776, 0.015544, 0.466346, 0.958414, 0.489881, 0.906669, 0.499761, 0.90587, 0.893014, 0.706282, 0.900879, 0.675186, 0.865151, 0.72204, 0.876834, 0.835469, 0.535353, 0.858671, 0.912275, 0.754789, 0.900879, 0.675186, 0.578583, 0.620557, 0.523154, 0.741083, 0.912275, 0.754789, 0.536379, 0.854206, 0.914267, 0.747185, 0.863862, 0.726484, 0.486605, 0.820843, 0.484117, 0.828533, 0.865151, 0.72204, 0.523154, 0.741083, 0.486605, 0.820843, 0.822537, 0.956405, 0.499761, 0.90587, 0.876834, 0.835469, 0.489881, 0.906669, 0.464489, 0.958183, 0.485015, 0.906523, 0.489881, 0.906669, 0.505225, 0.872195, 0.507193, 0.874306, 0.895085, 0.70845, 0.910746, 0.674378, 0.893014, 0.706282, 0.499761, 0.90587, 0.507193, 0.874306, 0.535353, 0.858671, 0.910746, 0.674378, 0.934609, 0.623031, 0.900879, 0.675186, 0.535353, 0.858671, 0.505225, 0.872195, 0.536379, 0.854206, 0.895085, 0.70845, 0.865151, 0.72204, 0.863862, 0.726484, 0.936449, 0.62328, 0.910746, 0.674378, 0.915419, 0.674584, 0.466344, 0.958416, 0.489875, 0.906674, 0.464488, 0.958184, 0.900873, 0.675175, 0.893, 0.706258, 0.86515, 0.722038, 0.876847, 0.835456, 0.53535, 0.858674, 0.499758, 0.905874, 0.578586, 0.620561, 0.900873, 0.675175, 0.52315, 0.741077, 0.912235, 0.75483, 0.536362, 0.854224, 0.53535, 0.858674, 0.486569, 0.82078, 0.863857, 0.726476, 0.484087, 0.828481, 0.52315, 0.741077, 0.86515, 0.722038, 0.486569, 0.82078, 0.822525, 0.956417, 0.499758, 0.905874, 0.466344, 0.958416, 0.489875, 0.906674, 0.485004, 0.906534, 0.464488, 0.958184, 0.505217, 0.872203, 0.489875, 0.906674, 0.507185, 0.874314, 0.895087, 0.708452, 0.910744, 0.674373, 0.915415, 0.674576, 0.499758, 0.905874, 0.507185, 0.874314, 0.489875, 0.906674, 0.934613, 0.623039, 0.910744, 0.674373, 0.900873, 0.675175, 0.53535, 0.858674, 0.505217, 0.872203, 0.507185, 0.874314, 0.86515, 0.722038, 0.895087, 0.708452, 0.863857, 0.726476, 0.936445, 0.623274, 0.915415, 0.674576, 0.910744, 0.674373, 0.934908, 0.600585, 0.946571, 0.603442, 0.934895, 0.606613, 0.596282, 0.600585, 0.934895, 0.606613, 0.596257, 0.606613, 0.93483, 0.600152, 0.934797, 0.60618, 0.9465, 0.603408, 0.59618, 0.600152, 0.934797, 0.60618, 0.93483, 0.600152, 0.150421, 0.45731, 0.162863, 0.514601, 0.291652, 0.536421, 0.328307, 0.457229, 0.564616, 0.472534, 0.553173, 0.538509, 0.775642, 0.483986, 0.763918, 0.508601, 0.750855, 0.495136, 0.564668, 0.472488, 0.553296, 0.53839, 0.750858, 0.495134, 0.775685, 0.48396, 0.7522, 0.480763, 0.750858, 0.495134, 0.564616, 0.472534, 0.752193, 0.480768, 0.750855, 0.495136, 0.750855, 0.495136, 0.763918, 0.508601, 0.563188, 0.56218, 0.750858, 0.495134, 0.553296, 0.53839, 0.563216, 0.562153, 0.150408, 0.457327, 0.328307, 0.457229, 0.29165, 0.536423, 0.328317, 0.457217, 0.291652, 0.536421, 0.553296, 0.53839, 0.553296, 0.53839, 0.495263, 0.579529, 0.512874, 0.595696, 0.553173, 0.538509, 0.563188, 0.56218, 0.512853, 0.595719, 0.495263, 0.579529, 0.203303, 0.882859, 0.214627, 0.892739, 0.495235, 0.57956, 0.512853, 0.595719, 0.214595, 0.892827, 0.203303, 0.882859, 0.174377, 0.906627, 0.179935, 0.917026, 0.203293, 0.882886, 0.214595, 0.892827, 0.17992, 0.91707, 0.174377, 0.906627, 0.149324, 0.910617, 0.14813, 0.922145, 0.174372, 0.906642, 0.17992, 0.91707, 0.14813, 0.922145, 0.14813, 0.922145, 0.149324, 0.910617, 0.03426, 0.902547, 0.14813, 0.922145, 0.033014, 0.906735, 0.034252, 0.902573, 0.149325, 0.910614, 0.034252, 0.902573, 0.203293, 0.882886, 0.203303, 0.882859, 0.03426, 0.902547, 0.149324, 0.910617, 0.139491, 0.547807, 0.03426, 0.902547, 0.203303, 0.882859, 0.203293, 0.882886, 0.034252, 0.902573, 0.139489, 0.54781, 0.151973, 0.490026, 0.162862, 0.514603, 0.142176, 0.511446, 0.128216, 0.543308, 0.12364, 0.5433, 0.11335, 0.5343, 0.11335, 0.5343, 0.113759, 0.523103, 0.138879, 0.523105, 0.12142, 0.513619, 0.131447, 0.51362, 0.138879, 0.523105, 0.018216, 0.637221, 0.018216, 0.822853, 0.014976, 0.822831, 0.086953, 0.463637, 0.08129, 0.587014, 0.029686, 0.587015, 0.951911, 0.385895, 0.966296, 0.362757, 0.960389, 0.361515, 0.938933, 0.404728, 0.951911, 0.385895, 0.944491, 0.38441, 0.083805, 0.043853, 0.087773, 0.048032, 0.082851, 0.056758, 0.07462, 0.056155, 0.082851, 0.056758, 0.069424, 0.076689, 0.061999, 0.07527, 0.069424, 0.076689, 0.053258, 0.099476, 0.061286, 0.100335, 0.883241, 0.196007, 0.835644, 0.267059, 0.105995, 0.036505, 0.981879, 0.036835, 0.976751, 0.052029, 0.078298, 0.077188, 0.929658, 0.126708, 0.883241, 0.196007, 0.094635, 0.056977, 0.963372, 0.074282, 0.929658, 0.126708, 0.103421, 0.043701, 0.976751, 0.052029, 0.963372, 0.074282, 0.179401, 0.196518, 0.132974, 0.266321, 0.952436, 0.360716, 0.053404, 0.386798, 0.039597, 0.407591, 0.909876, 0.417045, 0.132974, 0.266321, 0.087281, 0.33496, 0.935614, 0.383867, 0.039597, 0.407591, 0.033026, 0.422723, 0.906989, 0.423713, 0.087281, 0.33496, 0.053404, 0.386798, 0.918908, 0.403933, 0.935614, 0.383867, 0.918908, 0.403933, 0.930744, 0.404203, 0.925578, 0.412497, 0.909876, 0.417045, 0.906989, 0.423713, 0.952436, 0.360716, 0.935614, 0.383867, 0.944491, 0.38441, 0.918908, 0.403933, 0.909876, 0.417045, 0.925578, 0.412497, 0.968247, 0.338183, 0.952436, 0.360716, 0.960389, 0.361515, 0.087773, 0.048032, 0.103421, 0.043701, 0.094635, 0.056977, 0.082851, 0.056758, 0.094635, 0.056977, 0.078298, 0.077188, 0.069424, 0.076689, 0.078298, 0.077188, 0.061286, 0.100335, 0.105995, 0.036505, 0.103421, 0.043701, 0.087773, 0.048032, 0.053258, 0.099476, 0.061286, 0.100335, 0.04506, 0.123036, 0.929432, 0.416628, 0.938933, 0.404728, 0.930744, 0.404203, 0.036701, 0.117762, 0.047298, 0.098368, 0.053258, 0.099476, 0.960389, 0.361515, 0.966296, 0.362757, 0.976572, 0.343333, 0.346513, 0.015583, 0.964646, 0.015583, 0.96457, 0.011165, 0.185944, 0.015583, 0.346513, 0.015583, 0.346479, 0.011165, 0.960386, 0.361555, 0.966294, 0.362779, 0.951907, 0.385937, 0.944487, 0.38445, 0.951907, 0.385937, 0.93893, 0.404758, 0.083816, 0.043846, 0.074643, 0.056141, 0.082877, 0.056743, 0.074643, 0.056141, 0.062023, 0.075254, 0.069454, 0.07667, 0.062023, 0.075254, 0.047328, 0.098348, 0.053292, 0.099453, 0.061297, 0.100327, 0.045069, 0.12303, 0.835673, 0.267064, 0.106001, 0.036501, 0.103433, 0.043694, 0.976794, 0.05204, 0.07831, 0.077181, 0.061297, 0.100327, 0.883243, 0.196007, 0.09465, 0.056969, 0.07831, 0.077181, 0.929666, 0.12671, 0.103433, 0.043694, 0.09465, 0.056969, 0.963455, 0.074303, 0.952435, 0.360743, 0.132982, 0.266324, 0.179438, 0.19654, 0.90987, 0.417094, 0.03958, 0.407579, 0.053353, 0.386758, 0.935607, 0.383949, 0.087271, 0.33495, 0.132982, 0.266324, 0.906982, 0.423761, 0.033012, 0.422713, 0.03958, 0.407579, 0.918901, 0.403988, 0.053353, 0.386758, 0.087271, 0.33495, 0.930737, 0.404255, 0.918901, 0.403988, 0.935607, 0.383949, 0.925569, 0.412562, 0.929428, 0.416658, 0.906982, 0.423761, 0.944487, 0.38445, 0.935607, 0.383949, 0.952435, 0.360743, 0.925569, 0.412562, 0.90987, 0.417094, 0.918901, 0.403988, 0.960386, 0.361555, 0.952435, 0.360743, 0.968248, 0.338182, 0.087788, 0.048023, 0.082877, 0.056743, 0.09465, 0.056969, 0.082877, 0.056743, 0.069454, 0.07667, 0.07831, 0.077181, 0.069454, 0.07667, 0.053292, 0.099453, 0.061297, 0.100327, 0.087788, 0.048023, 0.103433, 0.043694, 0.106001, 0.036501, 0.053292, 0.099453, 0.038144, 0.121852, 0.045069, 0.12303, 0.930737, 0.404255, 0.93893, 0.404758, 0.929428, 0.416658, 0.053292, 0.099453, 0.047328, 0.098348, 0.036692, 0.117768, 0.976571, 0.343354, 0.966294, 0.362779, 0.960386, 0.361555, 0.346616, 0.015582, 0.346544, 0.011164, 0.964691, 0.011184, 0.186045, 0.015602, 0.185973, 0.01119, 0.346544, 0.011164, 0.466346, 0.958414, 0.464489, 0.958183, 0.489881, 0.906669, 0.893014, 0.706282, 0.910746, 0.674378, 0.900879, 0.675186, 0.876834, 0.835469, 0.499761, 0.90587, 0.535353, 0.858671, 0.900879, 0.675186, 0.934609, 0.623031, 0.578583, 0.620557, 0.912275, 0.754789, 0.535353, 0.858671, 0.536379, 0.854206, 0.863862, 0.726484, 0.865151, 0.72204, 0.486605, 0.820843, 0.865151, 0.72204, 0.900879, 0.675186, 0.523154, 0.741083, 0.822537, 0.956405, 0.466346, 0.958414, 0.499761, 0.90587, 0.489881, 0.906669, 0.485015, 0.906523, 0.505225, 0.872195, 0.895085, 0.70845, 0.915419, 0.674584, 0.910746, 0.674378, 0.499761, 0.90587, 0.489881, 0.906669, 0.507193, 0.874306, 0.910746, 0.674378, 0.936449, 0.62328, 0.934609, 0.623031, 0.535353, 0.858671, 0.507193, 0.874306, 0.505225, 0.872195, 0.895085, 0.70845, 0.893014, 0.706282, 0.865151, 0.72204, 0.466344, 0.958416, 0.499758, 0.905874, 0.489875, 0.906674, 0.900873, 0.675175, 0.910744, 0.674373, 0.893, 0.706258, 0.876847, 0.835456, 0.912235, 0.75483, 0.53535, 0.858674, 0.578586, 0.620561, 0.934613, 0.623039, 0.900873, 0.675175, 0.912235, 0.75483, 0.914261, 0.747191, 0.536362, 0.854224, 0.486569, 0.82078, 0.86515, 0.722038, 0.863857, 0.726476, 0.52315, 0.741077, 0.900873, 0.675175, 0.86515, 0.722038, 0.822525, 0.956417, 0.876847, 0.835456, 0.499758, 0.905874, 0.505217, 0.872203, 0.485004, 0.906534, 0.489875, 0.906674, 0.895087, 0.708452, 0.893, 0.706258, 0.910744, 0.674373, 0.499758, 0.905874, 0.53535, 0.858674, 0.507185, 0.874314, 0.934613, 0.623039, 0.936445, 0.623274, 0.910744, 0.674373, 0.53535, 0.858674, 0.536362, 0.854224, 0.505217, 0.872203, 0.86515, 0.722038, 0.893, 0.706258, 0.895087, 0.708452, 0.596282, 0.600585, 0.934908, 0.600585, 0.934895, 0.606613, 0.59618, 0.600152, 0.596136, 0.60618, 0.934797, 0.60618};
+
+       // Draw the TU-95
+
+       // activate and specify pointer to vertex array
+       glEnableClientState(GL_VERTEX_ARRAY);
+       glVertexPointer(3, GL_FLOAT, 0, tu_95_wings_vertices);
+
+       // activate normal pointers
+       glEnableClientState(GL_NORMAL_ARRAY);
+       glNormalPointer(GL_FLOAT, 0, tu_95_wings_normals);
+
+       // activate UV pointers
+       glEnableClientState(GL_TEXTURE_COORD_ARRAY);
+       glTexCoordPointer(2, GL_FLOAT, 0, tu_95_wings_UVs);
+
+       // draw the Plane
+       glDrawArrays(GL_TRIANGLES, 0, 783); //tris in blender times 3x
+
+       glDisableClientState(GL_VERTEX_ARRAY);                  // deactivate vertex arrays after drawing
+       glDisableClientState(GL_NORMAL_ARRAY);                  // deactivate normal arrays after drawing
+       glDisableClientState(GL_TEXTURE_COORD_ARRAY);           // deactivate texture arrays after drawing
+
+       // disable texture
+       glDisable(GL_TEXTURE_2D);
+       glEnd();
+
+
+
+       //------------------------------------------------------------------------------------------------------------------------------------------------------------------//
+
+
+       // Draw Propellers
+
+       // disable ligth for props and contrails
+       glDisable(GL_LIGHTING);
+       glDisable(GL_LIGHT0);
+
+       // enable and set texture
+       glBindTexture( GL_TEXTURE_2D, texture_tu_95_3 );
+       glEnable(GL_TEXTURE_2D);
+
+       // enable blending
+       glEnable(GL_BLEND);
+
+       // turn off deptmask so things will blend properly
+       glDepthMask(GL_FALSE);
+
+       // Draw propellers facing forward
+       for ( int i = 0; i < 8; i++ )
+       {
+
+               // make sure we only translate and rotate the propeller
+               glPushMatrix();
+
+               // translate the propeller in to its proper position
+               switch(i)
+               {
+               case 0:
+                       glTranslatef (4.7, -0.36, -12.15);
+                       glRotatef(r_propeller, -1, 0, 0);
+                       break;
+               case 1:
+                       glTranslatef (4.7, -0.36, 12.15);
+                       glRotatef(r_propeller, -1, 0, 0);
+                       break;
+               case 4:
+                       glTranslatef (7.9, -0.54, -6.33);
+                       glRotatef(r_propeller, -1, 0, 0);
+                       break;
+               case 5:
+                       glTranslatef (7.9, -0.54, 6.33);
+                       glRotatef(r_propeller, -1, 0, 0);
+                       break;
+               case 2:
+                       glTranslatef (5.7, -0.36, -12.15);
+                       glRotatef(r_propeller, 1, 0, 0);
+                       break;
+               case 3:
+                       glTranslatef (5.7, -0.36, 12.15);
+                       glRotatef(r_propeller, 1, 0, 0);
+                       break;
+               case 6:
+                       glTranslatef (8.9, -0.54, -6.33);
+                       glRotatef(r_propeller, 1, 0, 0);
+                       break;
+               case 7:
+                       glTranslatef (8.9, -0.54, 6.33);
+                       glRotatef(r_propeller, 1, 0, 0);
+                       break;
+               }
+
+               //draw the forward propeller facing forward
+               glBegin(GL_QUADS);
+               glNormal3f(1, 0, 0);
+               glTexCoord2f(0,1);glVertex3f(0, 2.8, -2.8);
+               glTexCoord2f(1,1);glVertex3f(0, 2.8, 2.8);
+               glTexCoord2f(1,0);glVertex3f(0, -2.8, 2.8);
+               glTexCoord2f(0,0);glVertex3f(0, -2.8, -2.8);
+
+               // done drawing the propeller
+               glEnd();
+
+               // done translating and rotating the propeller
+               glPopMatrix();
+
+       }
+
+       // Draw propellers facing rear
+       for ( int i = 0; i < 8; i++ )
+       {
+               // make sure we only translate and rotate the propeller
+               glPushMatrix();
+
+               // translate the propeller in to its proper position
+               switch(i)
+               {
+               case 7:
+                       glTranslatef (4.7, -0.36, -12.15);
+                       glRotatef(r_propeller, -1, 0, 0);
+                       break;
+               case 6:
+                       glTranslatef (4.7, -0.36, 12.15);
+                       glRotatef(r_propeller, -1, 0, 0);
+                       break;
+               case 3:
+                       glTranslatef (7.9, -0.54, -6.33);
+                       glRotatef(r_propeller, -1, 0, 0);
+                       break;
+               case 2:
+                       glTranslatef (7.9, -0.54, 6.33);
+                       glRotatef(r_propeller, -1, 0, 0);
+                       break;
+               case 5:
+                       glTranslatef (5.7, -0.36, -12.15);
+                       glRotatef(r_propeller, 1, 0, 0);
+                       break;
+               case 4:
+                       glTranslatef (5.7, -0.36, 12.15);
+                       glRotatef(r_propeller, 1, 0, 0);
+                       break;
+               case 1:
+                       glTranslatef (8.9, -0.54, -6.33);
+                       glRotatef(r_propeller, 1, 0, 0);
+                       break;
+               case 0:
+                       glTranslatef (8.9, -0.54, 6.33);
+                       glRotatef(r_propeller, 1, 0, 0);
+                       break;
+               }
+
+
+               //draw the forward propeller facing rear
+               glBegin(GL_QUADS);
+               glNormal3f(-1, 0, 0);
+               glTexCoord2f(0,0);glVertex3f(0, -2.8, -2.8);
+               glTexCoord2f(1,0);glVertex3f(0, -2.8, 2.8);
+               glTexCoord2f(1,1);glVertex3f(0, 2.8, 2.8);
+               glTexCoord2f(0,1);glVertex3f(0, 2.8, -2.8);
+
+               // done drawing the propeller
+               glEnd();
+
+               // done translating and rotating the propeller
+               glPopMatrix();
+       }
+
+       //------------------------------------------------------------------------------------------------------------------------------------------------------------------//
+
+       // Code for drawing contrails for all engines
+
+       // set texture
+       glBindTexture( GL_TEXTURE_2D, texture_contrail );
+
+       // loop for drawing the 50 smoke puffs per contrail
+       for (int i = 0; i < 50; ++i)
+       {
+               // Loop 4 times, once per engine so all of them have contrails
+               for (int k = 0; k < 4; ++k)
+               {
+
+                       glPushMatrix();                                         // save the matrix so we make sure we dont rotate anything but parts of the pin.
+                       glTranslatef(0  - contrail_x[i] - 25 , 0 , 0);          // plot the contrails puffs using the X acoordinate data from the ary.
+
+                       // render the contrails for every turboprop engine
+                       switch(k)
+                       {
+                       case 0: glTranslatef (4.7, -0.36, -12.15); break;       // Engine 1
+                       case 1: glTranslatef (8.7, -0.54, -6.33); break;        // Engine 2
+                       case 2: glTranslatef (8.7, -0.54, 6.33); break;         // Engine 3
+                       case 3: glTranslatef (4.7, -0.36, 12.15); break;        // Engine 4
+
+                       }
+                       // billboard code borrowed from example code becuse my Basic4GL code did not backport well
+                       // get the current modelview matrix
+                       glGetFloatv(GL_MODELVIEW_MATRIX , modelview);
+                       // undo all rotations
+                       // beware all scaling is lost as well
+                       {
+                               for( int i=0; i<3; i++ )
+                                       for( int j=0; j<3; j++ )
+                                       {       // extra indent due to non standard implementation in VC6
+                                               if ( i==j )
+                                                       modelview[i*4+j] = 1.0;
+                                               else
+                                                       modelview[i*4+j] = 0.0;
+                                       }
+                       }
+                       // set the modelview with no rotations and scaling
+                       glLoadMatrixf(modelview);
+                       // end of billboard code
+
+                       // Exapnd puffs for contrail and fade them in
+                       if (contrail_x[i] < 100)
+                       {
+                               glScalef(1 + (contrail_x[i] * 0.01),1 + (contrail_x[i] * 0.01),1 + (contrail_x[i] * 0.01));     // scale up contrail puffs
+                               glColor4f(1,1,1,(contrail_x[i] * 0.01));                                                        // fade contrail in
+                       }
+                       else if (( contrail_x[i] > 100 ) && ( contrail_x[i] < 125 ))
+                       {
+                               glScalef(2, 2, 2);      // maximum and fixed size of puffs
+                               glColor4f(1,1,1,1);     // contrails fully visible
+                       }
+                       else
+                       {
+                               glScalef(2, 2, 2);                                      // maximum and fixed size of puffs
+                               glColor4f(1,1,1, 1 - ((contrail_x[i]) -124 ) / 10 );    // fade contrails out
+                       }
+
+                       // draw the smoke puffs for the contrail
+                       glBegin(GL_QUADS);
+                       glNormal3f(0, 0, 1);
+                       glTexCoord2f(0,1);glVertex3f(-1, -1, 0);
+                       glTexCoord2f(1,1);glVertex3f(1, -1, 0);
+                       glTexCoord2f(1,0);glVertex3f(1, 1, 0);
+                       glTexCoord2f(0,0);glVertex3f(-1, 1, 0);
+
+                       // done drawing the contrails
+                       glEnd();
+
+                       glPopMatrix();                                  // revert to the previous matrix
+                       if (contrail_x[i] >= 150)contrail_x[i] =  contrail_x[i] - 150;  // move smoke puffs from the end of the contrail to the begining
+
+                       //restor colors and alpha
+                       glColor4f(1,1,1, 1);
+               }
+       }
+
+       // turn on depthmask after blending propes and contrails properly
+       glDepthMask(GL_TRUE);
+
+       // disable propeller texture
+       glDisable(GL_TEXTURE_2D);
+
+       // disable blending
+       glDisable (GL_BLEND);
+
+       // enable ligth
+       glEnable(GL_LIGHTING);
+       glEnable(GL_LIGHT0);
+
+}
+
+
diff --git a/tu_95.h b/tu_95.h
new file mode 100644 (file)
index 0000000..8020b92
--- /dev/null
+++ b/tu_95.h
@@ -0,0 +1,16 @@
+#ifndef TU_95_H_
+#define TU_95_H_
+
+// License information.
+// The Software "SAF BENCH" was written by Patrik.A, also known as Nitton Attiofyra
+// on YouTube. (https://www.youtube.com/@NittonAttiofyra)
+
+// The software is released in to the Public Domain and comes with no warranty and is used
+// at your own risk!
+
+void textures_tu_95();                 // used to load textures
+void tu_95();                                  // draws all the geometry of the Plane 
+extern GLfloat r_propeller;            // rotate forward propellers
+extern GLfloat contrail_x [];  // contrails, TU-95
+
+#endif /* TU_95_H_ */
diff --git a/wglext.h b/wglext.h
new file mode 100644 (file)
index 0000000..453c195
--- /dev/null
+++ b/wglext.h
@@ -0,0 +1,845 @@
+#ifndef __wgl_wglext_h_
+#define __wgl_wglext_h_ 1
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+/*
+** Copyright 2013-2020 The Khronos Group Inc.
+** SPDX-License-Identifier: MIT
+**
+** This header is generated from the Khronos OpenGL / OpenGL ES XML
+** API Registry. The current version of the Registry, generator scripts
+** used to make the header, and the header can be found at
+**   https://github.com/KhronosGroup/OpenGL-Registry
+*/
+
+#if defined(_WIN32) && !defined(APIENTRY) && !defined(__CYGWIN__) && !defined(__SCITECH_SNAP__)
+#define WIN32_LEAN_AND_MEAN 1
+#include <windows.h>
+#endif
+
+#define WGL_WGLEXT_VERSION 20231018
+
+/* Generated C header for:
+ * API: wgl
+ * Versions considered: .*
+ * Versions emitted: _nomatch_^
+ * Default extensions included: wgl
+ * Additional extensions included: _nomatch_^
+ * Extensions removed: _nomatch_^
+ */
+
+#ifndef WGL_ARB_buffer_region
+#define WGL_ARB_buffer_region 1
+#define WGL_FRONT_COLOR_BUFFER_BIT_ARB    0x00000001
+#define WGL_BACK_COLOR_BUFFER_BIT_ARB     0x00000002
+#define WGL_DEPTH_BUFFER_BIT_ARB          0x00000004
+#define WGL_STENCIL_BUFFER_BIT_ARB        0x00000008
+typedef HANDLE (WINAPI * PFNWGLCREATEBUFFERREGIONARBPROC) (HDC hDC, int iLayerPlane, UINT uType);
+typedef VOID (WINAPI * PFNWGLDELETEBUFFERREGIONARBPROC) (HANDLE hRegion);
+typedef BOOL (WINAPI * PFNWGLSAVEBUFFERREGIONARBPROC) (HANDLE hRegion, int x, int y, int width, int height);
+typedef BOOL (WINAPI * PFNWGLRESTOREBUFFERREGIONARBPROC) (HANDLE hRegion, int x, int y, int width, int height, int xSrc, int ySrc);
+#ifdef WGL_WGLEXT_PROTOTYPES
+HANDLE WINAPI wglCreateBufferRegionARB (HDC hDC, int iLayerPlane, UINT uType);
+VOID WINAPI wglDeleteBufferRegionARB (HANDLE hRegion);
+BOOL WINAPI wglSaveBufferRegionARB (HANDLE hRegion, int x, int y, int width, int height);
+BOOL WINAPI wglRestoreBufferRegionARB (HANDLE hRegion, int x, int y, int width, int height, int xSrc, int ySrc);
+#endif
+#endif /* WGL_ARB_buffer_region */
+
+#ifndef WGL_ARB_context_flush_control
+#define WGL_ARB_context_flush_control 1
+#define WGL_CONTEXT_RELEASE_BEHAVIOR_ARB  0x2097
+#define WGL_CONTEXT_RELEASE_BEHAVIOR_NONE_ARB 0
+#define WGL_CONTEXT_RELEASE_BEHAVIOR_FLUSH_ARB 0x2098
+#endif /* WGL_ARB_context_flush_control */
+
+#ifndef WGL_ARB_create_context
+#define WGL_ARB_create_context 1
+#define WGL_CONTEXT_DEBUG_BIT_ARB         0x00000001
+#define WGL_CONTEXT_FORWARD_COMPATIBLE_BIT_ARB 0x00000002
+#define WGL_CONTEXT_MAJOR_VERSION_ARB     0x2091
+#define WGL_CONTEXT_MINOR_VERSION_ARB     0x2092
+#define WGL_CONTEXT_LAYER_PLANE_ARB       0x2093
+#define WGL_CONTEXT_FLAGS_ARB             0x2094
+#define ERROR_INVALID_VERSION_ARB         0x2095
+typedef HGLRC (WINAPI * PFNWGLCREATECONTEXTATTRIBSARBPROC) (HDC hDC, HGLRC hShareContext, const int *attribList);
+#ifdef WGL_WGLEXT_PROTOTYPES
+HGLRC WINAPI wglCreateContextAttribsARB (HDC hDC, HGLRC hShareContext, const int *attribList);
+#endif
+#endif /* WGL_ARB_create_context */
+
+#ifndef WGL_ARB_create_context_no_error
+#define WGL_ARB_create_context_no_error 1
+#define WGL_CONTEXT_OPENGL_NO_ERROR_ARB   0x31B3
+#endif /* WGL_ARB_create_context_no_error */
+
+#ifndef WGL_ARB_create_context_profile
+#define WGL_ARB_create_context_profile 1
+#define WGL_CONTEXT_PROFILE_MASK_ARB      0x9126
+#define WGL_CONTEXT_CORE_PROFILE_BIT_ARB  0x00000001
+#define WGL_CONTEXT_COMPATIBILITY_PROFILE_BIT_ARB 0x00000002
+#define ERROR_INVALID_PROFILE_ARB         0x2096
+#endif /* WGL_ARB_create_context_profile */
+
+#ifndef WGL_ARB_create_context_robustness
+#define WGL_ARB_create_context_robustness 1
+#define WGL_CONTEXT_ROBUST_ACCESS_BIT_ARB 0x00000004
+#define WGL_LOSE_CONTEXT_ON_RESET_ARB     0x8252
+#define WGL_CONTEXT_RESET_NOTIFICATION_STRATEGY_ARB 0x8256
+#define WGL_NO_RESET_NOTIFICATION_ARB     0x8261
+#endif /* WGL_ARB_create_context_robustness */
+
+#ifndef WGL_ARB_extensions_string
+#define WGL_ARB_extensions_string 1
+typedef const char *(WINAPI * PFNWGLGETEXTENSIONSSTRINGARBPROC) (HDC hdc);
+#ifdef WGL_WGLEXT_PROTOTYPES
+const char *WINAPI wglGetExtensionsStringARB (HDC hdc);
+#endif
+#endif /* WGL_ARB_extensions_string */
+
+#ifndef WGL_ARB_framebuffer_sRGB
+#define WGL_ARB_framebuffer_sRGB 1
+#define WGL_FRAMEBUFFER_SRGB_CAPABLE_ARB  0x20A9
+#endif /* WGL_ARB_framebuffer_sRGB */
+
+#ifndef WGL_ARB_make_current_read
+#define WGL_ARB_make_current_read 1
+#define ERROR_INVALID_PIXEL_TYPE_ARB      0x2043
+#define ERROR_INCOMPATIBLE_DEVICE_CONTEXTS_ARB 0x2054
+typedef BOOL (WINAPI * PFNWGLMAKECONTEXTCURRENTARBPROC) (HDC hDrawDC, HDC hReadDC, HGLRC hglrc);
+typedef HDC (WINAPI * PFNWGLGETCURRENTREADDCARBPROC) (void);
+#ifdef WGL_WGLEXT_PROTOTYPES
+BOOL WINAPI wglMakeContextCurrentARB (HDC hDrawDC, HDC hReadDC, HGLRC hglrc);
+HDC WINAPI wglGetCurrentReadDCARB (void);
+#endif
+#endif /* WGL_ARB_make_current_read */
+
+#ifndef WGL_ARB_multisample
+#define WGL_ARB_multisample 1
+#define WGL_SAMPLE_BUFFERS_ARB            0x2041
+#define WGL_SAMPLES_ARB                   0x2042
+#endif /* WGL_ARB_multisample */
+
+#ifndef WGL_ARB_pbuffer
+#define WGL_ARB_pbuffer 1
+DECLARE_HANDLE(HPBUFFERARB);
+#define WGL_DRAW_TO_PBUFFER_ARB           0x202D
+#define WGL_MAX_PBUFFER_PIXELS_ARB        0x202E
+#define WGL_MAX_PBUFFER_WIDTH_ARB         0x202F
+#define WGL_MAX_PBUFFER_HEIGHT_ARB        0x2030
+#define WGL_PBUFFER_LARGEST_ARB           0x2033
+#define WGL_PBUFFER_WIDTH_ARB             0x2034
+#define WGL_PBUFFER_HEIGHT_ARB            0x2035
+#define WGL_PBUFFER_LOST_ARB              0x2036
+typedef HPBUFFERARB (WINAPI * PFNWGLCREATEPBUFFERARBPROC) (HDC hDC, int iPixelFormat, int iWidth, int iHeight, const int *piAttribList);
+typedef HDC (WINAPI * PFNWGLGETPBUFFERDCARBPROC) (HPBUFFERARB hPbuffer);
+typedef int (WINAPI * PFNWGLRELEASEPBUFFERDCARBPROC) (HPBUFFERARB hPbuffer, HDC hDC);
+typedef BOOL (WINAPI * PFNWGLDESTROYPBUFFERARBPROC) (HPBUFFERARB hPbuffer);
+typedef BOOL (WINAPI * PFNWGLQUERYPBUFFERARBPROC) (HPBUFFERARB hPbuffer, int iAttribute, int *piValue);
+#ifdef WGL_WGLEXT_PROTOTYPES
+HPBUFFERARB WINAPI wglCreatePbufferARB (HDC hDC, int iPixelFormat, int iWidth, int iHeight, const int *piAttribList);
+HDC WINAPI wglGetPbufferDCARB (HPBUFFERARB hPbuffer);
+int WINAPI wglReleasePbufferDCARB (HPBUFFERARB hPbuffer, HDC hDC);
+BOOL WINAPI wglDestroyPbufferARB (HPBUFFERARB hPbuffer);
+BOOL WINAPI wglQueryPbufferARB (HPBUFFERARB hPbuffer, int iAttribute, int *piValue);
+#endif
+#endif /* WGL_ARB_pbuffer */
+
+#ifndef WGL_ARB_pixel_format
+#define WGL_ARB_pixel_format 1
+#define WGL_NUMBER_PIXEL_FORMATS_ARB      0x2000
+#define WGL_DRAW_TO_WINDOW_ARB            0x2001
+#define WGL_DRAW_TO_BITMAP_ARB            0x2002
+#define WGL_ACCELERATION_ARB              0x2003
+#define WGL_NEED_PALETTE_ARB              0x2004
+#define WGL_NEED_SYSTEM_PALETTE_ARB       0x2005
+#define WGL_SWAP_LAYER_BUFFERS_ARB        0x2006
+#define WGL_SWAP_METHOD_ARB               0x2007
+#define WGL_NUMBER_OVERLAYS_ARB           0x2008
+#define WGL_NUMBER_UNDERLAYS_ARB          0x2009
+#define WGL_TRANSPARENT_ARB               0x200A
+#define WGL_TRANSPARENT_RED_VALUE_ARB     0x2037
+#define WGL_TRANSPARENT_GREEN_VALUE_ARB   0x2038
+#define WGL_TRANSPARENT_BLUE_VALUE_ARB    0x2039
+#define WGL_TRANSPARENT_ALPHA_VALUE_ARB   0x203A
+#define WGL_TRANSPARENT_INDEX_VALUE_ARB   0x203B
+#define WGL_SHARE_DEPTH_ARB               0x200C
+#define WGL_SHARE_STENCIL_ARB             0x200D
+#define WGL_SHARE_ACCUM_ARB               0x200E
+#define WGL_SUPPORT_GDI_ARB               0x200F
+#define WGL_SUPPORT_OPENGL_ARB            0x2010
+#define WGL_DOUBLE_BUFFER_ARB             0x2011
+#define WGL_STEREO_ARB                    0x2012
+#define WGL_PIXEL_TYPE_ARB                0x2013
+#define WGL_COLOR_BITS_ARB                0x2014
+#define WGL_RED_BITS_ARB                  0x2015
+#define WGL_RED_SHIFT_ARB                 0x2016
+#define WGL_GREEN_BITS_ARB                0x2017
+#define WGL_GREEN_SHIFT_ARB               0x2018
+#define WGL_BLUE_BITS_ARB                 0x2019
+#define WGL_BLUE_SHIFT_ARB                0x201A
+#define WGL_ALPHA_BITS_ARB                0x201B
+#define WGL_ALPHA_SHIFT_ARB               0x201C
+#define WGL_ACCUM_BITS_ARB                0x201D
+#define WGL_ACCUM_RED_BITS_ARB            0x201E
+#define WGL_ACCUM_GREEN_BITS_ARB          0x201F
+#define WGL_ACCUM_BLUE_BITS_ARB           0x2020
+#define WGL_ACCUM_ALPHA_BITS_ARB          0x2021
+#define WGL_DEPTH_BITS_ARB                0x2022
+#define WGL_STENCIL_BITS_ARB              0x2023
+#define WGL_AUX_BUFFERS_ARB               0x2024
+#define WGL_NO_ACCELERATION_ARB           0x2025
+#define WGL_GENERIC_ACCELERATION_ARB      0x2026
+#define WGL_FULL_ACCELERATION_ARB         0x2027
+#define WGL_SWAP_EXCHANGE_ARB             0x2028
+#define WGL_SWAP_COPY_ARB                 0x2029
+#define WGL_SWAP_UNDEFINED_ARB            0x202A
+#define WGL_TYPE_RGBA_ARB                 0x202B
+#define WGL_TYPE_COLORINDEX_ARB           0x202C
+typedef BOOL (WINAPI * PFNWGLGETPIXELFORMATATTRIBIVARBPROC) (HDC hdc, int iPixelFormat, int iLayerPlane, UINT nAttributes, const int *piAttributes, int *piValues);
+typedef BOOL (WINAPI * PFNWGLGETPIXELFORMATATTRIBFVARBPROC) (HDC hdc, int iPixelFormat, int iLayerPlane, UINT nAttributes, const int *piAttributes, FLOAT *pfValues);
+typedef BOOL (WINAPI * PFNWGLCHOOSEPIXELFORMATARBPROC) (HDC hdc, const int *piAttribIList, const FLOAT *pfAttribFList, UINT nMaxFormats, int *piFormats, UINT *nNumFormats);
+#ifdef WGL_WGLEXT_PROTOTYPES
+BOOL WINAPI wglGetPixelFormatAttribivARB (HDC hdc, int iPixelFormat, int iLayerPlane, UINT nAttributes, const int *piAttributes, int *piValues);
+BOOL WINAPI wglGetPixelFormatAttribfvARB (HDC hdc, int iPixelFormat, int iLayerPlane, UINT nAttributes, const int *piAttributes, FLOAT *pfValues);
+BOOL WINAPI wglChoosePixelFormatARB (HDC hdc, const int *piAttribIList, const FLOAT *pfAttribFList, UINT nMaxFormats, int *piFormats, UINT *nNumFormats);
+#endif
+#endif /* WGL_ARB_pixel_format */
+
+#ifndef WGL_ARB_pixel_format_float
+#define WGL_ARB_pixel_format_float 1
+#define WGL_TYPE_RGBA_FLOAT_ARB           0x21A0
+#endif /* WGL_ARB_pixel_format_float */
+
+#ifndef WGL_ARB_render_texture
+#define WGL_ARB_render_texture 1
+#define WGL_BIND_TO_TEXTURE_RGB_ARB       0x2070
+#define WGL_BIND_TO_TEXTURE_RGBA_ARB      0x2071
+#define WGL_TEXTURE_FORMAT_ARB            0x2072
+#define WGL_TEXTURE_TARGET_ARB            0x2073
+#define WGL_MIPMAP_TEXTURE_ARB            0x2074
+#define WGL_TEXTURE_RGB_ARB               0x2075
+#define WGL_TEXTURE_RGBA_ARB              0x2076
+#define WGL_NO_TEXTURE_ARB                0x2077
+#define WGL_TEXTURE_CUBE_MAP_ARB          0x2078
+#define WGL_TEXTURE_1D_ARB                0x2079
+#define WGL_TEXTURE_2D_ARB                0x207A
+#define WGL_MIPMAP_LEVEL_ARB              0x207B
+#define WGL_CUBE_MAP_FACE_ARB             0x207C
+#define WGL_TEXTURE_CUBE_MAP_POSITIVE_X_ARB 0x207D
+#define WGL_TEXTURE_CUBE_MAP_NEGATIVE_X_ARB 0x207E
+#define WGL_TEXTURE_CUBE_MAP_POSITIVE_Y_ARB 0x207F
+#define WGL_TEXTURE_CUBE_MAP_NEGATIVE_Y_ARB 0x2080
+#define WGL_TEXTURE_CUBE_MAP_POSITIVE_Z_ARB 0x2081
+#define WGL_TEXTURE_CUBE_MAP_NEGATIVE_Z_ARB 0x2082
+#define WGL_FRONT_LEFT_ARB                0x2083
+#define WGL_FRONT_RIGHT_ARB               0x2084
+#define WGL_BACK_LEFT_ARB                 0x2085
+#define WGL_BACK_RIGHT_ARB                0x2086
+#define WGL_AUX0_ARB                      0x2087
+#define WGL_AUX1_ARB                      0x2088
+#define WGL_AUX2_ARB                      0x2089
+#define WGL_AUX3_ARB                      0x208A
+#define WGL_AUX4_ARB                      0x208B
+#define WGL_AUX5_ARB                      0x208C
+#define WGL_AUX6_ARB                      0x208D
+#define WGL_AUX7_ARB                      0x208E
+#define WGL_AUX8_ARB                      0x208F
+#define WGL_AUX9_ARB                      0x2090
+typedef BOOL (WINAPI * PFNWGLBINDTEXIMAGEARBPROC) (HPBUFFERARB hPbuffer, int iBuffer);
+typedef BOOL (WINAPI * PFNWGLRELEASETEXIMAGEARBPROC) (HPBUFFERARB hPbuffer, int iBuffer);
+typedef BOOL (WINAPI * PFNWGLSETPBUFFERATTRIBARBPROC) (HPBUFFERARB hPbuffer, const int *piAttribList);
+#ifdef WGL_WGLEXT_PROTOTYPES
+BOOL WINAPI wglBindTexImageARB (HPBUFFERARB hPbuffer, int iBuffer);
+BOOL WINAPI wglReleaseTexImageARB (HPBUFFERARB hPbuffer, int iBuffer);
+BOOL WINAPI wglSetPbufferAttribARB (HPBUFFERARB hPbuffer, const int *piAttribList);
+#endif
+#endif /* WGL_ARB_render_texture */
+
+#ifndef WGL_ARB_robustness_application_isolation
+#define WGL_ARB_robustness_application_isolation 1
+#define WGL_CONTEXT_RESET_ISOLATION_BIT_ARB 0x00000008
+#endif /* WGL_ARB_robustness_application_isolation */
+
+#ifndef WGL_ARB_robustness_share_group_isolation
+#define WGL_ARB_robustness_share_group_isolation 1
+#endif /* WGL_ARB_robustness_share_group_isolation */
+
+#ifndef WGL_3DFX_multisample
+#define WGL_3DFX_multisample 1
+#define WGL_SAMPLE_BUFFERS_3DFX           0x2060
+#define WGL_SAMPLES_3DFX                  0x2061
+#endif /* WGL_3DFX_multisample */
+
+#ifndef WGL_3DL_stereo_control
+#define WGL_3DL_stereo_control 1
+#define WGL_STEREO_EMITTER_ENABLE_3DL     0x2055
+#define WGL_STEREO_EMITTER_DISABLE_3DL    0x2056
+#define WGL_STEREO_POLARITY_NORMAL_3DL    0x2057
+#define WGL_STEREO_POLARITY_INVERT_3DL    0x2058
+typedef BOOL (WINAPI * PFNWGLSETSTEREOEMITTERSTATE3DLPROC) (HDC hDC, UINT uState);
+#ifdef WGL_WGLEXT_PROTOTYPES
+BOOL WINAPI wglSetStereoEmitterState3DL (HDC hDC, UINT uState);
+#endif
+#endif /* WGL_3DL_stereo_control */
+
+#ifndef WGL_AMD_gpu_association
+#define WGL_AMD_gpu_association 1
+#define WGL_GPU_VENDOR_AMD                0x1F00
+#define WGL_GPU_RENDERER_STRING_AMD       0x1F01
+#define WGL_GPU_OPENGL_VERSION_STRING_AMD 0x1F02
+#define WGL_GPU_FASTEST_TARGET_GPUS_AMD   0x21A2
+#define WGL_GPU_RAM_AMD                   0x21A3
+#define WGL_GPU_CLOCK_AMD                 0x21A4
+#define WGL_GPU_NUM_PIPES_AMD             0x21A5
+#define WGL_GPU_NUM_SIMD_AMD              0x21A6
+#define WGL_GPU_NUM_RB_AMD                0x21A7
+#define WGL_GPU_NUM_SPI_AMD               0x21A8
+typedef UINT (WINAPI * PFNWGLGETGPUIDSAMDPROC) (UINT maxCount, UINT *ids);
+typedef INT (WINAPI * PFNWGLGETGPUINFOAMDPROC) (UINT id, INT property, GLenum dataType, UINT size, void *data);
+typedef UINT (WINAPI * PFNWGLGETCONTEXTGPUIDAMDPROC) (HGLRC hglrc);
+typedef HGLRC (WINAPI * PFNWGLCREATEASSOCIATEDCONTEXTAMDPROC) (UINT id);
+typedef HGLRC (WINAPI * PFNWGLCREATEASSOCIATEDCONTEXTATTRIBSAMDPROC) (UINT id, HGLRC hShareContext, const int *attribList);
+typedef BOOL (WINAPI * PFNWGLDELETEASSOCIATEDCONTEXTAMDPROC) (HGLRC hglrc);
+typedef BOOL (WINAPI * PFNWGLMAKEASSOCIATEDCONTEXTCURRENTAMDPROC) (HGLRC hglrc);
+typedef HGLRC (WINAPI * PFNWGLGETCURRENTASSOCIATEDCONTEXTAMDPROC) (void);
+typedef VOID (WINAPI * PFNWGLBLITCONTEXTFRAMEBUFFERAMDPROC) (HGLRC dstCtx, GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter);
+#ifdef WGL_WGLEXT_PROTOTYPES
+UINT WINAPI wglGetGPUIDsAMD (UINT maxCount, UINT *ids);
+INT WINAPI wglGetGPUInfoAMD (UINT id, INT property, GLenum dataType, UINT size, void *data);
+UINT WINAPI wglGetContextGPUIDAMD (HGLRC hglrc);
+HGLRC WINAPI wglCreateAssociatedContextAMD (UINT id);
+HGLRC WINAPI wglCreateAssociatedContextAttribsAMD (UINT id, HGLRC hShareContext, const int *attribList);
+BOOL WINAPI wglDeleteAssociatedContextAMD (HGLRC hglrc);
+BOOL WINAPI wglMakeAssociatedContextCurrentAMD (HGLRC hglrc);
+HGLRC WINAPI wglGetCurrentAssociatedContextAMD (void);
+VOID WINAPI wglBlitContextFramebufferAMD (HGLRC dstCtx, GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter);
+#endif
+#endif /* WGL_AMD_gpu_association */
+
+#ifndef WGL_ATI_pixel_format_float
+#define WGL_ATI_pixel_format_float 1
+#define WGL_TYPE_RGBA_FLOAT_ATI           0x21A0
+#endif /* WGL_ATI_pixel_format_float */
+
+#ifndef WGL_ATI_render_texture_rectangle
+#define WGL_ATI_render_texture_rectangle 1
+#define WGL_TEXTURE_RECTANGLE_ATI         0x21A5
+#endif /* WGL_ATI_render_texture_rectangle */
+
+#ifndef WGL_EXT_colorspace
+#define WGL_EXT_colorspace 1
+#define WGL_COLORSPACE_EXT                0x309D
+#define WGL_COLORSPACE_SRGB_EXT           0x3089
+#define WGL_COLORSPACE_LINEAR_EXT         0x308A
+#endif /* WGL_EXT_colorspace */
+
+#ifndef WGL_EXT_create_context_es2_profile
+#define WGL_EXT_create_context_es2_profile 1
+#define WGL_CONTEXT_ES2_PROFILE_BIT_EXT   0x00000004
+#endif /* WGL_EXT_create_context_es2_profile */
+
+#ifndef WGL_EXT_create_context_es_profile
+#define WGL_EXT_create_context_es_profile 1
+#define WGL_CONTEXT_ES_PROFILE_BIT_EXT    0x00000004
+#endif /* WGL_EXT_create_context_es_profile */
+
+#ifndef WGL_EXT_depth_float
+#define WGL_EXT_depth_float 1
+#define WGL_DEPTH_FLOAT_EXT               0x2040
+#endif /* WGL_EXT_depth_float */
+
+#ifndef WGL_EXT_display_color_table
+#define WGL_EXT_display_color_table 1
+typedef GLboolean (WINAPI * PFNWGLCREATEDISPLAYCOLORTABLEEXTPROC) (GLushort id);
+typedef GLboolean (WINAPI * PFNWGLLOADDISPLAYCOLORTABLEEXTPROC) (const GLushort *table, GLuint length);
+typedef GLboolean (WINAPI * PFNWGLBINDDISPLAYCOLORTABLEEXTPROC) (GLushort id);
+typedef VOID (WINAPI * PFNWGLDESTROYDISPLAYCOLORTABLEEXTPROC) (GLushort id);
+#ifdef WGL_WGLEXT_PROTOTYPES
+GLboolean WINAPI wglCreateDisplayColorTableEXT (GLushort id);
+GLboolean WINAPI wglLoadDisplayColorTableEXT (const GLushort *table, GLuint length);
+GLboolean WINAPI wglBindDisplayColorTableEXT (GLushort id);
+VOID WINAPI wglDestroyDisplayColorTableEXT (GLushort id);
+#endif
+#endif /* WGL_EXT_display_color_table */
+
+#ifndef WGL_EXT_extensions_string
+#define WGL_EXT_extensions_string 1
+typedef const char *(WINAPI * PFNWGLGETEXTENSIONSSTRINGEXTPROC) (void);
+#ifdef WGL_WGLEXT_PROTOTYPES
+const char *WINAPI wglGetExtensionsStringEXT (void);
+#endif
+#endif /* WGL_EXT_extensions_string */
+
+#ifndef WGL_EXT_framebuffer_sRGB
+#define WGL_EXT_framebuffer_sRGB 1
+#define WGL_FRAMEBUFFER_SRGB_CAPABLE_EXT  0x20A9
+#endif /* WGL_EXT_framebuffer_sRGB */
+
+#ifndef WGL_EXT_make_current_read
+#define WGL_EXT_make_current_read 1
+#define ERROR_INVALID_PIXEL_TYPE_EXT      0x2043
+typedef BOOL (WINAPI * PFNWGLMAKECONTEXTCURRENTEXTPROC) (HDC hDrawDC, HDC hReadDC, HGLRC hglrc);
+typedef HDC (WINAPI * PFNWGLGETCURRENTREADDCEXTPROC) (void);
+#ifdef WGL_WGLEXT_PROTOTYPES
+BOOL WINAPI wglMakeContextCurrentEXT (HDC hDrawDC, HDC hReadDC, HGLRC hglrc);
+HDC WINAPI wglGetCurrentReadDCEXT (void);
+#endif
+#endif /* WGL_EXT_make_current_read */
+
+#ifndef WGL_EXT_multisample
+#define WGL_EXT_multisample 1
+#define WGL_SAMPLE_BUFFERS_EXT            0x2041
+#define WGL_SAMPLES_EXT                   0x2042
+#endif /* WGL_EXT_multisample */
+
+#ifndef WGL_EXT_pbuffer
+#define WGL_EXT_pbuffer 1
+DECLARE_HANDLE(HPBUFFEREXT);
+#define WGL_DRAW_TO_PBUFFER_EXT           0x202D
+#define WGL_MAX_PBUFFER_PIXELS_EXT        0x202E
+#define WGL_MAX_PBUFFER_WIDTH_EXT         0x202F
+#define WGL_MAX_PBUFFER_HEIGHT_EXT        0x2030
+#define WGL_OPTIMAL_PBUFFER_WIDTH_EXT     0x2031
+#define WGL_OPTIMAL_PBUFFER_HEIGHT_EXT    0x2032
+#define WGL_PBUFFER_LARGEST_EXT           0x2033
+#define WGL_PBUFFER_WIDTH_EXT             0x2034
+#define WGL_PBUFFER_HEIGHT_EXT            0x2035
+typedef HPBUFFEREXT (WINAPI * PFNWGLCREATEPBUFFEREXTPROC) (HDC hDC, int iPixelFormat, int iWidth, int iHeight, const int *piAttribList);
+typedef HDC (WINAPI * PFNWGLGETPBUFFERDCEXTPROC) (HPBUFFEREXT hPbuffer);
+typedef int (WINAPI * PFNWGLRELEASEPBUFFERDCEXTPROC) (HPBUFFEREXT hPbuffer, HDC hDC);
+typedef BOOL (WINAPI * PFNWGLDESTROYPBUFFEREXTPROC) (HPBUFFEREXT hPbuffer);
+typedef BOOL (WINAPI * PFNWGLQUERYPBUFFEREXTPROC) (HPBUFFEREXT hPbuffer, int iAttribute, int *piValue);
+#ifdef WGL_WGLEXT_PROTOTYPES
+HPBUFFEREXT WINAPI wglCreatePbufferEXT (HDC hDC, int iPixelFormat, int iWidth, int iHeight, const int *piAttribList);
+HDC WINAPI wglGetPbufferDCEXT (HPBUFFEREXT hPbuffer);
+int WINAPI wglReleasePbufferDCEXT (HPBUFFEREXT hPbuffer, HDC hDC);
+BOOL WINAPI wglDestroyPbufferEXT (HPBUFFEREXT hPbuffer);
+BOOL WINAPI wglQueryPbufferEXT (HPBUFFEREXT hPbuffer, int iAttribute, int *piValue);
+#endif
+#endif /* WGL_EXT_pbuffer */
+
+#ifndef WGL_EXT_pixel_format
+#define WGL_EXT_pixel_format 1
+#define WGL_NUMBER_PIXEL_FORMATS_EXT      0x2000
+#define WGL_DRAW_TO_WINDOW_EXT            0x2001
+#define WGL_DRAW_TO_BITMAP_EXT            0x2002
+#define WGL_ACCELERATION_EXT              0x2003
+#define WGL_NEED_PALETTE_EXT              0x2004
+#define WGL_NEED_SYSTEM_PALETTE_EXT       0x2005
+#define WGL_SWAP_LAYER_BUFFERS_EXT        0x2006
+#define WGL_SWAP_METHOD_EXT               0x2007
+#define WGL_NUMBER_OVERLAYS_EXT           0x2008
+#define WGL_NUMBER_UNDERLAYS_EXT          0x2009
+#define WGL_TRANSPARENT_EXT               0x200A
+#define WGL_TRANSPARENT_VALUE_EXT         0x200B
+#define WGL_SHARE_DEPTH_EXT               0x200C
+#define WGL_SHARE_STENCIL_EXT             0x200D
+#define WGL_SHARE_ACCUM_EXT               0x200E
+#define WGL_SUPPORT_GDI_EXT               0x200F
+#define WGL_SUPPORT_OPENGL_EXT            0x2010
+#define WGL_DOUBLE_BUFFER_EXT             0x2011
+#define WGL_STEREO_EXT                    0x2012
+#define WGL_PIXEL_TYPE_EXT                0x2013
+#define WGL_COLOR_BITS_EXT                0x2014
+#define WGL_RED_BITS_EXT                  0x2015
+#define WGL_RED_SHIFT_EXT                 0x2016
+#define WGL_GREEN_BITS_EXT                0x2017
+#define WGL_GREEN_SHIFT_EXT               0x2018
+#define WGL_BLUE_BITS_EXT                 0x2019
+#define WGL_BLUE_SHIFT_EXT                0x201A
+#define WGL_ALPHA_BITS_EXT                0x201B
+#define WGL_ALPHA_SHIFT_EXT               0x201C
+#define WGL_ACCUM_BITS_EXT                0x201D
+#define WGL_ACCUM_RED_BITS_EXT            0x201E
+#define WGL_ACCUM_GREEN_BITS_EXT          0x201F
+#define WGL_ACCUM_BLUE_BITS_EXT           0x2020
+#define WGL_ACCUM_ALPHA_BITS_EXT          0x2021
+#define WGL_DEPTH_BITS_EXT                0x2022
+#define WGL_STENCIL_BITS_EXT              0x2023
+#define WGL_AUX_BUFFERS_EXT               0x2024
+#define WGL_NO_ACCELERATION_EXT           0x2025
+#define WGL_GENERIC_ACCELERATION_EXT      0x2026
+#define WGL_FULL_ACCELERATION_EXT         0x2027
+#define WGL_SWAP_EXCHANGE_EXT             0x2028
+#define WGL_SWAP_COPY_EXT                 0x2029
+#define WGL_SWAP_UNDEFINED_EXT            0x202A
+#define WGL_TYPE_RGBA_EXT                 0x202B
+#define WGL_TYPE_COLORINDEX_EXT           0x202C
+typedef BOOL (WINAPI * PFNWGLGETPIXELFORMATATTRIBIVEXTPROC) (HDC hdc, int iPixelFormat, int iLayerPlane, UINT nAttributes, int *piAttributes, int *piValues);
+typedef BOOL (WINAPI * PFNWGLGETPIXELFORMATATTRIBFVEXTPROC) (HDC hdc, int iPixelFormat, int iLayerPlane, UINT nAttributes, int *piAttributes, FLOAT *pfValues);
+typedef BOOL (WINAPI * PFNWGLCHOOSEPIXELFORMATEXTPROC) (HDC hdc, const int *piAttribIList, const FLOAT *pfAttribFList, UINT nMaxFormats, int *piFormats, UINT *nNumFormats);
+#ifdef WGL_WGLEXT_PROTOTYPES
+BOOL WINAPI wglGetPixelFormatAttribivEXT (HDC hdc, int iPixelFormat, int iLayerPlane, UINT nAttributes, int *piAttributes, int *piValues);
+BOOL WINAPI wglGetPixelFormatAttribfvEXT (HDC hdc, int iPixelFormat, int iLayerPlane, UINT nAttributes, int *piAttributes, FLOAT *pfValues);
+BOOL WINAPI wglChoosePixelFormatEXT (HDC hdc, const int *piAttribIList, const FLOAT *pfAttribFList, UINT nMaxFormats, int *piFormats, UINT *nNumFormats);
+#endif
+#endif /* WGL_EXT_pixel_format */
+
+#ifndef WGL_EXT_pixel_format_packed_float
+#define WGL_EXT_pixel_format_packed_float 1
+#define WGL_TYPE_RGBA_UNSIGNED_FLOAT_EXT  0x20A8
+#endif /* WGL_EXT_pixel_format_packed_float */
+
+#ifndef WGL_EXT_swap_control
+#define WGL_EXT_swap_control 1
+typedef BOOL (WINAPI * PFNWGLSWAPINTERVALEXTPROC) (int interval);
+typedef int (WINAPI * PFNWGLGETSWAPINTERVALEXTPROC) (void);
+#ifdef WGL_WGLEXT_PROTOTYPES
+BOOL WINAPI wglSwapIntervalEXT (int interval);
+int WINAPI wglGetSwapIntervalEXT (void);
+#endif
+#endif /* WGL_EXT_swap_control */
+
+#ifndef WGL_EXT_swap_control_tear
+#define WGL_EXT_swap_control_tear 1
+#endif /* WGL_EXT_swap_control_tear */
+
+#ifndef WGL_I3D_digital_video_control
+#define WGL_I3D_digital_video_control 1
+#define WGL_DIGITAL_VIDEO_CURSOR_ALPHA_FRAMEBUFFER_I3D 0x2050
+#define WGL_DIGITAL_VIDEO_CURSOR_ALPHA_VALUE_I3D 0x2051
+#define WGL_DIGITAL_VIDEO_CURSOR_INCLUDED_I3D 0x2052
+#define WGL_DIGITAL_VIDEO_GAMMA_CORRECTED_I3D 0x2053
+typedef BOOL (WINAPI * PFNWGLGETDIGITALVIDEOPARAMETERSI3DPROC) (HDC hDC, int iAttribute, int *piValue);
+typedef BOOL (WINAPI * PFNWGLSETDIGITALVIDEOPARAMETERSI3DPROC) (HDC hDC, int iAttribute, const int *piValue);
+#ifdef WGL_WGLEXT_PROTOTYPES
+BOOL WINAPI wglGetDigitalVideoParametersI3D (HDC hDC, int iAttribute, int *piValue);
+BOOL WINAPI wglSetDigitalVideoParametersI3D (HDC hDC, int iAttribute, const int *piValue);
+#endif
+#endif /* WGL_I3D_digital_video_control */
+
+#ifndef WGL_I3D_gamma
+#define WGL_I3D_gamma 1
+#define WGL_GAMMA_TABLE_SIZE_I3D          0x204E
+#define WGL_GAMMA_EXCLUDE_DESKTOP_I3D     0x204F
+typedef BOOL (WINAPI * PFNWGLGETGAMMATABLEPARAMETERSI3DPROC) (HDC hDC, int iAttribute, int *piValue);
+typedef BOOL (WINAPI * PFNWGLSETGAMMATABLEPARAMETERSI3DPROC) (HDC hDC, int iAttribute, const int *piValue);
+typedef BOOL (WINAPI * PFNWGLGETGAMMATABLEI3DPROC) (HDC hDC, int iEntries, USHORT *puRed, USHORT *puGreen, USHORT *puBlue);
+typedef BOOL (WINAPI * PFNWGLSETGAMMATABLEI3DPROC) (HDC hDC, int iEntries, const USHORT *puRed, const USHORT *puGreen, const USHORT *puBlue);
+#ifdef WGL_WGLEXT_PROTOTYPES
+BOOL WINAPI wglGetGammaTableParametersI3D (HDC hDC, int iAttribute, int *piValue);
+BOOL WINAPI wglSetGammaTableParametersI3D (HDC hDC, int iAttribute, const int *piValue);
+BOOL WINAPI wglGetGammaTableI3D (HDC hDC, int iEntries, USHORT *puRed, USHORT *puGreen, USHORT *puBlue);
+BOOL WINAPI wglSetGammaTableI3D (HDC hDC, int iEntries, const USHORT *puRed, const USHORT *puGreen, const USHORT *puBlue);
+#endif
+#endif /* WGL_I3D_gamma */
+
+#ifndef WGL_I3D_genlock
+#define WGL_I3D_genlock 1
+#define WGL_GENLOCK_SOURCE_MULTIVIEW_I3D  0x2044
+#define WGL_GENLOCK_SOURCE_EXTERNAL_SYNC_I3D 0x2045
+#define WGL_GENLOCK_SOURCE_EXTERNAL_FIELD_I3D 0x2046
+#define WGL_GENLOCK_SOURCE_EXTERNAL_TTL_I3D 0x2047
+#define WGL_GENLOCK_SOURCE_DIGITAL_SYNC_I3D 0x2048
+#define WGL_GENLOCK_SOURCE_DIGITAL_FIELD_I3D 0x2049
+#define WGL_GENLOCK_SOURCE_EDGE_FALLING_I3D 0x204A
+#define WGL_GENLOCK_SOURCE_EDGE_RISING_I3D 0x204B
+#define WGL_GENLOCK_SOURCE_EDGE_BOTH_I3D  0x204C
+typedef BOOL (WINAPI * PFNWGLENABLEGENLOCKI3DPROC) (HDC hDC);
+typedef BOOL (WINAPI * PFNWGLDISABLEGENLOCKI3DPROC) (HDC hDC);
+typedef BOOL (WINAPI * PFNWGLISENABLEDGENLOCKI3DPROC) (HDC hDC, BOOL *pFlag);
+typedef BOOL (WINAPI * PFNWGLGENLOCKSOURCEI3DPROC) (HDC hDC, UINT uSource);
+typedef BOOL (WINAPI * PFNWGLGETGENLOCKSOURCEI3DPROC) (HDC hDC, UINT *uSource);
+typedef BOOL (WINAPI * PFNWGLGENLOCKSOURCEEDGEI3DPROC) (HDC hDC, UINT uEdge);
+typedef BOOL (WINAPI * PFNWGLGETGENLOCKSOURCEEDGEI3DPROC) (HDC hDC, UINT *uEdge);
+typedef BOOL (WINAPI * PFNWGLGENLOCKSAMPLERATEI3DPROC) (HDC hDC, UINT uRate);
+typedef BOOL (WINAPI * PFNWGLGETGENLOCKSAMPLERATEI3DPROC) (HDC hDC, UINT *uRate);
+typedef BOOL (WINAPI * PFNWGLGENLOCKSOURCEDELAYI3DPROC) (HDC hDC, UINT uDelay);
+typedef BOOL (WINAPI * PFNWGLGETGENLOCKSOURCEDELAYI3DPROC) (HDC hDC, UINT *uDelay);
+typedef BOOL (WINAPI * PFNWGLQUERYGENLOCKMAXSOURCEDELAYI3DPROC) (HDC hDC, UINT *uMaxLineDelay, UINT *uMaxPixelDelay);
+#ifdef WGL_WGLEXT_PROTOTYPES
+BOOL WINAPI wglEnableGenlockI3D (HDC hDC);
+BOOL WINAPI wglDisableGenlockI3D (HDC hDC);
+BOOL WINAPI wglIsEnabledGenlockI3D (HDC hDC, BOOL *pFlag);
+BOOL WINAPI wglGenlockSourceI3D (HDC hDC, UINT uSource);
+BOOL WINAPI wglGetGenlockSourceI3D (HDC hDC, UINT *uSource);
+BOOL WINAPI wglGenlockSourceEdgeI3D (HDC hDC, UINT uEdge);
+BOOL WINAPI wglGetGenlockSourceEdgeI3D (HDC hDC, UINT *uEdge);
+BOOL WINAPI wglGenlockSampleRateI3D (HDC hDC, UINT uRate);
+BOOL WINAPI wglGetGenlockSampleRateI3D (HDC hDC, UINT *uRate);
+BOOL WINAPI wglGenlockSourceDelayI3D (HDC hDC, UINT uDelay);
+BOOL WINAPI wglGetGenlockSourceDelayI3D (HDC hDC, UINT *uDelay);
+BOOL WINAPI wglQueryGenlockMaxSourceDelayI3D (HDC hDC, UINT *uMaxLineDelay, UINT *uMaxPixelDelay);
+#endif
+#endif /* WGL_I3D_genlock */
+
+#ifndef WGL_I3D_image_buffer
+#define WGL_I3D_image_buffer 1
+#define WGL_IMAGE_BUFFER_MIN_ACCESS_I3D   0x00000001
+#define WGL_IMAGE_BUFFER_LOCK_I3D         0x00000002
+typedef LPVOID (WINAPI * PFNWGLCREATEIMAGEBUFFERI3DPROC) (HDC hDC, DWORD dwSize, UINT uFlags);
+typedef BOOL (WINAPI * PFNWGLDESTROYIMAGEBUFFERI3DPROC) (HDC hDC, LPVOID pAddress);
+typedef BOOL (WINAPI * PFNWGLASSOCIATEIMAGEBUFFEREVENTSI3DPROC) (HDC hDC, const HANDLE *pEvent, const LPVOID *pAddress, const DWORD *pSize, UINT count);
+typedef BOOL (WINAPI * PFNWGLRELEASEIMAGEBUFFEREVENTSI3DPROC) (HDC hDC, const LPVOID *pAddress, UINT count);
+#ifdef WGL_WGLEXT_PROTOTYPES
+LPVOID WINAPI wglCreateImageBufferI3D (HDC hDC, DWORD dwSize, UINT uFlags);
+BOOL WINAPI wglDestroyImageBufferI3D (HDC hDC, LPVOID pAddress);
+BOOL WINAPI wglAssociateImageBufferEventsI3D (HDC hDC, const HANDLE *pEvent, const LPVOID *pAddress, const DWORD *pSize, UINT count);
+BOOL WINAPI wglReleaseImageBufferEventsI3D (HDC hDC, const LPVOID *pAddress, UINT count);
+#endif
+#endif /* WGL_I3D_image_buffer */
+
+#ifndef WGL_I3D_swap_frame_lock
+#define WGL_I3D_swap_frame_lock 1
+typedef BOOL (WINAPI * PFNWGLENABLEFRAMELOCKI3DPROC) (void);
+typedef BOOL (WINAPI * PFNWGLDISABLEFRAMELOCKI3DPROC) (void);
+typedef BOOL (WINAPI * PFNWGLISENABLEDFRAMELOCKI3DPROC) (BOOL *pFlag);
+typedef BOOL (WINAPI * PFNWGLQUERYFRAMELOCKMASTERI3DPROC) (BOOL *pFlag);
+#ifdef WGL_WGLEXT_PROTOTYPES
+BOOL WINAPI wglEnableFrameLockI3D (void);
+BOOL WINAPI wglDisableFrameLockI3D (void);
+BOOL WINAPI wglIsEnabledFrameLockI3D (BOOL *pFlag);
+BOOL WINAPI wglQueryFrameLockMasterI3D (BOOL *pFlag);
+#endif
+#endif /* WGL_I3D_swap_frame_lock */
+
+#ifndef WGL_I3D_swap_frame_usage
+#define WGL_I3D_swap_frame_usage 1
+typedef BOOL (WINAPI * PFNWGLGETFRAMEUSAGEI3DPROC) (float *pUsage);
+typedef BOOL (WINAPI * PFNWGLBEGINFRAMETRACKINGI3DPROC) (void);
+typedef BOOL (WINAPI * PFNWGLENDFRAMETRACKINGI3DPROC) (void);
+typedef BOOL (WINAPI * PFNWGLQUERYFRAMETRACKINGI3DPROC) (DWORD *pFrameCount, DWORD *pMissedFrames, float *pLastMissedUsage);
+#ifdef WGL_WGLEXT_PROTOTYPES
+BOOL WINAPI wglGetFrameUsageI3D (float *pUsage);
+BOOL WINAPI wglBeginFrameTrackingI3D (void);
+BOOL WINAPI wglEndFrameTrackingI3D (void);
+BOOL WINAPI wglQueryFrameTrackingI3D (DWORD *pFrameCount, DWORD *pMissedFrames, float *pLastMissedUsage);
+#endif
+#endif /* WGL_I3D_swap_frame_usage */
+
+#ifndef WGL_NV_DX_interop
+#define WGL_NV_DX_interop 1
+#define WGL_ACCESS_READ_ONLY_NV           0x00000000
+#define WGL_ACCESS_READ_WRITE_NV          0x00000001
+#define WGL_ACCESS_WRITE_DISCARD_NV       0x00000002
+typedef BOOL (WINAPI * PFNWGLDXSETRESOURCESHAREHANDLENVPROC) (void *dxObject, HANDLE shareHandle);
+typedef HANDLE (WINAPI * PFNWGLDXOPENDEVICENVPROC) (void *dxDevice);
+typedef BOOL (WINAPI * PFNWGLDXCLOSEDEVICENVPROC) (HANDLE hDevice);
+typedef HANDLE (WINAPI * PFNWGLDXREGISTEROBJECTNVPROC) (HANDLE hDevice, void *dxObject, GLuint name, GLenum type, GLenum access);
+typedef BOOL (WINAPI * PFNWGLDXUNREGISTEROBJECTNVPROC) (HANDLE hDevice, HANDLE hObject);
+typedef BOOL (WINAPI * PFNWGLDXOBJECTACCESSNVPROC) (HANDLE hObject, GLenum access);
+typedef BOOL (WINAPI * PFNWGLDXLOCKOBJECTSNVPROC) (HANDLE hDevice, GLint count, HANDLE *hObjects);
+typedef BOOL (WINAPI * PFNWGLDXUNLOCKOBJECTSNVPROC) (HANDLE hDevice, GLint count, HANDLE *hObjects);
+#ifdef WGL_WGLEXT_PROTOTYPES
+BOOL WINAPI wglDXSetResourceShareHandleNV (void *dxObject, HANDLE shareHandle);
+HANDLE WINAPI wglDXOpenDeviceNV (void *dxDevice);
+BOOL WINAPI wglDXCloseDeviceNV (HANDLE hDevice);
+HANDLE WINAPI wglDXRegisterObjectNV (HANDLE hDevice, void *dxObject, GLuint name, GLenum type, GLenum access);
+BOOL WINAPI wglDXUnregisterObjectNV (HANDLE hDevice, HANDLE hObject);
+BOOL WINAPI wglDXObjectAccessNV (HANDLE hObject, GLenum access);
+BOOL WINAPI wglDXLockObjectsNV (HANDLE hDevice, GLint count, HANDLE *hObjects);
+BOOL WINAPI wglDXUnlockObjectsNV (HANDLE hDevice, GLint count, HANDLE *hObjects);
+#endif
+#endif /* WGL_NV_DX_interop */
+
+#ifndef WGL_NV_DX_interop2
+#define WGL_NV_DX_interop2 1
+#endif /* WGL_NV_DX_interop2 */
+
+#ifndef WGL_NV_copy_image
+#define WGL_NV_copy_image 1
+typedef BOOL (WINAPI * PFNWGLCOPYIMAGESUBDATANVPROC) (HGLRC hSrcRC, GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, HGLRC hDstRC, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei width, GLsizei height, GLsizei depth);
+#ifdef WGL_WGLEXT_PROTOTYPES
+BOOL WINAPI wglCopyImageSubDataNV (HGLRC hSrcRC, GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, HGLRC hDstRC, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei width, GLsizei height, GLsizei depth);
+#endif
+#endif /* WGL_NV_copy_image */
+
+#ifndef WGL_NV_delay_before_swap
+#define WGL_NV_delay_before_swap 1
+typedef BOOL (WINAPI * PFNWGLDELAYBEFORESWAPNVPROC) (HDC hDC, GLfloat seconds);
+#ifdef WGL_WGLEXT_PROTOTYPES
+BOOL WINAPI wglDelayBeforeSwapNV (HDC hDC, GLfloat seconds);
+#endif
+#endif /* WGL_NV_delay_before_swap */
+
+#ifndef WGL_NV_float_buffer
+#define WGL_NV_float_buffer 1
+#define WGL_FLOAT_COMPONENTS_NV           0x20B0
+#define WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_R_NV 0x20B1
+#define WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_RG_NV 0x20B2
+#define WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_RGB_NV 0x20B3
+#define WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_RGBA_NV 0x20B4
+#define WGL_TEXTURE_FLOAT_R_NV            0x20B5
+#define WGL_TEXTURE_FLOAT_RG_NV           0x20B6
+#define WGL_TEXTURE_FLOAT_RGB_NV          0x20B7
+#define WGL_TEXTURE_FLOAT_RGBA_NV         0x20B8
+#endif /* WGL_NV_float_buffer */
+
+#ifndef WGL_NV_gpu_affinity
+#define WGL_NV_gpu_affinity 1
+DECLARE_HANDLE(HGPUNV);
+struct _GPU_DEVICE {
+    DWORD  cb;
+    CHAR   DeviceName[32];
+    CHAR   DeviceString[128];
+    DWORD  Flags;
+    RECT   rcVirtualScreen;
+};
+typedef struct _GPU_DEVICE *PGPU_DEVICE;
+#define ERROR_INCOMPATIBLE_AFFINITY_MASKS_NV 0x20D0
+#define ERROR_MISSING_AFFINITY_MASK_NV    0x20D1
+typedef BOOL (WINAPI * PFNWGLENUMGPUSNVPROC) (UINT iGpuIndex, HGPUNV *phGpu);
+typedef BOOL (WINAPI * PFNWGLENUMGPUDEVICESNVPROC) (HGPUNV hGpu, UINT iDeviceIndex, PGPU_DEVICE lpGpuDevice);
+typedef HDC (WINAPI * PFNWGLCREATEAFFINITYDCNVPROC) (const HGPUNV *phGpuList);
+typedef BOOL (WINAPI * PFNWGLENUMGPUSFROMAFFINITYDCNVPROC) (HDC hAffinityDC, UINT iGpuIndex, HGPUNV *hGpu);
+typedef BOOL (WINAPI * PFNWGLDELETEDCNVPROC) (HDC hdc);
+#ifdef WGL_WGLEXT_PROTOTYPES
+BOOL WINAPI wglEnumGpusNV (UINT iGpuIndex, HGPUNV *phGpu);
+BOOL WINAPI wglEnumGpuDevicesNV (HGPUNV hGpu, UINT iDeviceIndex, PGPU_DEVICE lpGpuDevice);
+HDC WINAPI wglCreateAffinityDCNV (const HGPUNV *phGpuList);
+BOOL WINAPI wglEnumGpusFromAffinityDCNV (HDC hAffinityDC, UINT iGpuIndex, HGPUNV *hGpu);
+BOOL WINAPI wglDeleteDCNV (HDC hdc);
+#endif
+#endif /* WGL_NV_gpu_affinity */
+
+#ifndef WGL_NV_multigpu_context
+#define WGL_NV_multigpu_context 1
+#define WGL_CONTEXT_MULTIGPU_ATTRIB_NV    0x20AA
+#define WGL_CONTEXT_MULTIGPU_ATTRIB_SINGLE_NV 0x20AB
+#define WGL_CONTEXT_MULTIGPU_ATTRIB_AFR_NV 0x20AC
+#define WGL_CONTEXT_MULTIGPU_ATTRIB_MULTICAST_NV 0x20AD
+#define WGL_CONTEXT_MULTIGPU_ATTRIB_MULTI_DISPLAY_MULTICAST_NV 0x20AE
+#endif /* WGL_NV_multigpu_context */
+
+#ifndef WGL_NV_multisample_coverage
+#define WGL_NV_multisample_coverage 1
+#define WGL_COVERAGE_SAMPLES_NV           0x2042
+#define WGL_COLOR_SAMPLES_NV              0x20B9
+#endif /* WGL_NV_multisample_coverage */
+
+#ifndef WGL_NV_present_video
+#define WGL_NV_present_video 1
+DECLARE_HANDLE(HVIDEOOUTPUTDEVICENV);
+#define WGL_NUM_VIDEO_SLOTS_NV            0x20F0
+typedef int (WINAPI * PFNWGLENUMERATEVIDEODEVICESNVPROC) (HDC hDc, HVIDEOOUTPUTDEVICENV *phDeviceList);
+typedef BOOL (WINAPI * PFNWGLBINDVIDEODEVICENVPROC) (HDC hDc, unsigned int uVideoSlot, HVIDEOOUTPUTDEVICENV hVideoDevice, const int *piAttribList);
+typedef BOOL (WINAPI * PFNWGLQUERYCURRENTCONTEXTNVPROC) (int iAttribute, int *piValue);
+#ifdef WGL_WGLEXT_PROTOTYPES
+int WINAPI wglEnumerateVideoDevicesNV (HDC hDc, HVIDEOOUTPUTDEVICENV *phDeviceList);
+BOOL WINAPI wglBindVideoDeviceNV (HDC hDc, unsigned int uVideoSlot, HVIDEOOUTPUTDEVICENV hVideoDevice, const int *piAttribList);
+BOOL WINAPI wglQueryCurrentContextNV (int iAttribute, int *piValue);
+#endif
+#endif /* WGL_NV_present_video */
+
+#ifndef WGL_NV_render_depth_texture
+#define WGL_NV_render_depth_texture 1
+#define WGL_BIND_TO_TEXTURE_DEPTH_NV      0x20A3
+#define WGL_BIND_TO_TEXTURE_RECTANGLE_DEPTH_NV 0x20A4
+#define WGL_DEPTH_TEXTURE_FORMAT_NV       0x20A5
+#define WGL_TEXTURE_DEPTH_COMPONENT_NV    0x20A6
+#define WGL_DEPTH_COMPONENT_NV            0x20A7
+#endif /* WGL_NV_render_depth_texture */
+
+#ifndef WGL_NV_render_texture_rectangle
+#define WGL_NV_render_texture_rectangle 1
+#define WGL_BIND_TO_TEXTURE_RECTANGLE_RGB_NV 0x20A0
+#define WGL_BIND_TO_TEXTURE_RECTANGLE_RGBA_NV 0x20A1
+#define WGL_TEXTURE_RECTANGLE_NV          0x20A2
+#endif /* WGL_NV_render_texture_rectangle */
+
+#ifndef WGL_NV_swap_group
+#define WGL_NV_swap_group 1
+typedef BOOL (WINAPI * PFNWGLJOINSWAPGROUPNVPROC) (HDC hDC, GLuint group);
+typedef BOOL (WINAPI * PFNWGLBINDSWAPBARRIERNVPROC) (GLuint group, GLuint barrier);
+typedef BOOL (WINAPI * PFNWGLQUERYSWAPGROUPNVPROC) (HDC hDC, GLuint *group, GLuint *barrier);
+typedef BOOL (WINAPI * PFNWGLQUERYMAXSWAPGROUPSNVPROC) (HDC hDC, GLuint *maxGroups, GLuint *maxBarriers);
+typedef BOOL (WINAPI * PFNWGLQUERYFRAMECOUNTNVPROC) (HDC hDC, GLuint *count);
+typedef BOOL (WINAPI * PFNWGLRESETFRAMECOUNTNVPROC) (HDC hDC);
+#ifdef WGL_WGLEXT_PROTOTYPES
+BOOL WINAPI wglJoinSwapGroupNV (HDC hDC, GLuint group);
+BOOL WINAPI wglBindSwapBarrierNV (GLuint group, GLuint barrier);
+BOOL WINAPI wglQuerySwapGroupNV (HDC hDC, GLuint *group, GLuint *barrier);
+BOOL WINAPI wglQueryMaxSwapGroupsNV (HDC hDC, GLuint *maxGroups, GLuint *maxBarriers);
+BOOL WINAPI wglQueryFrameCountNV (HDC hDC, GLuint *count);
+BOOL WINAPI wglResetFrameCountNV (HDC hDC);
+#endif
+#endif /* WGL_NV_swap_group */
+
+#ifndef WGL_NV_vertex_array_range
+#define WGL_NV_vertex_array_range 1
+typedef void *(WINAPI * PFNWGLALLOCATEMEMORYNVPROC) (GLsizei size, GLfloat readfreq, GLfloat writefreq, GLfloat priority);
+typedef void (WINAPI * PFNWGLFREEMEMORYNVPROC) (void *pointer);
+#ifdef WGL_WGLEXT_PROTOTYPES
+void *WINAPI wglAllocateMemoryNV (GLsizei size, GLfloat readfreq, GLfloat writefreq, GLfloat priority);
+void WINAPI wglFreeMemoryNV (void *pointer);
+#endif
+#endif /* WGL_NV_vertex_array_range */
+
+#ifndef WGL_NV_video_capture
+#define WGL_NV_video_capture 1
+DECLARE_HANDLE(HVIDEOINPUTDEVICENV);
+#define WGL_UNIQUE_ID_NV                  0x20CE
+#define WGL_NUM_VIDEO_CAPTURE_SLOTS_NV    0x20CF
+typedef BOOL (WINAPI * PFNWGLBINDVIDEOCAPTUREDEVICENVPROC) (UINT uVideoSlot, HVIDEOINPUTDEVICENV hDevice);
+typedef UINT (WINAPI * PFNWGLENUMERATEVIDEOCAPTUREDEVICESNVPROC) (HDC hDc, HVIDEOINPUTDEVICENV *phDeviceList);
+typedef BOOL (WINAPI * PFNWGLLOCKVIDEOCAPTUREDEVICENVPROC) (HDC hDc, HVIDEOINPUTDEVICENV hDevice);
+typedef BOOL (WINAPI * PFNWGLQUERYVIDEOCAPTUREDEVICENVPROC) (HDC hDc, HVIDEOINPUTDEVICENV hDevice, int iAttribute, int *piValue);
+typedef BOOL (WINAPI * PFNWGLRELEASEVIDEOCAPTUREDEVICENVPROC) (HDC hDc, HVIDEOINPUTDEVICENV hDevice);
+#ifdef WGL_WGLEXT_PROTOTYPES
+BOOL WINAPI wglBindVideoCaptureDeviceNV (UINT uVideoSlot, HVIDEOINPUTDEVICENV hDevice);
+UINT WINAPI wglEnumerateVideoCaptureDevicesNV (HDC hDc, HVIDEOINPUTDEVICENV *phDeviceList);
+BOOL WINAPI wglLockVideoCaptureDeviceNV (HDC hDc, HVIDEOINPUTDEVICENV hDevice);
+BOOL WINAPI wglQueryVideoCaptureDeviceNV (HDC hDc, HVIDEOINPUTDEVICENV hDevice, int iAttribute, int *piValue);
+BOOL WINAPI wglReleaseVideoCaptureDeviceNV (HDC hDc, HVIDEOINPUTDEVICENV hDevice);
+#endif
+#endif /* WGL_NV_video_capture */
+
+#ifndef WGL_NV_video_output
+#define WGL_NV_video_output 1
+DECLARE_HANDLE(HPVIDEODEV);
+#define WGL_BIND_TO_VIDEO_RGB_NV          0x20C0
+#define WGL_BIND_TO_VIDEO_RGBA_NV         0x20C1
+#define WGL_BIND_TO_VIDEO_RGB_AND_DEPTH_NV 0x20C2
+#define WGL_VIDEO_OUT_COLOR_NV            0x20C3
+#define WGL_VIDEO_OUT_ALPHA_NV            0x20C4
+#define WGL_VIDEO_OUT_DEPTH_NV            0x20C5
+#define WGL_VIDEO_OUT_COLOR_AND_ALPHA_NV  0x20C6
+#define WGL_VIDEO_OUT_COLOR_AND_DEPTH_NV  0x20C7
+#define WGL_VIDEO_OUT_FRAME               0x20C8
+#define WGL_VIDEO_OUT_FIELD_1             0x20C9
+#define WGL_VIDEO_OUT_FIELD_2             0x20CA
+#define WGL_VIDEO_OUT_STACKED_FIELDS_1_2  0x20CB
+#define WGL_VIDEO_OUT_STACKED_FIELDS_2_1  0x20CC
+typedef BOOL (WINAPI * PFNWGLGETVIDEODEVICENVPROC) (HDC hDC, int numDevices, HPVIDEODEV *hVideoDevice);
+typedef BOOL (WINAPI * PFNWGLRELEASEVIDEODEVICENVPROC) (HPVIDEODEV hVideoDevice);
+typedef BOOL (WINAPI * PFNWGLBINDVIDEOIMAGENVPROC) (HPVIDEODEV hVideoDevice, HPBUFFERARB hPbuffer, int iVideoBuffer);
+typedef BOOL (WINAPI * PFNWGLRELEASEVIDEOIMAGENVPROC) (HPBUFFERARB hPbuffer, int iVideoBuffer);
+typedef BOOL (WINAPI * PFNWGLSENDPBUFFERTOVIDEONVPROC) (HPBUFFERARB hPbuffer, int iBufferType, unsigned long *pulCounterPbuffer, BOOL bBlock);
+typedef BOOL (WINAPI * PFNWGLGETVIDEOINFONVPROC) (HPVIDEODEV hpVideoDevice, unsigned long *pulCounterOutputPbuffer, unsigned long *pulCounterOutputVideo);
+#ifdef WGL_WGLEXT_PROTOTYPES
+BOOL WINAPI wglGetVideoDeviceNV (HDC hDC, int numDevices, HPVIDEODEV *hVideoDevice);
+BOOL WINAPI wglReleaseVideoDeviceNV (HPVIDEODEV hVideoDevice);
+BOOL WINAPI wglBindVideoImageNV (HPVIDEODEV hVideoDevice, HPBUFFERARB hPbuffer, int iVideoBuffer);
+BOOL WINAPI wglReleaseVideoImageNV (HPBUFFERARB hPbuffer, int iVideoBuffer);
+BOOL WINAPI wglSendPbufferToVideoNV (HPBUFFERARB hPbuffer, int iBufferType, unsigned long *pulCounterPbuffer, BOOL bBlock);
+BOOL WINAPI wglGetVideoInfoNV (HPVIDEODEV hpVideoDevice, unsigned long *pulCounterOutputPbuffer, unsigned long *pulCounterOutputVideo);
+#endif
+#endif /* WGL_NV_video_output */
+
+#ifndef WGL_OML_sync_control
+#define WGL_OML_sync_control 1
+typedef BOOL (WINAPI * PFNWGLGETSYNCVALUESOMLPROC) (HDC hdc, INT64 *ust, INT64 *msc, INT64 *sbc);
+typedef BOOL (WINAPI * PFNWGLGETMSCRATEOMLPROC) (HDC hdc, INT32 *numerator, INT32 *denominator);
+typedef INT64 (WINAPI * PFNWGLSWAPBUFFERSMSCOMLPROC) (HDC hdc, INT64 target_msc, INT64 divisor, INT64 remainder);
+typedef INT64 (WINAPI * PFNWGLSWAPLAYERBUFFERSMSCOMLPROC) (HDC hdc, INT fuPlanes, INT64 target_msc, INT64 divisor, INT64 remainder);
+typedef BOOL (WINAPI * PFNWGLWAITFORMSCOMLPROC) (HDC hdc, INT64 target_msc, INT64 divisor, INT64 remainder, INT64 *ust, INT64 *msc, INT64 *sbc);
+typedef BOOL (WINAPI * PFNWGLWAITFORSBCOMLPROC) (HDC hdc, INT64 target_sbc, INT64 *ust, INT64 *msc, INT64 *sbc);
+#ifdef WGL_WGLEXT_PROTOTYPES
+BOOL WINAPI wglGetSyncValuesOML (HDC hdc, INT64 *ust, INT64 *msc, INT64 *sbc);
+BOOL WINAPI wglGetMscRateOML (HDC hdc, INT32 *numerator, INT32 *denominator);
+INT64 WINAPI wglSwapBuffersMscOML (HDC hdc, INT64 target_msc, INT64 divisor, INT64 remainder);
+INT64 WINAPI wglSwapLayerBuffersMscOML (HDC hdc, INT fuPlanes, INT64 target_msc, INT64 divisor, INT64 remainder);
+BOOL WINAPI wglWaitForMscOML (HDC hdc, INT64 target_msc, INT64 divisor, INT64 remainder, INT64 *ust, INT64 *msc, INT64 *sbc);
+BOOL WINAPI wglWaitForSbcOML (HDC hdc, INT64 target_sbc, INT64 *ust, INT64 *msc, INT64 *sbc);
+#endif
+#endif /* WGL_OML_sync_control */
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif